IISRESET of remote server
Hi,
Does anyone have a good guide on how to enable firewall rules and RPC so that it's possible to make a IISRESET from one Server to another.
OS: Windows 2008 R2
I tried following this one, but still it does not work:
http://blogs.msdn.com/b/lexli/archive/2009/05/19/the-rpc-server-is-unavailable-for-iisreset.aspx
December 5th, 2011 6:10pm
You might ask them here.
http://forums.iis.net/
Regards, Dave Patrick ....
Microsoft Certified Professional
Microsoft MVP [Windows]
Free Windows Admin Tool Kit Click here and download it now
December 5th, 2011 11:05pm
Use sysinternal PsExec Command line utility.
PsExec \\WebServer1 -u Administrator -p somePassword IISReset /restart
From Powershell:
(Get-WmiObject Win32_Service -ComputerName ServerA -Filter "Name='iisadmin'").InvokeMethod("StopService", $null)
Advance firewall settings:
Enable the rule named "Remote Administration (RPC-EPMAP) for the Domain Profile.
For IIS related queries,
Post here.
Thanks
December 6th, 2011 1:16am


