Inside a command prompt window:
shutdown /r /t 0
Inside a command prompt window:
shutdown /r /t 0
Around 1/9/19, Microsoft pushed a Windows update (KB4480970) that breaks SMB in a way that inhibits network communication with the computer’s shares. This is most often reported as sudden inability to scan to shared folders from a network-connected scanner.
A subsequent patch (KB4487345) was released on 1/11/19 to correct this and it can be found here (choose your platform):
http://www.catalog.update.microsoft.com/Search.aspx?q=KB4487345
Thanks to the TechVideos channel on YouTube
* If you can’t get to the quickhash site, this is what you can use
for the password “password”:
$6$9Ter1EZ9$lSt6/tkoPguHqsDK0mXmUsZ1WE2qCM4m9AQ.x9/eVNJxws.hAxt2Pe8oA9TFB7LPBgzaHBcAfKFoLpRQlpBiX1
The DHCP address pool on a Windows Server machine was being exhausted, so we wanted to increase the number of available addresses.
Original scope: 192.168.10.0 / 255.255.255.0
Desired scope: 192.168.10.0 / 255.255.254.0
The usual way requires you to delete the scope and re-enter it manually which can be tedious and time-consuming if you have a lot of exclusions and reservations. Windows provides a way to do this programmatically:
When we did this, a couple of scope options had to be re-entered: 046 and 051
Downtime on DHCP (i.e., no scope entry) was about 15 seconds.
Remember that, after doing this, any device that has a statically-assigned IP address instead of using DHCP should have its netmask changed or devices using an address outside the original scope won’t be able to see it. DHCP clients will get the new netmask automatically at the next renewal.
This is a recent change that is activated silently after an Outlook update. To undo, add this registry key:
HKCU\Software\Microsoft\Office\16.0\Outlook\Options
DWORD: DisableAutoCompleteUpdate
Value: 1
We found this process resolves this:
A previously-working VPN connectoid stopped working after a client “did some things to fix the Internet.” It apparently clobbered with WAN miniports.
We were able to resolve this easily thanks to the website here. It involves running this tool (64-bit machines) and rebooting the computer. After rebooting, the computer will re-install all the WAN miniports (visible in Device Manager.)
If the above link to the tool is dead, you can also find it here: wan-miniport-repair-v2-x64
We occasionally come across an Exchange 2003 setup from which we need to export members of a DL or what not. CSVDE will do this. To get everything from AD:
CSVDE -f c:\adusers.csv
More detailed information with examples and switches can be found here:
https://www.computerperformance.co.uk/Logon/Logon_CSVDE_Export.htm
Some legacy applications are broken when run on Windows 10. Here are some common problems and their solutions:
Cannot see mapped drives within applications:
Add this registry key:
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System
“EnableLinkedConnections”=dword:00000001
Cannot write to root of C drive:
Change this registry key:
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System
“EnableLUA”=dword:00000000
The Remote Desktop hosting feature of Windows 10 Pro differs from that of earlier versions of Windows in that, by default, it allows remote users to shut down the machine via the Start menu. These power-related menu options can be limited to Disconnect and Sign Out via Group Policy:
If a remote user must restart or shut down the computer, they can still do so by sending Ctrl-Alt-End and using the power icon in the lower-right corner (just as in previous versions of Windows.)