Controlling Windows Services

Controlling Windows Services 1.7

Controlling Windows Services 1.7 Download Summary

  • Language: Python
  • Platform: Windows
  • License: Other Free / Open Source License - Python License
  • Databases: N/A
  • Downloads: 405
  • Released: Jun 7, 2007

Controlling Windows Services 1.7 Description

This script is a module for manipulating WinNT, Win2k & WinXP services. It contains the WService Class.

The WService Class is used for controlling WinNT, Win2k & WinXP like services.

Just pass the name of the service you wish to control to the class instance and go from there. For example, if you want to control the Workstation service try this:

import WService
workstation = WService.WService("Workstation")
workstation.start()
workstation.fetchstatus("running", 10)
workstation.stop()
workstation.fetchstatus("stopped")

Creating an instance of the WService class is done by passing the name of the service as it appears in the Management Console or the short name as itpears in in the registry.

Controlling Windows Services Bookmark

Hyperlink code:
Hyperlink for Forum code:

Controlling Windows Services 1.7 Script Download Notice

Top 4 Download periodically updates information of Controlling Windows Services 1.7 script from the developer, but some information may be slightly out-of-date.

Our script download links are directly from our mirrors or publisher's website. Controlling Windows Services 1.7 torrent files or shared files from free file sharing and free upload services, including Rapidshare, MegaUpload, YouSendIt, MailBigFile, DropSend, HellShare, HotFile, FileServe, MediaMax, zUpload, MyOtherDrive, SendSpace, DepositFiles, Letitbit, LeapFile, DivShare or MediaFire, are not allowed!

Getting SYSTEM environment variable under Windows

... Service or SYSTEM account.As you can see in Windows Control Panel 'System' applet there are two groups of environment variables: USER and SYSTEM. This script presents a function for retrieve SYSTEM variable value.  ...
Python

Win32 service administration

... the win32serviceutil module to simplify starting and stopping services. It also provides a small test example that includes providing arguments for starting a service. ...
Python

Creating a share on windows

... python's win32net module to create a share on windows. ...
Python

Windows registry

... store some data for your progam in the windows registry without many complex operations. ...
Python

Get system language dependent paths on windows

... functions to retrieve the path names of some windows system directories from the registry and the environment. These path names can be different depending on OS version, installation language, current user and personal setup. Because of this, they should not be included statically in your program. ...
Python