Install QEMU guest agent for KVM machine
This commit is contained in:
parent
ca42267877
commit
0700a59ba2
1 changed files with 10 additions and 0 deletions
|
@ -1,7 +1,17 @@
|
||||||
#!/bin/pwsh
|
#!/bin/pwsh
|
||||||
|
. "$PSScriptRoot/Drivers.ps1";
|
||||||
|
|
||||||
function Initialize-Configuration {
|
function Initialize-Configuration {
|
||||||
# Hide update which prevents use of WSL in KVM
|
# Hide update which prevents use of WSL in KVM
|
||||||
Get-WindowsUpdate -KBArticleID KB5032190 -Hide -AcceptAll;
|
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";
|
. "$PSScriptRoot/../../Generic/Windows/Install.ps1";
|
||||||
|
|
Loading…
Reference in a new issue