Skip to content

Instantly share code, notes, and snippets.

@n3r0-ch
Last active May 1, 2018 07:12
Show Gist options
  • Save n3r0-ch/cfee879f23275c1a94345248f79d14e1 to your computer and use it in GitHub Desktop.
Save n3r0-ch/cfee879f23275c1a94345248f79d14e1 to your computer and use it in GitHub Desktop.
My Boxstarter Configuration
<#
Run this automatically via this command:
"C:\Program Files\Internet Explorer\iexplore.exe" http://boxstarter.org/package/nr/url?https://gist.githubusercontent.com/n3r0-ch/cfee879f23275c1a94345248f79d14e1/raw/boxstarter.ps1
#>
# Boxstarter options
$Boxstarter.RebootOk=$true # Allow reboots?
# Update Windows
Enable-MicrosoftUpdate
Install-WindowsUpdate -AcceptEula
if (Test-PendingReboot) { Invoke-Reboot }
# Allow Powershell execution
Update-ExecutionPolicy Unrestricted
# Set Explorer settings
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar
Enable-RemoteDesktop
# Enable Remote Desktop
Enable-RemoteDesktop
# Disable game bar tips
Disable-GameBarTips
# Disable Bing search
Disable-BingSearch
# Set taskbar options
Set-TaskbarOptions -Size Large -Lock -Dock Bottom -Combine Always
# Enable Telnet
cinst TelnetClient -source windowsFeatures
# Essentials
cinst chocolatey
cinst 7zip
cinst adobereader
cinst flashplayerplugin
cinst curl
cinst wget
cinst axel
cinst poshgit
cinst git-credential-winstore
cinst axel
cinst caffeine
cinst nmap
cinst ccleaner
cinst puush
# Communication
cinst slack
cinst skype
# Maven
cinst javaruntime
cinst jdk7
cinst jdk8
cinst maven
# Sync
cinst googledrive
cinst dropbox
# Production
cinst lastpass
cinst libreoffice
cinst adobe-creative-cloud
cinst heidisql
cinst evernote
cinst sourcetree
cinst deluge
cinst wireshark
cinst winpcap
cinst rufus
cinst veracrypt
cinst inssider
cinst citrix-receiver
# Browsers
cinst googlechrome
cinst firefox
cinst opera
cinst tor-browser
cinst postman
# Editors and IDE's
cinst sublimetext3
cinst intellijidea-ultimate
cinst phpstorm
cinst poedit
# Administration
cinst winscp
cinst mremoteng
cinst cyberduck
cinst teamviewer
cinst nagstamon
# Media
cinst vlc
cinst spotify
cinst gimp
cinst handbrake
cinst itunes
# Virtualization
cinst virtualbox
cinst virtualbox.extensionpack
cinst vagrant
# Reboot if needed
if (Test-PendingReboot) { Invoke-Reboot }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment