automatically installs virtio-drivers on windose. far from perfect, but

it does it's job and I dont't care. It's just windose...
This commit is contained in:
2017-11-11 00:32:56 +01:00
parent 25b86e94ca
commit 86485f564e
8 changed files with 152 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# Spice Guest Tools Removal
# 2017 foo.li systeme + software
$packageName = 'kvm-virito-drivers'
$version = '0.1.126'
$virtioPath = "$env:SystemDrive" + "\Virtio_" + $version
try {
if (Test-Path $virtioPath) {
Write-Host 'removing directory ' $virtioPath
Remove-Item $virtioPath -Recurse -Force
} else {
Write-Host 'could not detect ' $virtioPath ' files.'
}
Write-Host '[NOTE]: this does not remove any installed drivers, just the sourcefiles.'
} catch {
throw $_.Exception
}