Installing agents on Windows through WinRS
You can install agents remotely on Windows™ systems through WinRS.
Before you can install agents on Windows systems remotely, you must first install an agent manually and designate that agent as the WinRS agent. Follow these steps:
- Install an agent on a Windows system via the command line. See Installing agents from the command line.
- On the IBM® UrbanCode® Deploy server, as an administrator, click
- On the System Settings page, in the WinRS Agent field, select the agent that you installed on a Windows system.
- Click Save.
- Configure the system that hosts the WinRS agent:
- Configure the system to communicate over WinRS by running
the following commands on the command line. Each command must be on a single
line.
winrm quickconfig
If you do not have permission to run those commands, run the following commands instead:winrm set winrm/config/winrs @{MaxMemoryPerShellMB="1024"}
sc config "WinRM" start= auto
net start WinRM
winrm create winrm/config/listener?Address=*+Transport=HTTP
netsh firewall add portopening TCP 80 "Windows Remote Management"
netsh firewall add portopening TCP 5985 "Windows Remote Management"
reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v LocalAccountTokenFilterPolicy /t REG_DWORD /d 1 /f
winrm set winrm/config/winrs @{MaxMemoryPerShellMB="1024"}
- Ensure that the user that runs the agent has the permission to map network drives.
- Configure the system to communicate over WinRS by running
the following commands on the command line. Each command must be on a single
line.