Skip to content

Instantly share code, notes, and snippets.

@woakes070048
Forked from samjaninf/basic_boxstarter.txt
Last active April 12, 2017 15:09
Show Gist options
  • Save woakes070048/a244b4ff797a0bef3bca409c38aa3927 to your computer and use it in GitHub Desktop.
Save woakes070048/a244b4ff797a0bef3bca409c38aa3927 to your computer and use it in GitHub Desktop.
# 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