virtio win drivers 0.1.215

This commit is contained in:
2022-02-14 01:02:45 +01:00
parent 1ad7f606ea
commit 849e7720bc
3 changed files with 8 additions and 7 deletions

View File

@ -1,5 +1,5 @@
# Virtio Drivers for Windows VMs running on KVM
# 2011-2021 foo.li systeme + software
# 2011-2022 foo.li systeme + software
# export installed redhat certificate to a file with win7
# $CertToExport = dir cert:\LocalMachine -Recurse | where {$_.ThumbPrint -eq "66ED6843B0F6DC9B636C6814E53A26983EF32B4E"}
@ -7,7 +7,7 @@
# [system.IO.file]::WriteAllBytes("C:\Temp\RedHat.cer", $CertToExportInBytesForCERFile)
$packageName = 'kvm-virtio-drivers'
$version = '0.1.208'
$version = '0.1.215'
$url = 'https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win.iso'
$url64 = $url
$virtioPath = "$env:SystemDrive" + "\Virtio_" + $version
@ -16,7 +16,7 @@ $dpinst = Join-Path $scriptPath 'dpinstX86.exe'
$dpinst64 = Join-Path $scriptPath 'dpinstX64.exe'
$dpinstxml = Join-Path $scriptPath 'dpinst.xml'
$cleanupdrv = Join-Path $scriptPath 'cleanfolder.ps1'
$checksum = '93bd930d5d61b3e7c1390559e5e22420a75fd78a'
$checksum = '38364f050257b7c34b9f0c4b5d234c4c2cc5929d'
$checksumType = 'sha1'
$checksum64 = $checksum
$checksumType64 = $checksumType
@ -111,6 +111,7 @@ try {
Remove-Item "${env:SystemDrive}\Virtio_0.1.190" -Force -Recurse -ErrorAction SilentlyContinue
Remove-Item "${env:SystemDrive}\Virtio_0.1.196" -Force -Recurse -ErrorAction SilentlyContinue
Remove-Item "${env:SystemDrive}\Virtio_0.1.204" -Force -Recurse -ErrorAction SilentlyContinue
Remove-Item "${env:SystemDrive}\Virtio_0.1.208" -Force -Recurse -ErrorAction SilentlyContinue
} catch {
throw $_.Exception
}

View File

@ -1,8 +1,8 @@
# virtio windows drivers Removal
# 2017-2021 foo.li systeme + software
# 2017-2022 foo.li systeme + software
$packageName = 'kvm-virito-drivers'
$version = '0.1.208'
$version = '0.1.215'
$virtioPath = "$env:SystemDrive" + "\Virtio_" + $version
try {