Last active
August 29, 2015 14:06
-
-
Save ThaddParker/64107a18bd54d5572f0d 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
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
Enable-RemoteDesktop | |
# dev tools | |
cinst console-devel | |
cinst dotpeek | |
cinst sysinternals | |
cinst fiddler4 | |
cinst GoogleChrome | |
cinst Firefox | |
cinst notepadplusplus.install | |
cinst javaruntime | |
cinst apache-tomcat | |
cinst 7zip.install | |
cinst winmerge | |
cinst linqpad4 | |
# java script functionality | |
cinst PhantomJS | |
cinst nodejs.install | |
$nodePath = Join-Path $env:programfiles 'nodejs' | |
$is64bit = (Get-WmiObject Win32_Processor).AddressWidth -eq 64 | |
if ($is64bit) {$nodePath = Join-Path ${env:ProgramFiles(x86)} 'nodejs'} | |
$env:Path = "$($env:Path);$nodePath" | |
Write-Output $env:Path | |
npm install -g autosave | |
npm install -g weyland | |
# server roles | |
cinst IIS-WebServerRole -source windowsfeatures | |
cinst ASPNET -source webpi | |
cinst ASPNET_REGIIS -source webpi | |
cinst DefaultDocument -source webpi | |
cinst DynamicContentCompression -source webpi | |
cinst HTTPRedirection -source webpi | |
cinst IIS7_ExtensionLessURLs -source webpi | |
cinst IISExpress -source webpi | |
cinst IISExpress_7_5 -source webpi | |
cinst IISManagementConsole -source webpi | |
cinst ISAPIExtensions -source webpi | |
cinst ISAPIFilters -source webpi | |
cinst NETExtensibility -source webpi | |
cinst RequestFiltering -source webpi | |
cinst StaticContent -source webpi | |
cinst StaticContentCompression -source webpi | |
cinst UrlRewrite2 -source webpi | |
cinst WindowsAuthentication -source webpi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment