Last active
May 11, 2017 13:30
-
-
Save MattHodge/df9f08b54570c2da08ca to your computer and use it in GitHub Desktop.
SetupDevPC
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
## Run WSUS Offline and Download All Updates | |
## Use MS USB Image Creater and Put Windows Onto USB | |
## Follow Steps Here: http://www.sysadminlab.net/mobile/creating-a-fully-patch-install-wim-for-windows-78-without-mdt-but-using-wsus-offline-updater | |
## Use This Script to Remove Trouble Updates | |
# Remove Trouble Updates | |
$updates = Get-ChildItem -Path 'X:\wsusoffline\client\w63-x64\glb' | |
# Bad Updates From: | |
# https://support.microsoft.com/en-us/kb/2894518 | |
$badUpdates = @( | |
'3036493' | |
'3039976' | |
'2984976' | |
'2981685' | |
'2966034' | |
'2965788' | |
'2920189' | |
'2871777' | |
'2871690' | |
'2862330' | |
'2771431' | |
'2821895' | |
'2545698' | |
'2529073' | |
) | |
ForEach ($bu in $badUpdates) | |
{ | |
Write-Output "Checking Update $bu" | |
$updates | Where-Object { $_.Name -match $bu } | Remove-Item | |
} | |
# Install Chocolatey | |
choco install google-chrome-x64 -y | |
choco install dropbox -y | |
choco install skype -y | |
choco install skype-utility-project -y | |
choco install slack -y | |
choco install git.install -y | |
choco install 7zip.install -y | |
choco install vlc -y | |
choco install ccleaner -y | |
choco install boxstarter -y | |
choco install conemu -y | |
choco install teamviewer -y | |
choco install poshgit -y | |
choco install silverlight -y | |
choco install sourcetree -y | |
choco install googledrive -y | |
choco install pester -y | |
choco install evernote -y | |
choco install spotify -y | |
choco install steam -y | |
choco install imgburn -y | |
choco install f.lux -y | |
choco install sourcecodepro -y | |
choco install clover -y | |
choco install virtualbox -y | |
choco install virtualbox.extensionpack -y | |
choco install vagrant -y | |
choco install sqlserver2012express-managementstudio -y | |
# In Admin Console | |
Enable-RemoteDesktop | |
Set-ExplorerOptions -showHidenFilesFoldersDrives -showFileExtensions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment