Yes, all of our Windows shared hosting packages support Microsoft's IIS Remote Management features. This capability lets you connect directly from the IIS Manager console on your local machine to configure your site's IIS settings without needing to go through the hosting control panel for every change.
Access the feature under each website's settings via a dedicated "IIS Management" tab where you can enable the service and create management credentials. The tool delivers the granular control experienced administrators require, but it carries risks for those without deep IIS knowledge.
#Enabling IIS Remote Management
Prerequisites include an active Windows shared hosting account and familiarity with IIS architecture. The control panel provides a straightforward interface to activate the feature. Changes take effect within minutes, after which you can connect using compatible client tools.
- Log in to the control panel and select the target website from your hosted domains list.
- Navigate to the website settings section.
- Click on the "IIS Management" tab.
- Enable the remote management feature and create a dedicated username and strong password for authentication.
After activation, the remote management service starts for that specific site. Always use unique credentials per site rather than reusing passwords to limit exposure if one account is compromised.
#Intended Use Cases for Advanced Users
IIS Remote Management exists to give experienced administrators fine-grained control that goes beyond standard hosting panel options. Common tasks include precise tuning of handler mappings for custom file extensions or application types, configuring session state with specific timeout values or storage modes, and adjusting other low-level IIS behaviors that impact application performance and compatibility.
#Example Session State Configuration
<configuration>
<system.web>
<sessionState mode="InProc" timeout="30" cookieless="false" />
</system.web>
</configuration>
- Custom handler mappings for specialized application requirements
- Session state adjustments including out-of-process modes when needed
- Advanced request filtering and custom error page configurations
#Risks and Recommendations
We recommend that only advanced users employ this feature. Users who have limited experience managing sites through the IIS manager may find it confusing and difficult and risk harming their website. A single incorrect setting in handler mappings or pipeline configuration can result in 500 errors, broken application functionality, or unintended exposure of sensitive files.
For these users we recommend you utilize our control panel to make changes to your websites settings. The panel enforces safe defaults and prevents modifications that could destabilize the shared environment or conflict with account-level policies.
#Limitations of Remote Administration
Please note that not all features are available for remote administration. Server-level settings, certain security modules, and features that could affect other sites on the shared server remain restricted. This design preserves stability, performance, and security for all customers on the platform.
If a setting appears unavailable or fails to apply, the restriction is intentional. Revert the change and use the control panel equivalent or open a support ticket for guidance on achieving the desired outcome safely.
Reserve IIS Remote Management for complex scenarios where its advanced capabilities are truly required. For the majority of tasks the hosting control panel remains the safer, faster, and fully supported administration method. Test all remote changes on a staging site first when possible, and maintain backups before making significant IIS modifications.
Comments
No comments yet