```bash
sudo apt install gss-ntlmssp gss-ntlmssp-dev libntlm0 libntlm0-dev
pwsh
```
```powershell
Install-Module -Name PSWSMan
# On Kali, copying the dlls to the pwsh install folder (likely /opt) may be required
$cred=Get-Credential
$s=New-PSSession -ComputerName 172.16.1.201 -Authentication Negotiate -Credential $cred
```