Skip to content

How to Manage Windows Server Roles Remotely with Server Manager Print

  • 0

Applies to: Windows Server 2019, Windows Server 2022, and Windows Server 2025.

Server Manager can install, remove, and inspect roles on remote hosts while administrators work from a hardened management server.

Prerequisites

  • The destination server is online and added to the server pool.
  • WinRM remote management is enabled.
  • The operator has delegated local or domain administrative rights.

Step-by-step procedure

  1. From Server Manager, choose Manage > Add Roles and Features.
  2. Select Role-based or feature-based installation.
  3. Choose the correct remote destination server and review its IP address and operating system.
  4. Select the required role services and management tools.
  5. Review dependencies, export configuration settings if required, and start installation during an approved change window.
  6. Review notifications and restart only when the selected role requires it.

PowerShell commands

Invoke-Command -ComputerName server01 -ScriptBlock { Get-WindowsFeature | Where-Object InstallState -eq "Installed" }
Test-WSMan server01.contoso.example

Verification

Use Get-WindowsFeature on the destination and test the workload-specific service from a separate client.

Rollback

Run the Remove Roles and Features wizard or Uninstall-WindowsFeature for the exact components added. Restore the pre-change backup if application data was modified.

Operational and security notes

  • Take a verified backup before modifying production roles.
  • Never install a role merely to obtain its management console; install the matching RSAT feature on the management host.
  • Record feature names and restart requirements in the change ticket.

Related resources

For managed Canadian VPS and RDS infrastructure, visit networkmanager.info. See also the official Microsoft Server Manager documentation.


Was this answer helpful?

« Back