Windows utilities go on every machine I set up(makeuseof.com)
makeuseof.com
Windows utilities go on every machine I set up
https://www.makeuseof.com/windows-utilities-on-every-machine/
3 comments
AI Slop.
Here's this from my setup_windows.ps1 powershell script for maintaining windows: https://github.com/westurner/dotfiles/blob/develop/scripts/s... ;
powershell.exe -executionpolicy unrestricted -file ./setup_windows.ps1 -InstallPSWindowsUpdate
powershell.exe -executionpolicy unrestricted -file ./setup_windows.ps1 -UpdateWindows
powershell.exe -executionpolicy unrestricted -file ./setup_windows.ps1 -InstallWSL
powershell.exe -executionpolicy unrestricted -file ./setup_windows.ps1 -InstallChoco
powershell.exe -executionpolicy unrestricted -file ./setup_windows.ps1 -InstallChocoPackage
So then the regular tasks are -UpdateWindows and -UpdateChocoPackages : powershell.exe -executionpolicy unrestricted -file ./setup_windows.ps1 -UpdateWindows
powershell.exe -executionpolicy unrestricted -file ./setup_windows.ps1 -UpdateChocoPackages
Surprised to see Everything left out.