0
votes
1answer
9 views

Python Win32API SetFileAttributes For Removables

I'm writing an app to set attributes of pendrivers. I could set all the files and subfolders with "normal" permissions. But when I try setting the root path(like "k:/"), it doesn't work. How can we ...
1
vote
1answer
23 views

python win32api blocking bottle routes

I have a bottle web application. At some point, i want the server to raise a dialog window to ask the server admin for something. This alert, even when started from a Thread is blocking - And i don't ...
0
votes
1answer
62 views

Python Pywin & OneNote COM: OneNote.Application.15 'cannot automate the makepy process'

I'm interacting with OneNote's COM interop using Python on Win32. Here's the most basic code to pull out notebook hierarchy: import win32com.client onObj = ...
0
votes
0answers
47 views

ActiveX in python (3.3) without win32com

I used win32com for controlling an other application with the ActiveX-Interface. But I run in the msvcr90/100.dll hell. On my system (Win7 + normal python install) all works fine, but not on ...
2
votes
0answers
43 views

How to change all permisson of folder in python

i use python to add all allow or all deny permisson of folder: info=win32security.DACL_SECURITY_INFORMATION sd=win32security.GetFileSecurity(str(path),info) acl=sd.GetSecurityDescriptorDacl() ...
2
votes
2answers
58 views

How to open folder with specified items selected on Windows

I want to open a folder with specified items selected on Windows. I looked up the the Windows Shell Reference and found a function fit for this job: SHOpenFolderAndSelectItems. However, I couldn't ...
1
vote
1answer
77 views

How to use winapi SetWinEventHook in python?

I want to get the handle of every new Dialog which pops up from a specific application. I understand I should set a hook with SetWinEventHook which is in user32.dll in windows, but I don't know how to ...
0
votes
0answers
62 views

Is there any way to do Interactive Service in Windows 7 (Python)?

I've been able to create a windows service using Python and following this tutorial: http://ryrobes.com/python/running-python-scripts-as-a-windows-service/ However I tried to implement a script in ...
0
votes
1answer
105 views

How to detect key press when the console window has lost focus

My application sends a mouse click to an area of the screen outside my console window using win32api.mouse_event. This causes my window to lose focus so I can't detect key presses using msvcrt.kbhit. ...
2
votes
2answers
59 views

Send mail with mapi in jython

I am trying to use pywin in a jython application for sending emails w/ attachments with outlook. Pywin needs a win32 enviroment, but since we are in java and the function sys.platform returns ...
1
vote
0answers
35 views

Wait until a mutex is created in Python (win32)

