PAUSE FTP

this.serviceController1 = new ServiceController();

this.serviceController1.ServiceName = "MSFtpsvc";

if (this.serviceController1.Status == ServiceControllerStatus.Running)

 { try

{

this.serviceController1.Pause();

this.serviceController1.WaitForStatus(ServiceControllerStatus.Paused);

 MessageBox.Show("已经暂停Internet信息服务默认FTP站点。", "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);

 }

catch (Exception ex)

{

MessageBox.Show(ex.Message, "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);

}

}

posted @ 2010-07-29 14:48  greencolor  阅读(103)  评论(0编辑  收藏  举报