我正在尝试使用以下代码从我的asp.net应用程序重新启动Windows时间服务,但它总是返回一个TimeoutException。我已经尝试了各种方法来删除此错误并重新启动服务,但不幸的是它失败了。我为此目的使用的代码如下所示:
private ServiceController service =
new ServiceController( "W32Time", Environment.MachineName );
private TimeSpan timeout = TimeSpan.FromMilliseconds( 35000 );//15000 was the old value
// Restart W32Time Service
private void RestartService( )
{
try
{
// Stop service if it is running
if( service.Status == ServiceControllerStatus.Running )
{
service.Stop( );
service.WaitForStatus( ServiceControllerStatus.Stopped, timeout );
}
// Start service if it is stopped
if( service.Status == ServiceControllerStatus.Stopped )
{
if (!(service.Status.Equals(ServiceControllerStatus.Stopped) ||
service.Status.Equals(ServiceControllerStatus.StopPending)))
{
service.Stop();
}
service.Start( );
service.WaitForStatus( ServiceControllerStatus.Running, timeout );
}
}
catch( Exception ex )
{
log.Error( "Error in restarting windows service.", ex );
}
}
我使用的是Windows 7.任何人都可以建议我解决这个问题吗?任何帮助将不胜感激。
答案 0 :(得分:1)
使用VS内置Web服务器,您的示例对我来说很合适。
这导致我认为您的网络应用运行的用户没有启动/停止服务的权限。这可能是AppPool用户或您登录的用户,具体取决于应用程序的配置方式。