I am using the win32event Python module to interact with a Mutex created in another program (C# based) My code opens a mutex and then waits on it: hWait = ...
0
votes
0answers
61 views

Error when trying to run Excel-Solver from Python over com / pywin32

I am trying to run Excels Solver add-in via pywin32 in python with: import win32com.client from win32com.client import constants as c app = Dispatch("Excel.Application") app.Visible = True ...
0
votes
1answer
62 views

How do you access the pixel array in a Windows Device Context? [duplicate]

I'm working on a small automation tool that takes snapshots of the screen, does some template matching, and then responds accordingly. I've previously used PIL for this, but it's ImageGrab function is ...
0
votes
1answer
70 views

Communication between two different versions of python

I am using python 3.2 to build my windows application in which a DLL has to be created in addition to my application exe. I googled and got py2exe can create a DLL from python script but supports ...
4
votes
2answers
118 views

Windows: how can I move a file with a long path to the recycle bin?

I'm using Python but I think the same problem exists in C#. I'd like to be able to support extended paths (paths with len > 260 which are represented like //?/c:/blah/blah). It looks like the ...
0
votes
0answers
160 views

Python ISimpleAudioVolume / Windows Volume Control

I'm trying to call for the methods of ISimpleAudioVolume which is an audio interface for the Windows volume control with Python, I've tried a lot of things but I just can't figure out how to do it. I ...
0
votes
1answer
188 views

Python win32api SendMesage

trying to clarify win32api for me. And just made a simple example. Get the notepad window, move mouse to position click and write string. But it does not work. What's problem? And will be anybody so ...
1
vote
1answer
183 views

Reading a windows file without preventing another process from writing to it [duplicate]

I have a file that I want to read. The file may at any time be overwritten by another process. I do not want to block that writing. I am prepared to manage corruption to the data that I read, but do ...
0
votes
0answers
73 views

Port python thread/urllib2 script to Windows C (winsock)

I have the following script written in Python: #! /usr/bin/python import urllib, thread, threading, os, argparse, sys, time, socket, urllib2 socket.setdefaulttimeout(10) PCName = ...
1
vote
1answer
98 views

How to find the current System Cache Size on Windows?

Searched high and low but haven't been able to find an API call to retrieve the current size of the (File) System Cache on Windows. GlobalMemoryStatusEx - retrieves the Total, Free, Used, and Swap ...
1
vote
1answer
265 views

Python - Check for keypresses without using 100% cpu

I'm writing a GUI program in Python using Tkinter and I need a way to check if a keypress is happening without using all my cpu. Currently I'm using the threading module to start a thread that will ...
0
votes
1answer
89 views

win32api & pyhook - How to get the user's typing language?

I installed pyHook and successfully attached handlers to keyboard events, but now I need to find out whether the user is typing in English layout or other layouts. I couldn't find this information in ...
1
vote
0answers
139 views

Python keybd_event problems

For a personal project, I want to generate keyboard presses for a N64 emulator. It seems like it recognizes only one keyboard event when I select the Python IDE then switch to the emulator. I want the ...
1
vote
0answers
194 views

How to restore a minimized window from system tray [closed]

I need to restore specific window from system tray in Windows 7 Here is prototype of code, but it is not working, it finds process pid, then Handle, but cat restore window I was training with ...
0
votes
0answers
127 views

How to open Firefox with Python and run an iMacros script?

I've been trying to windows extensions for python to run the iMacros script, however I receive a really weird error that I believe is the same as the error that occurred in this stackoverflow ...
0
votes
1answer
154 views

How to make a file filter by hooking kernel32.dll

I am a newbie to hooking. I am searching for a python program that can hide files or block it by filtering the results by filtering some of them using win API hooking . I have read that there is also ...
3
votes
2answers
144 views

Consistent backups in python

I'm working on a remote backup solution in python. The server part will run on Unix/Linux because it will use hard links for efficient incremental backups. The client part, however, will have to run ...
1
vote
1answer
34 views

Call SHGetStockIconInfo from Python

Background: I'm trying to add some UAC shield icons to a few menu options in my wxPython based Python application. Buttons I've had no problem, as I can just send the BCM_SETSHIELD message to the ...
0
votes
0answers
91 views

Focus an Outlook Window (python)

I've written some Python automation code to create a new mail in Outlook 2010 (the basics work) and I'm just wondering how I force the window that opens to get focus. It sometimes has focus, and other ...
2
votes
0answers
335 views

win32 Python - pythoncom error - ImportError: No module named pywintypes

I am trying to import pythoncom, but it gives me this error: Traceback (most recent call last): File "F:/Documents and Settings/Emery/Desktop/Python 27/Try", line 2, in import pythoncom File ...
0
votes
0answers
114 views

How to perform DCOM operations within a windows service

I have been battling this bug for over two weeks now. I have a simple converting script (convert.py) that converts Microsoft Word documents to pdf. This file runs is successfully on my development ...
7
votes
2answers
1k views

IOError: [Errno 13] Permission denied when trying to open hidden file in “w” mode

I want to replace the contents of a hidden file, so I attempted to open it in w mode so it would be erased/truncated: >>> import os >>> ini_path = '.picasa.ini' >>> ...
0
votes
1answer
190 views

Using Win32 api from python

Following code has been given in the activestate python help file. This code is for recursively deleting a files in folder followed by deleting the folder itself. Please point out the error in it ...
0
votes
0answers
218 views

How to simulate a HOLD keydown event using pywin32?

I am trying to get this piece of python code to work on windows: import win32process, win32con, win32gui, win32api, time HWND = win32gui.GetActiveWindow() win32api.PostMessage(HWND, ...
2
votes
0answers
128 views

Setting the text colour of a RichEdit from a different process

I'm trying to set the background and foreground colour for specific words in a richedit control (class RichEdit20W) from a different process. I have the following C code that I call using python, but ...
1
vote
1answer
499 views

Run a query within MS Access

I am not very familiar with python yet. I have added win32, imported odbc in my code, opened a connection to a database. I would like to run a query stored in the database. When I add the update ...
2
votes
1answer
681 views

ReadProcessMemory with ctypes

im working on a little solitär trainer. I don't know why the function ReadProcessMemory doesn't work. Normally it returns a False or True but in that case nothing. The GetlastError() gives me the ...
17
votes
1answer
879 views

Detecting reflective DLL injection

In the past few years, malware (and some pen-test tools like Metasploit's meterpreter payload) have begun to use reflective DLL injection (PDF) to load a DLL into the memory of a process. The benefit ...
0
votes
1answer
161 views

Windows:What actually happens when Ctrl+C is pressed in windows explorer

I am designing a Copy/Paste Application for Windows os using Python.Now I want to a Register my application with hotkey for "Ctrl+V" So that when any one press "Ctrl+V" Paste is done through my ...
1
vote
0answers
76 views

Python: Is there any way to monitor Drag and Drop events in Windows?

I am designing a software in Python. I want a way to monitor drag and drop (files/folders) events in Windows OS from one Windows explorer to another Windows explorer and get the list of dropped file ...
3
votes
2answers
438 views

Python's win32api only printing to default printer

I'm trying to use win32api to output a PDF document to a particular printer. win32api.ShellExecute(0, "print", filename, '/d:"%s"' % printername, ".", 0) filename is a full pathname to the file, ...
0
votes
0answers
107 views

python win32 extensions and (open-)libreoffice

I am facing an issue with python win32 extensions and open-libreoffice. I installed the extensions (tried it two ways:) Drag and drop all the contents of the site-packages inside the openoffice ...
2
votes
0answers
149 views

python: win32print.AddPrinter: adding a printer to remote computer

I am getting the error pywintypes.error: (1801, 'AddPrinter', 'The printer name is invalid.') My intention is to add a network printer to end user computers... heres my def import win32print def ...
0
votes
1answer
163 views

Python/PyQT check if Aero enabled

As told here Qt: Erase background (Windows Aero Glass), I'm using WA_TranslucentBackground to have a glass background on my QMainWindow: on Windows 7 (Aero enabled) it works well, but on Linux (KDE4) ...
0
votes
1answer
105 views

make windows console cursor invisible with python ctypes modules

I've recently tried using the Console module for python 2.7 on Windows XP, but found that it was poorly documented and would crash on my machine. So, what I'm doing now is essentially writing my own ...
4
votes
1answer
487 views

Using sys.stdin in select.select on Windows [duplicate]

Possible Duplicate: Can select() be used with files in Python under Windows? On UNIX I am able to pass sys.stdin to select.select in Python. I am attempting to do this on Windows, but ...
4
votes
3answers
360 views

How to intergrate Python's GTK with gevent?

Gtk is a GUI toolkit with bindings to Python. Gevent is a Python networking library built on top of libevent (libev on newer versions) and greenlets, allowing the usage of network functions inside ...
0
votes
1answer
271 views

What is wrong with my SendMessage/PostMessage part of code?

I have created simple script which try get equity computed by enter link description here: import time import win32api import win32con from pywinauto import application def getEquity(ps_pid, hand1, ...
0
votes
1answer
88 views

PAMIE: get hwnd of IE window

I'm using PAMIE, and I need the window handle of the IE window corresponding to the PAMIE instance. How would I go about getting it?
1
vote
1answer
478 views

Subclass existing window with Win32

I am currently trying to grab all of the user input to the windows calculator app. It seems the way to do this is to use Win32 to intercept all of the keyboard and mouse inputs that are intended for ...

1 2 3 4 5 7