Install QEMU guest agent for KVM machine

This commit is contained in:
Manuel Thalmann 2023-12-12 01:34:11 +01:00
parent eed0d35ecf
commit 1d1b0c9791

View file

@ -1,7 +1,17 @@
#!/bin/pwsh
. "$PSScriptRoot/Drivers.ps1";
function Initialize-Configuration {
# Hide update which prevents use of WSL in KVM
Get-WindowsUpdate -KBArticleID KB5032190 -Hide -AcceptAll;
}
function Install-PortValhallaDrivers {
param(
[Context] $context
)
choco install -y --params "'ALLUSERS=1'" qemu-guest-agent;
}
. "$PSScriptRoot/../../Generic/Windows/Install.ps1";