Skip to content

Instantly share code, notes, and snippets.

@youngcm2
Last active December 10, 2015 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save youngcm2/6c5ced52f3662cceb79b to your computer and use it in GitHub Desktop.
Save youngcm2/6c5ced52f3662cceb79b to your computer and use it in GitHub Desktop.
Boxstarter - MyVM
Update-ExecutionPolicy Bypass
Disable-UAC
Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
Enable-RemoteDesktop
cinst -y 7zip.install
cinst -y notepadplusplus
cinst -y git
cinst -y gitextensions
cinst -y git-credential-winstore
cinst -y poshgit
cinst -y sublimetext3
cinst -y sysinternals
cinst -y linqpad5
cinst -y sourcetree
cinst -y p4merge
cinst -y agentransack
cinst -y atom
cinst -y papercut
cinst -y cloudberryexplorer.azurestorage
if(-Not(Get-Item ~/Documents/WindowsPowerShell)){
New-Item ~/Documents/WindowsPowerShell -Type Directory
}
if(-Not(Get-Item ~/Documents/WindowsPowerShell/post-flow.psm1)){
New-Item ~/Documents/WindowsPowerShell/post-flow.psm1 -Type File
}
Set-Content ~/Documents/WindowsPowerShell/posh-flow.psm1 ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/AnthonyMastrean/posh-flow/master/posh-flow.psm1'))
Import-Module ~/Documents/WindowsPowerShell/posh-flow.psm1 -Global -DisableNameChecking
cinst -y github
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment