Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

restart IIS

iisreset /stop /timeout:60
taskkill /F /FI "SERVICES eq was"
iisreset /start
Comment

IIS RESTART c#

public static void RestartService(string serviceName, int timeoutMilliseconds)
{
  ServiceController service = new ServiceController(serviceName);
  try
  {
    int millisec1 = Environment.TickCount;
    TimeSpan timeout = TimeSpan.FromMilliseconds(timeoutMilliseconds);

    service.Stop();
    service.WaitForStatus(ServiceControllerStatus.Stopped, timeout);

    // count the rest of the timeout
    int millisec2 = Environment.TickCount;
    timeout = TimeSpan.FromMilliseconds(timeoutMilliseconds - (millisec2-millisec1));

    service.Start();
    service.WaitForStatus(ServiceControllerStatus.Running, timeout);
  }
  catch
  {
    // ...
  }
}
Comment

PREVIOUS NEXT
Code Example
Shell :: linux poid dossier 
Shell :: Prerequisite packages installation for Docker 
Shell :: attemting to start apache server 
Shell :: kali uninstall nginx 
Shell :: change default path to open in termanl 
Shell :: apt-get install language-pack-utf-8 
Shell :: install scratchpad jupyter notebook 
Shell :: stop kill network connection using cmd line 
Shell :: docker-containers-noroutetohostexception-host-is-unreachable 
Shell :: ubuntu check installed qt version 
Shell :: hp probook 6560b hackintosh 
Shell :: Err:15 http://ppa.launchpad.net/gnome-terminator/ppa/ubuntu bionic Release 404 Not Found [IP: 91.189.95.83 80] 
Shell :: list auths in vault 
Shell :: append filename at the beggining linux 
Shell :: anandsiddharth/laravel-paytm-wallet for laravel 7 github 
Shell :: api uber eat node js 
Shell :: uninstall libxcb 
Shell :: how to deploy project on github 
Shell :: path configuration cmd 
Shell :: Linux Terminal has lost its colours 
Shell :: shell script runner software for linux 
Shell :: save dan exit di vim 
Shell :: run a pomdp file to get policy file 
Shell :: load dump command 
Shell :: slidev 
Shell :: how to log into another linux machine using ip address 
Shell :: clear github keychain passowrd from terminal 
Shell :: arangodb arangodump backup 
Shell :: is there a steam repository for kali linux 
Shell :: how to install wordpress ubuntu 16.04 rosehosting 
ADD CONTENT
Topic
Content
Source link
Name
5+3 =