Last active
August 29, 2015 14:17
-
-
Save gerane/38d7a1117b2cd4330f8c to your computer and use it in GitHub Desktop.
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
# Allow Reboots | |
$Boxstarter.RebootOk=$true | |
$Boxstarter.NoPassword=$false | |
$Boxstarter.AutoLogin=$true | |
#$cred=Get-Credential Admin | |
Update-ExecutionPolicy Unrestricted | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowFileExtensions #-EnableShowProtectedOSFiles | |
Set-StartScreenOptions -EnableBootToDesktop -EnableDesktopBackgroundOnStart | |
Disable-UAC | |
# Git | |
cinst git.install -y | |
choco install githubforwindows -y | |
cinst git-credential-winstore -y | |
cinst poshgit -y | |
# Atom | |
#choco install atom -y | |
# Applications | |
choco install google-chrome-x64 -y | |
choco install pdfxchangeviewer -y | |
choco install googledrive -y | |
choco install vlc -y | |
choco install dropbox -y | |
#choco install flashplayerplugin -y | |
# Tools | |
choco install filezilla -y | |
cinst sysinternals -y | |
choco install windirstat -y | |
choco install console-devel -y | |
choco install virtualclonedrive -y | |
# Powershell | |
choco install dsc.powershellcommunity -y | |
choco install pscx -y | |
choco upgrade all -y | |
# Net3.5 | |
cinst netfx3 -source windowsfeatures -y | |
# PowerShell Studio | |
(new-object System.Net.WebClient).DownloadFile('http://www.sapien.com/download/file_2014/Ukd1RzMxanZxUkMraEpXa2IvRm92TmQ5ak54OWVxTHBEUnFWa1ArVGRNeFI5ZWEwTTExeGhzUGxKT25STlJhbHBHcms3VllLenBEZWJBdHRvUUVKTnc9PQ%3D%3D/software/2014plus,$env:userprofile\Downloads\PoshStudio.exe') | |
Start-Process "$env:userprofile\Downloads\PoshStudio.exe" -ArgumentList "/s" -Wait | |
# Taskbar items | |
Install-ChocolateyPinnedTaskBarItem "$env:ProgramFiles\Google\Chrome\Application\chrome.exe" | |
Install-ChocolateyPinnedTaskBarItem "$env:windir\explorer.exe" | |
Install-ChocolateyPinnedTaskBarItem "$env:SystemRoot\system32\WindowsPowerShell\v1.0\powershell.exe" | |
Install-ChocolateyPinnedTaskBarItem "$env:userprofile\Google Drive\Sysadmin\cmder\Cmder.exe" | |
# Windows Updates | |
Install-WindowsUpdate -AcceptEula | |
enable-UAC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment