Win32 service administration

Win32 service administration 1.1

Win32 service administration 1.1 Download Summary

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

Win32 service administration 1.1 Description

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

Win32 service administration Bookmark

Hyperlink code:
Hyperlink for Forum code:

Win32 service administration 1.1 Script Download Notice

Top 4 Download periodically updates information of Win32 service administration 1.1 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. Win32 service administration 1.1 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!

Treat the Win32 Registry like a Python dict

This class wraps most of the win32api functions for accessing a registry. It will read and write all win32 registry types, and will de/serialize python objects to registry keys when a string or integer representation is not possible. ...
Python

Controlling Windows Services

... a module for manipulating WinNT, Win2k & WinXP services. It contains the WService Class. The WService Class ... used for controlling WinNT, Win2k & WinXP like services. Just pass the name of the service you wish to control to the class instance ... example, if you want to control the Workstation service try this: import WService workstation = WService.WService("Workstation") workstation.start() ...
Python

Converting windows 64 bit time

In Win32 often you'll find time stored in 100-nanosecond intervals since January 1, 1600 UTC. It is stored in a 64-bit value which uses 2 32 bit parts to store the time. The following script is a function that returns the time in the typical format the python time libraries use ...
Python

Getting SYSTEM environment variable under Windows

... get SYSTEM environment value, as if running under 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