Add an uninstall script

This commit is contained in:
Philippe Miossec
2016-10-18 23:26:10 +02:00
parent 4c4bcbd0fc
commit 17da90fa06
@@ -0,0 +1,9 @@
$sysDrive = $env:SystemDrive
$gittfsPath = "$sysDrive\tools\gittfs"
if(test-path $gittfsPath) {
write-host "Cleaning out the contents of $gittfsPath"
Remove-Item "$($gittfsPath)\*" -recurse -force
}
write-host 'git-tfs has been uninstalled.'