Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

Latest commit

 

History

History
55 lines (35 loc) · 1.5 KB

IisManager.md

File metadata and controls

55 lines (35 loc) · 1.5 KB

IIS Manager

IIS Manager allows to manage local or remote IIS server. It works over SOAP-based protocol called WS-Management. HTTPS endpoint runs on port 8172.

You may manage app pools, web sites, applications and global IIS settings. Actually it edits applicationHost.config, web.config and other XML files.

IIS Management Console

Install it to local or management server.

Add-WindowsFeature Web-Mgmt-Console

Management Service

Install it to enable remote IIS management.

Web Management Service requires configuration:

  • Enable remote access in registry.
  • Enable service autostart.
  • Set correct SSL certificate for HTTPS endpoint.

It's easier to do everything using cmdlet from Saritasa.RemoteManagement module. For example:

Install-Iis -ServerHost web.saritasa.local -ManagementService
Install-WebManagementService

IIS Manager for Remote Administration

Install IIS Manager component of Windows 10.

Enable-WindowsOptionalFeature -Online -FeatureName IIS-ManagementConsole -All

Install the manager to Windows 10.