Explains how to leverage PowerShell to connect to your MBM.
You can configure your MinnowBoard Max (MBM) running Windows Athens using PowerShell. PowerShell is a task-based command-line shell and scripting language, designed especially for system administration.
From the telnet session, type:
net user <username> <password> /add
net localgroup Administrators <username> /add
Next, on your local PC, start PowerShell console app in administrator mode and type:
Set-Item WSMan:\localhost\Client\TrustedHosts -Value <MBM-name or IP Address>
Now, you can start a session with you MBM:
$s=New-PSSession -computername <MBM Name/IP Address> -credential <username>
Enter-PSSession $s
As always, for questions and feedback, contact us.