Skip to content Skip to sidebar Skip to footer
Showing posts with the label Winapi

Change Windows User Password With Python

I am looking for a way to change the windows password throgh a python script. somthing like a win3… Read more Change Windows User Password With Python

Windows 7/vista Process Management - How To Start An External Program After Long Idle Time?

This is a follow-up to that question. Basically, i have a python script which should start another … Read more Windows 7/vista Process Management - How To Start An External Program After Long Idle Time?

Python Win32service - Getting Triggered Startup Information For Service

win32 API QueryServiceConfig2 function supports the SERVICE_CONFIG_TRIGGER_INFO structure to get ev… Read more Python Win32service - Getting Triggered Startup Information For Service

Removing Windows From The Taskbar, Windows 7

I have a little Tkinter application here, as well as a handle to the Tkinter window. What I'm t… Read more Removing Windows From The Taskbar, Windows 7

Python Win32 Can't Read Outlook Email Body's

Im trying to use win32 module for python and get the body of my email message. However whenever I t… Read more Python Win32 Can't Read Outlook Email Body's

Grayscale Hbitmap With Python Ctypes

I have PIL images that I am trying to convert to grayscale HBitmap in ctypes. I have minimal knowle… Read more Grayscale Hbitmap With Python Ctypes

Using Ctypes To Load A Specific Runtime Library (msvcrt80)

We're using ctypes.windll to load a third-party library. This library uses 'MSVCRT80' a… Read more Using Ctypes To Load A Specific Runtime Library (msvcrt80)

Python Ctypes Keyboard Event

I have some Python 2.7 code as follows: import ctypes ctypes.windll.user32.keybd_event(0xA5, 0, 0,… Read more Python Ctypes Keyboard Event