User guide
NetXtreme II User Guide
September 2013
Broadcom Corporation
Page 114 Detailed Procedures Document INGSRVT78-CDUM100-R
DETAILED PROCEDURES
This section provides the step-by-step instructions for each installation task. The required tasks for each communication
protocol differ, as listed in Installation Tasks. Refer to the appropriate task list to ensure you complete all necessary tasks
for the chosen protocol.
WS-MAN ON WINDOWS SERVER
Install the WinRM Software Component on Server
On the following operating systems, WinRM 2.0 is preinstalled:
• Windows 7
• Windows 8
• Windows 8.1
• Windows Server 2008 R2
• Windows Server 2012
• Windows 2012 R2
For Windows XP and Windows Server, 2008, install Windows Management Framework Core, which includes WinRM 2.0
and Windows Powershell 2.0, from the following link:
http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=11829
Perform Basic Configuration on the Server
The Windows firewall must be enabled for WinRM to work properly. For detailed information about firewall configuration, see
Additional Server Configuration. After the firewall is configured, open a command prompt and run the following command to
enable the remote management on the Windows server:
winrm quickconfig
You can use the following command to view the configuration information for the service:
winrm get winrm/config
Perform User Configuration on the Server
To connect to WinRM, the account must be a member of the local administrators group on the local or remote computer.
The output of the get winrm/config command will be as follows:
RootSDDL = O:NSG:BAD:P(A;;GA;;;BA)S:P(AU;FA;GA;;;WD)(AU;SA;GWGX;;;WD)
BA stands for BUILTIN\Administrators.
To add another user group to the WinRM allowed connect list, you can modify the RootSDDL to include the new user group.
You will need the SSDL ID for the new group. For example, the following command adds the new user group with SDDL ID
S-1-5-21-1866529496-2433358402-1775838904-1021.
winrm set winrm/config/Service @{RootSDDL="O:NSG:BAD:P(A;GA;;;BA)(A;;GA;;;
S-1-5-21-1866529496-2433358402-1775838904-1021)S:P(AU;FA;GA;;
WD)(AU;SA;GWGX;;;WD)"}