Last active
August 29, 2015 14:22
-
-
Save OldNo7/12aedece3b276ede4a0e to your computer and use it in GitHub Desktop.
Boxstarter script for Makerspaces
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=$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