# Prerequisites

- Connectivity to Hyper-V from Pandora

The plugin is a binary that contains the dependencies packaged, so no installation of any kind of dependency is required for its use.

- Permissions

**Configure WinRM**  
`Enable-PSRemoting -Force -SkipNetworkProfileCheck`  
`winrm quickconfig -force`  
`winrm set winrm/config/service/auth '@{Basic="true"}'`  
`winrm set winrm/config/service '@{AllowUnencrypted="true"}'`  
`winrm set winrm/config/service '@{MaxTimeoutms="600000"}'`

**Allow HTTP 401**  
`reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v LocalAccountTokenFilterPolicy /t REG_DWORD /d 1 /f`

**Allow WinRM Firewall**  
`New-NetFirewallRule -DisplayName "WinRM HTTP In" -Direction Inbound -Protocol TCP -LocalPort 5985 -Action Allow -Profile Any -Force`

**Restart services**  
`Restart-Service WinRM -Force`  
`Start-Service vmms`

**Check all**  
`winrm get winrm/config/service/auth`  
`Get-VM`

- Install the **hv-kvp-daemon** service on VMs with Linux systems so that they report all modules.