ActiveXperts Knowledge Base Article 7260040

Q7260040 - How do I enable WinRM on a standalone server?

There are two ways to enable WinRM on a standalone server:

 

Enable WinRM using the WinRM quick configuration tool

To enable WinRM on a standalone Windows Server:

  1. Open an elevated Command Prompt.
  2. Type the following command to enable WinRM: winrm quickconfig
  3. Type y when prompted to confirm that you want to enable WinRM.
  4. Type the following command to allow remote access to the WinRM service:
    winrm set winrm/config/service @{AllowUnencrypted="true"}
  5. Type the following command to allow remote access to the WinRM listener:
    winrm set winrm/config/listener @{Hostname="<computer_name>";Port="<port>"}

    Replace <computer_name> with the hostname of the server and <port> with the desired port number (default is 5985).
  6. Type the following command to add the current user to the WinRM Remote Management Users group:
    winrm set winrm/config/winrs '@{MaxShellsPerUser="<number>"}'

    Replace <number> with the desired number of concurrent connections.
  7. Restart the WinRM service by running the following command:
    net stop winrm' and 'net start winrm

 

Enable WinRM using the Local Group Policy Editor (GPEDIT.MSC )

To confirm that WinRM is enabled, see FAQ #Q7260015


Contact Support

If you cannot find an answer to your question(s) in our Knowledge Base, or if you need additional information or assistance, please contact our Customer Support using the Contact Support form:
Contact Support »

M