Diesel Posted November 18, 2008 Posted November 18, 2008 Anyone know of a tool or how to poll an ftp site on the local computer to see if it's down and restart it if it is? Quote
Administrators PlausiblyDamp Posted November 20, 2008 Administrators Posted November 20, 2008 The service itself is named msftpsvc so you could always restart it similar to ServiceController sc = new ServiceController("msftpsvc"); if (sc.Status == ServiceControllerStatus.Stopped ) sc.Start(); Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.