Thursday, February 9, 2012

Stop/Start IIS from DOS Prompt

iisreset.exe /restart
To see more information about iisreset.exe,
type on the MSDOS command line

iisreset /?

Other commands

net start iisadmin
net stop iisadmin

No comments:

Post a Comment

Open default email app in .NET MAUI

Sample Code:  if (Email.Default.IsComposeSupported) {     string subject = "Hello!";     string body = "Excellent!";    ...