Hi ETHREAL1,
If you are using a laptop you could trigger presentation settings
Manual activation can be done by right-click on start then choose mobility center & turn on presentation mode, this will override power savings
This can also be activated through CLI with presentationsettings /start or /stop
you could use this PowerShell script to check & trigger it
#check if any vm is running $vm = Get-VM | Where-Object {$_.State -eq 'Running'}#start presentation mode if vm is runningif ($vm) {Write-Host "A virtual machine is currently running - turning on presentation settings."PresentationSettings.exe /start} else {Write-Host "No virtual machines are currently running - turning off presentation settings."PresentationSettings.exe /stop}