Here’s a PowerShell script that can be used to scan for Windows updates, install them and optionally restart the system automatically. I’ve been using this for a few years now on Windows Server 2008 R2 and above without issues.
Continue readingCategory: Windows 10
Here’s a quick PowerShell script which allows you to set the computer description remotely.
You’ll need to run this in a PowerShell window with administrative rights for the remote PC.
$RemotePC = Read-Host -Prompt 'Input the remote computer name e.g. PC0123'
$RemoteDescription = Read-Host -Prompt 'Input the new description for the remote computer'
$PC = Get-WmiObject -class Win32_OperatingSystem -computername $RemotePC
$PC.Description = $RemoteDescription
$PC.Put()
Sometimes you need a quick and simple way to backup a user directory to a network drive/NAS share or external drive.
Here’s a batch file that will backup using Robocopy the subdirectories of your user directory to the location of your choice.
Continue readingOn a new laptop running Windows 10, 1809, I experienced an issue that caused the boot time to increase to over 5 minutes. After the boot process eventually finished, many devices were not working correctly.
For example, I found:
- no Wi-Fi networks showing in the list before logging on
- the fingerprint scanner is not working
- after logging in, you can’t enter any text in the search bar or Windows app store apps