Enabling remote connections to IIS 7.x Management Service by using Powershell
Is it possible to execute the “Enable Remote Connections” step from this instructions (“Remote Administration for IIS Manager”) using Powershell?
From this page on IIS Remote Mgmt, it appears you will need to add a registry key:
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WebManagement\Server /v EnableRemoteManagement /t REG_DWORD /d 1
To add a new regkey wiht powershell, try:
New-Item -path Registry HKLM\SOFTWARE\Microsoft\WebManagement\Server\EnableRemoteManagement -PropertyType DWord -Value 1
Please note this is not tested.
Check more discussion of this question.
Related posts:
- How can I Remote Access an IIS7 service with IIS Manager?
- IIS Administration PowerShell Cmdlets on Windows 2008 R1
- Execute program on remote computer using PowerShell
- Enabling remote connections via Group Policy on Windows xp workstations
- problem with enabling remote management of hyper-v server 2008 r2
Leave a comment
Recent Posts
- Is there a way for administrators to disable users from installing Firefox extensions?
- Is there research material on NTP accuracy available?
- How to create a limited “domain admin” that does not have access to domain controllers?
- Can Windows RDC admin users be immune from being kicked?
- Domain Administrators account policy (After PCI audit)
Tags
active-directory
amazon-ec2
apache
apache2
backup
bash
centos
cisco
command-line
debian
dns
email
exchange
firewall
iis
iis7
iptables
linux
macosx
monitoring
mysql
networking
nginx
performance
permissions
php
postfix
raid
security
sql-server
sql-server-2005
sql-server-2008
ssh
ssl
ubuntu
unix
virtualization
vpn
webserver
windows
windows-7
windows-server-2003
windows-server-2008
windows-server-2008-r2
windows-xp





