This tutorial enables you to activate Hyper-V monitoring on your Esia.
You need to have a user with the right to execute powershell commands remotely. For example, an admin user
First, you need to configure powershell.
Powershell runs remotely via the WinRM (Windows Remote Management) protocol, which is based on HTTP.
Two ports are used:
Get-Service WinRM
Enable-PSRemoting -Force
Restart-Service WinRM
The local user may not be able to execute commands remotely. You can check this using the command:
Get-ItemProperty HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System | Select LocalAccountTokenFilterPolicy
If the value is zero or emptythis means that the local user does not have the right.
New-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System' -Name LocalAccountTokenFilterPolicy -PropertyType DWord -Value 1 -Force
= adds the value to 1