vDOS 2020.03.01

This commit is contained in:
2020-05-10 16:21:44 +02:00
parent 42647d35a1
commit 48a75a07cd
3 changed files with 32 additions and 27 deletions

View File

@ -1,12 +1,12 @@
# vDOS for Windows
# 2011-2018 foo.li systeme + software
# 2011-2020 foo.li systeme + software
# download site has ssl issues, setup is included in package...
# package installs to 'default' location: c:\vDOS
# package installs to 'default' location: c:\vDOS
$packageName = 'vdos'
$version = '2018.05.01'
$version = '2020.03.01'
$installerType = 'exe'
$scriptPath = $(Split-Path $MyInvocation.MyCommand.Path)
$setupFullPath = Join-Path $scriptPath 'vDosSetup.exe'
@ -17,4 +17,4 @@ try {
Remove-Item $setupFullPath -ErrorAction SilentlyContinue
} catch {
throw $_.Exception
}
}

View File

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