-
-
Save woakes070048/a244b4ff797a0bef3bca409c38aa3927 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Boxstarter options | |
$Boxstarter.RebootOk=$false # Allow reboots? | |
$Boxstarter.NoPassword=$false # Is this a machine with no login password? | |
$Boxstarter.AutoLogin=$true # Save my password securely and auto-login after a reboot | |
# Basic setup | |
Update-ExecutionPolicy Unrestricted | |
Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
Enable-RemoteDesktop | |
if (Test-PendingReboot) { Invoke-Reboot } | |
# Update Windows an cinst libreoffice | |
cinst pdfcreator | |
cinst adobereader | |
cinst ccleanerd reboot if necessary | |
Install-WindowsUpdate -AcceptEula | |
if (Test-PendingReboot) { Invoke-Reboot } | |
cinst flashplayerplugin | |
cinst javaruntime | |
cinst flashplayeractivex | |
cinst silverlight | |
cinst adobeair | |
cinst firefox | |
cinst google-chrome-x64 | |
cinst adblockplusfirefox | |
cinst adblockpluschrome | |
cinst paint.net | |
cinst inkscape | |
cinst gimp | |
cinst vlc | |
cinst pdfcreator | |
cinst adobereader | |
cinst 7zip | |
cinst libreoffice | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment