Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4340822
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T11:24:05+00:00 2026-05-21T11:24:05+00:00

I am trying to restart Windows Time Service from my asp.net application using the

  • 0

I am trying to restart Windows Time Service from my asp.net application using the following code but it always return s a TimeoutException. I have tried various ways to remove this error and restart the service but unfortunately fails in it. The code which i am using for this purpose is shown below:

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 );
    }
}

I am using Windows 7. Can anyone suggest me a solution for this problem? Any help will be appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T11:24:05+00:00Added an answer on May 21, 2026 at 11:24 am

    Davids comment is of relevance, also you have to check for dependencies to W32time service. There may not exist any? But if it does, it can cause you problem. In case of a 64 bit machine, i would check for the relevance of ‘W32..’

    [Edit]
    I attach some code sample that at least works on another Windows 7 computer. The code you provided above works as well, to me.

    class Program
    {
        static void Main()
        {
            WindowsServiceManager service = new WindowsServiceManager();
            service.Run("W32Time", 2000);
            service.End("W32Time", 2000);
        }
    }
    
    public class WindowsServiceManager
    {
        internal void Run(string serviceId, int timeOut)
        {
            using (ServiceController serviceController = new ServiceController(serviceId))
            {
                TimeSpan t = TimeSpan.FromMilliseconds(timeOut);
                serviceController.Start();
                serviceController.WaitForStatus(ServiceControllerStatus.Running, t);
            }
        }
    
        internal void End(string serviceId, int timeOut)
        {
            using (ServiceController serviceController = new ServiceController(serviceId))
            {
                TimeSpan t = TimeSpan.FromMilliseconds(timeOut);
                serviceController.Stop();
                serviceController.WaitForStatus(ServiceControllerStatus.Stopped, t);
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to restart a windows service (part of the application) from my
I'm trying to restart the service from a remote machine. Here is my code.
I'm trying to programmatically restart a service from within a helper application written in
Im trying to kill a windows service and then restart it using just a
I am trying to start my database server from command prompt in Windows. But
I'm trying to learn Windows 8 metro style app development but every time I
I'm currently trying to write a Windows Media Center Application (Vista) that can restart
I'm trying to measure elapsed time using Stopwatch but consistently get times which are
I have an application that runs as a Windows service. It stores various things
I'm trying to talk to a USB device using libusb, but I feel like

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.