# QEMU Guest Agent # 2016-2021 foo.li systeme + software $packageName = 'qemu-guest-agent' $version = '101.2.0' $installerType = 'msi' $url = 'https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-qemu-ga/qemu-ga-win-' + $version + '-1.el7ev/qemu-ga-x86.msi' $url64 = 'https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-qemu-ga/qemu-ga-win-' + $version + '-1.el7ev/qemu-ga-x86_64.msi' $silentArgs = '/qb' $packageSearch = 'QEMU guest agent*' $checksum = '51627abb312ddeb54b2717546eef9efb96f54a5a' $checksumType = 'sha1' $checksum64 = 'dc03cef63f19aa3ce10b419fcb06a16f2d53e233' $checksumType64 = $checksumType $validExitCodes = @(0,3010) $compmanu = Get-WmiObject Win32_ComputerSystem | select manufacturer if ($compmanu.manufacturer -like '*Bochs*') { Write-Host 'QEMU/KVM detected' } elseif ($compmanu.manufacturer -like '*QEMU*'){ Write-Host 'QEMU/KVM detected' } else { Write-Host 'could not detect QEMU/KVM virtual machine. Stopping deployment' throw 'no KVM/QEMU VM detected' } try { $app = Get-ItemProperty -Path @('HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*', 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*') ` -ErrorAction:SilentlyContinue | Where-Object { $_.DisplayName -like $packageSearch } if ($app -and ([version]$app.DisplayVersion -ge [version]$version)) { Write-Host 'QEMU Guest Agent' $version 'or higher is already installed. Doing nothing.' } else { Install-ChocolateyPackage $packageName $installerType $silentArgs $url $url64 ` -checksum $checksum -checksumType $checksumType ` -checksum64 $checksum64 -checksumType64 $checksumType64 ` -validExitCodes $validExitCodes } } catch { throw $_.Exception }