ActiveXperts Knowledge Base Article 7260040

Our mission at ActiveXperts Software is to deliver high quality Network Monitoring solutions and Windows Development components. Our goal is to supplement these solutions with timely support resources that can help at many different levels.
The first thing you want to do is try to find the answer to your problem in the Knowledge Base. If you cannot find an answer to your question in our Knowledge Base, or if you need additional information or assistance, please use our Contact Support form.


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


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 our Contact Support Form

M