Skip to content

Instantly share code, notes, and snippets.

@yzorg
Last active August 29, 2015 14:20
Show Gist options
  • Save yzorg/aaf594a026933f501fb9 to your computer and use it in GitHub Desktop.
Save yzorg/aaf594a026933f501fb9 to your computer and use it in GitHub Desktop.
create a local GIT folder for windows: create directory links for default SQL Server Management Studio and WindowsPowershell directories
pushd C:\Projects\local-git
$poshdir = $(gi '~\Documents\WindowsPowershell' | select -exp FullName)
cmd /c mklink /J PowerShell $poshdir
$sqldir = $(gi '~\Documents\SQL Server Management Studio' | select -exp FullName)
cmd /c mklink /J SSMS $sqldir
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment