vDOS Package

This commit is contained in:
2018-04-19 15:09:51 +02:00
parent 8689917094
commit d6f1f84d04
5 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
# vDOS Removal
# 2011-2018 foo.li systeme + software
$packageName = 'vdos'
$version = '2017.08.01'
$vdosPath = "$env:SystemDrive" + "\vDos"
try {
if (Test-Path $vdosPath) {
Write-Host 'removing directory ' $vdosPath
Remove-Item $vdosPath -Recurse -Force
} else {
Write-Host 'could not detect ' $vdosPath ' files.'
}
} catch {
throw $_.Exception
}