Skip to content

Instantly share code, notes, and snippets.

@DavidDeSloovere
Last active June 4, 2018 20:57
Show Gist options
  • Save DavidDeSloovere/b6cc6c62b6a646a0c08f to your computer and use it in GitHub Desktop.
Save DavidDeSloovere/b6cc6c62b6a646a0c08f to your computer and use it in GitHub Desktop.
Boxstarter
#####################
# BEGIN CONFIGURATION
#####################
Update-ExecutionPolicy Unrestricted
Set-WindowsExplorerOptions -DisableShowHiddenFilesFoldersDrives -DisableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar
Disable-InternetExplorerESC
Disable-UAC
# Disable defrag (no need when having an SSD)
Get-ScheduledTask -TaskName *defrag* | Disable-ScheduledTask
#####################
# SOFTWARE
#####################
choco install GoogleChrome -y
choco install Firefox -y
choco install greenshot -y
#choco install PDFCreator -y #windows can print to pdf
choco install rdcman -y
choco install paint.net -y
choco install nodejs.install -y
choco install yarn -y
#choco install AdobeReader -y #lets try without
choco install filezilla -y
choco install dropbox -y
#choco install googledrive -y #will do manually
choco install teamviewer -y
choco install sublimetext3 -y
#choco install spotify -y #is not installing anymore
choco install winmerge -y
choco install visualstudiocode -y
choco install firacode -y
choco install carnac -y
choco install microsoft-teams -y
#####################
# Update Windows and reboot if necessary
Install-WindowsUpdate -AcceptEula -GetUpdatesFromMS
if (Test-PendingReboot) { Invoke-Reboot }
cinst webpi
cinst lessmsi
cinst webpicmd
cinst WCF-HTTP-Activation45 -source windowsfeatures
webpicmd /Install /Products:IIS7 /AcceptEula /SuppressReboot
webpicmd /Install /Products:UrlRewrite2 /AcceptEula /SuppressReboot
@DavidDeSloovere
Copy link
Author

DavidDeSloovere commented Dec 19, 2014

Repeatable, reboot resilient windows environment installations made easy using Chocolatey packages. When its time to repave either bare metal or virtualized instances, locally or on a remote machine, Boxstarter can automate both trivial and highly complex installations.

https://boxstarter.org/

http://boxstarter.org/package/nr/url?https://gist.githubusercontent.com/DavidDeSloovere/b6cc6c62b6a646a0c08f/raw/07d73aa698a5ed7f65c971216f3903fde5f0d41f/boxstarter_apps

http://boxstarter.org/package/nr/url?https://gist.githubusercontent.com/DavidDeSloovere/b6cc6c62b6a646a0c08f/raw/07d73aa698a5ed7f65c971216f3903fde5f0d41f/boxstarter_iis

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment