After installing a nano server, you can manage it through remote powershell. This howto shows the way to proceed. <br />to establish the connection with a nano server use the script below with replacing the values that suit your environment. <br /> <br />Script.ps <br />Set-Item WSMan:\localhost\Client\TrustedHosts "192.168.1.51" <br />$ip = “192.168.1.51” <br />$user = “$ip\Administrator” <br />Enter-PSSession -ComputerName $ip -Credential $user <br /> <br /> <br />Created by Christian ALT for http://vision6D.com <br />Channel about IT Technology, Management and Communication
