Last active
August 7, 2016 15:33
-
-
Save cygnull/072c465374450622dfc6f1567904effd to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Developer Software Install # | |
############################## | |
Set-ExecutionPolicy Unrestricted | |
Disable-MicrosoftUpdate | |
Disable-UAC | |
choco install sonyvegaspro -y | |
choco install adobe-creative-cloud -y | |
#choco install VisualStudio2015Professional -packageParameters "--AdminFile https://www.LINKTO../AdminDeployment.xml" -y | |
choco install git.install -y | |
choco install vcredist2015 -y | |
choco install sourcetree -y | |
choco install dotPeek -y | |
choco install vagrant | |
choco install ecplise -y | |
choco install jre8 -y | |
choco install jdk8 -y | |
choco install AndroidStudio -y | |
#choco install intellijidea-community -y | |
choco install visualstudiocode -params /NoDesktopIcon /NoQuicklaunchIcon -y | |
choco install apktool -y | |
choco install nodejs.install | |
# Fonts | |
choco install sourcecodepro -y | |
choco install RobotoFonts -y | |
choco install ubuntu.font -y | |
choco install opensans -y | |
choco install MesloLG.DZ -y | |
choco install bitstreamverafonts -y | |
choco install dejavufonts -y | |
# Windows Features | |
#cinst Microsoft-Hyper-V-All -source windowsFeatures | |
#cinst IIS-WebServerRole -source windowsfeatures | |
#cinst IIS-HttpCompressionDynamic -source windowsfeatures | |
#cinst TelnetClient -source windowsFeatures | |
schtasks.exe /create /s "localhost" /ru "System" /tn "Update Chocolatey packages" /tr "%ChocolateyInstall%\bin\cup all" /sc DAILY /st 06:00 /F | |
Get-ScheduledTask -TaskName *defrag* | Disable-ScheduledTask | |
if (Test-PendingReboot) { Invoke-Reboot } | |
Move-LibraryDirectory "Downloads" "E:\Downloads" | |
Install-ChocolateyFileAssociation ".txt" "$env:programfiles\Sublime Text 3\sublime_text.exe" | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
Set-TaskbarOptions -Size Small -Lock | |
Disable-InternetExplorerESC | |
Disable-BingSearch | |
Disable-GameBarTips | |
Disable-PSRemoting | |
Update-ExecutionPolicy Unrestricted | |
Enable-MicrosoftUpdate | |
Install-WindowsUpdate -acceptEula -GetUpdatesFromMS | |
Enable-UAC | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment