Skip to content

Instantly share code, notes, and snippets.

@OldNo7
Last active August 29, 2015 14:22
Show Gist options
  • Save OldNo7/12aedece3b276ede4a0e to your computer and use it in GitHub Desktop.
Save OldNo7/12aedece3b276ede4a0e to your computer and use it in GitHub Desktop.
Boxstarter script for Makerspaces
# Boxstarter options
$Boxstarter.RebootOk=$true # 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
Disable-InternetExplorerESC
Disable-UAC
Set-TaskbarSmall
if (Test-PendingReboot) { Invoke-Reboot }
# Update Windows and reboot if necessary
Install-WindowsUpdate -AcceptEula
if (Test-PendingReboot) { Invoke-Reboot }
#Makerspace tools
cinstm slicer -version 0.9.9
cinstm cura
cinstm openscad
cinstm printrun
cinstm imagemagick
cinstm inkscape
cinstm gimp
#cinstm beyondcompare
cinstm ProcExp #cinstm sysinternals
#cinstm NugetPackageExplorer
cinstm windbg
cinstm TortoiseHg
cinstm git
#cinstm linqpad4
#Browsers
cinstm googlechrome
cinstm firefox
#Other essential tools
cinstm 7zip
#cinstm adobereader
#cinstm javaruntime
cinstm foxitreader
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Google\Chrome\Application\chrome.exe"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment