The PyWin32 package is a close wrapper around Microsoft Windows API. It was created and is still maintained by Mark Hammond.
0
votes
0answers
9 views
Is it possible to get the current insertion point (text cursor) of the active window in python?
Not sure if this is even possible - but for a small text utility I'm writing I need to know the x/y coordinates of the insertion point, or the text cursor in the current active window on a MS Windows ...
0
votes
1answer
14 views
win32com error with cx_freeze and pyttsx
Hi guys have a python software that i want to freeze for distribution. The problem is after freezing it with cx_freeze and i run it, it works fine on my development computer (win 7) but when i sent it ...
0
votes
1answer
22 views
Python: CherryPy and Win32 API in multithreading?
In order to add more tools to my Python arsenal, I've started work on a pet project - a personal time management app, Thyme.
Currently, the app consists of two processes: Every 500ms, a separate ...
1
vote
0answers
48 views
How do a find which pywin32 method is bound to a given Microsoft class?
I'm programming with python on Windows 7 using pywin32 for the purpose of manipulating Word and Excel documents. The problem is that the documentation for pywin32 does not clearly tell which method ...
0
votes
1answer
98 views
How do I get started with PyWin32 [closed]
I am looking for good resources to get started with pywin32. I haven’t found much in the way of tutorials, books or blogs that talk about it. I’d like to be able to use python to automate some of my ...
0
votes
0answers
14 views
python win32com FileSystemObject failed on getting huge folder
My test code is:
#!/usr/bin/env python
import win32com.client
def GetFolderSizeQuick(target_folder):
fso = win32com.client.Dispatch("Scripting.FileSystemObject")
fobj = ...
0
votes
2answers
40 views
Reading Table Contet In Header And Footer In MS-Word File Using Python
This is my extended question for the question:
Reading Table Contetnts In MS-Word File Using Python
The solution provided by @YusuMishi is great, but it does not catch the headers in the header and ...
0
votes
1answer
72 views
Getting Battery Capacity Windows with Python
I am looking to figure out both the current Battery Capacity and the Design Capacity.
So far what I could get to work is using the Win32_Battery() class which doesn't give all the information I need ...
1
vote
0answers
14 views
Configure printer-specific settings in Python -Win32
I'm working on a project to automate the task of printing some photos. My printer is an R300 (for now), and there are extra settings such as "quality" where I can specify "Best photo". There is also ...
1
vote
0answers
52 views
how to change file access in windows in python
My program processes a perticular file , if some condition is satisfied , then it has to block the access (READ n WRITE ) to that file , for all user even for the admin.
Later , when another function ...
0
votes
1answer
50 views
Word : Deleting Lines in between a Table and a Heading using Python
I have a scenario in which there is a Heading/Constant Text like "Call Tree:" present all over the Word document and after that there are some lines, and once the line are over, there is a Table. So I ...
1
vote
1answer
44 views
Is there a way to verify user permissions with python's win32security
I know about win32security.LogonUser. What I want to do is check credentials that were entered to know whether or not they match a user on the local windows machine, and password, so that I can grant ...
0
votes
0answers
26 views
Is there a way to verify user permissions with win32security
I know about win32security.LogonUser. What I want to do is check credentials that were entered to know whether or not they match a user on the local windows machine, and password, so that I can grant ...
0
votes
2answers
55 views
PyInstaller cannot find win32 API
I am trying to run pyinstaller, but I keep getting this:
Error: PyInstaller for Python 2.6+ on Windows needs pywin32.
Please install from http://sourceforge.net/projects/pywin32/
I have verified ...
0
votes
0answers
30 views
Windows service written in python will not start (Command line or manual invocation from windows services)
I am trying to write a windows service that envokes a cherrypy script when run. A skeleton of my code looks like this:
import win32service
import win32serviceutil
import win32api
import win32con
...
0
votes
0answers
46 views
Working with SAP200, a VBA capable application in PyWin32
Python Win32 extensions can work with Microsoft Office applications, such as Word and Excel, using the pywin32com.clients.Dispatch() function call. There are other applications that can be similarly ...
0
votes
1answer
105 views
Selecting and deleting a Line Present in a Word Document Using Python / Win32
I'm trying to automate Word(2010) documents (all most 40-50 docs) using python and win32 component. Specifically in that, need to select a part of line and replace it all together with some content. ...
0
votes
1answer
71 views
Python : Win32 : Get the header Information in Word Document
I'm trying to automate Microsoft office word 2010 document using Python with win32 component. Over there I need to read and get the Header information of a WORD document. I had a look at MSDN library ...
0
votes
2answers
69 views
HTML Source to Notepad File
how can i use python to save a source code i got from a site and then save it as a .html or .txt file
for a project im working on
im using something like this to get the code
from PAM30 import PAMIE
...
0
votes
0answers
25 views
How emulate termial iteraction like putty using pySerial
I tried to use pySerial to build a simple terminal to interact COM1 in my PC,
I create 2 threads , one is for READ , the other is for Write
however,
def write_comport():
global ser,cmd, ...
0
votes
0answers
27 views
The method delete() missed after import MSO,MSPPT for MS Powerpoint in Python3
The methode disappeared after import
import win32com.gen_py.MSO as MSO # contains constants refering to Microsoft Office Objects
import win32com.gen_py.MSPPT as MSPPT # contains constants refering ...
0
votes
0answers
57 views
How to call VBA Sub from python
There is Excel file with Public Sub declared inside ThisWorkbook:
Public Sub Build(data)
Me.Sheets(1).Range("A1") = "Hello, world! " & data
End Sub
There is python script that needs to open ...
0
votes
0answers
111 views
Python: win32com.client.getevents(“SAPI.SpSharedRecoContext”) returns None
I have downloaded a piece of code showing how to use Windows Speech API (SAPI 5.1) on Windows 7 using Python 2.7.3 interpreter and have PyWin32 Build 218 installed on my system. Everything works great ...
2
votes
3answers
63 views
How to add line breaks to a Windows notification balloon?
I have a tray bar application that displays notifications. Those are the regular Windows notifications, as a balloon over the application icon.
This is the basic code:
class TrayIconApplication:
...
1
vote
1answer
97 views
tkinter: How to make a system tray application not using winico?
Question Tkinter: How to make a system tray application? and other searching results show that this can be done using winico. But winico doesn't support x64. Since most people use x64 PC(including ...
0
votes
1answer
75 views
Interacting with Excel using pywin32
I have an easy task - iterate over a list of excel files and replace all occurencies of some words with other words.
Can't find out how it could be made using pywin32 library. Namely I can't find ...
1
vote
1answer
68 views
How to catch printer event in python
I want to catch the signal when the printer started to print. That would be fine if you tell me how to get the path of document that will print.
pywin32print looks like useful but i dont know how to ...
1
vote
1answer
86 views
pywin32 and extended mapi: send email with attachments
i am using the following code to send email with Simple MAPI Interface
import win32com.client
olMailItem = 0x0
obj = win32com.client.Dispatch("Outlook.Application")
newMail = ...
1
vote
1answer
73 views
Check in Python if Windows registry key already exists
Got the following code:
aReg = ConnectRegistry(None,HKEY_CURRENT_USER)
aKey = OpenKey(aReg, r"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", 0, KEY_WRITE)
try:
...
1
vote
1answer
115 views
How to compile cefpython to exe
I am using cefpython to create a simple HTML5 based app. I am using Python and pywin32 to draw a simple window and render the frame there.
I want to compile my .py into an .exe but I have no idea how ...
0
votes
0answers
60 views
Getting FileIdInfo through win32file.GetFileInformationByHandleEx - not implemented?
I am trying to retrieve the FileIdInfo with primary interest in nFileIndexLow and nFileIndexHigh to track a particular file on a (FAT/NTFS/ReFs based) system from one point in time to the next.
Using ...
2
votes
1answer
123 views
Reading Custom Document properties in MS Word File using python
How can I get the document properties of a MS-Word 2010 Document using python?
with document properties i mean those who can be added or modified under FILE -> Info-> Properties-> Advanced properties ...
0
votes
0answers
80 views
pywin32 FindWindow function python 2.5 vs 2.7
I'm having problems with differences between the pywin32 module for python 2.5 and the one for python 2.7. The goal is to detect whether a script/window is already open or not. The following code ...
1
vote
1answer
87 views
How can I get number of rows and columns selected by excel COM interface?
I can get area selected by application's .Selection property.
(I'm using python to access excel com interface)
I want to know how many rows and columns user have selected, for instance
input:
...
0
votes
0answers
41 views
Filling a form in IE9 in python with pywin32
the commands I used on IE8 with pywin32 does work with IE8 however after upgrading it to IE9 the commands are not working at all, following is the code that works in IE8 but not in IE9 ;
from ...
0
votes
0answers
103 views
Script to change Network Settings on a Remote Computer
I'm using the WMI module to set the NIC on a remote computer to DHCP with the following code:
import wmi
# Obtain network adaptors configurations
nic_configs = wmi.WMI("ComputerName", ...
0
votes
1answer
68 views
Python Windows Service to Daemon Service
I have written multiple python windows services, and now I need to port them to Linux.
These services are constantly repeating until an endflag is raised signalling the stoppage of work. This is ...
0
votes
1answer
77 views
Python script runs fine for a while then returns MemoryError (python 3.3)
I have a small script which utilizes the Python Imaging Library module for Python3.3 (on Win7, 8 gb of RAM) to take a screenshot of a small (~40x50) pixel area of the screen once each second and ...
0
votes
1answer
59 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
0answers
108 views
Add users/groups on remote machine with different user credentials
I was able to get groups and users info using wmi functions but was unable to create or add users on remote machine
import wmi
c = wmi.WMI(computer='<Ip address>', user='Admin', ...
1
vote
2answers
83 views
creating permissions on shared windows folder with python
I'm using this code in python 3.3 with the pywin32 library to share a folder.
How can I now add pemissions to the folder? The following code sets no permissions to the shared folder. I want to add a ...
0
votes
1answer
141 views
opening a MS Word file in pywin32
I am unable to open a word file using pywin32. I have been trying to find tutorials for pywin32 but none of the code works. The location of the word document is C:\Users\User\Documents\python ...
3
votes
1answer
115 views
os.path.islink on windows with python
On Windows 7 with Python 2.7 how can I detect if a path is a symbolic link?
This does not work os.path.islink(), it says it returns false if false or not supported and the path I'm providing is ...
0
votes
1answer
77 views
pywin32: Get color by using coordinates
I wrote this code to make a mouse click on the x,y position 100,200 and after that I'm pressing the backspace button:
import win32api, win32con
import time
def click(x,y):
...
0
votes
3answers
212 views
press enter via python script
We are trying to create a python script to install an app via windows shell prompt, executing our python script. We have an output prompt from the app.exe indicating
"Press Enter to Continue..."
We ...
1
vote
0answers
69 views
How can I use Python 3.3 to continuously update my MouseSpeed in Windows?
I am developing a python script to drive a prototype I'm developing, and my current stumbling block is attempting to continuously write to the MouseSensitivity register in Windows. I'm using Windows ...
0
votes
0answers
75 views
Python: Copy vector image to the clipboard
I'm trying to use the win32all package to copy a vector image (a plot generated using matplotlib) to the Windows clipboard. It looks like you should do it like this:
s = StringIO.StringIO()
f = ...
0
votes
0answers
54 views
How to Enable Mouseover Text in Eclipse PyDev for PyWin32 Modules
I am using the win32gui module of PyWin32 on Windows 7 64-bit Python 2.7 with the PyDev add-on for Eclipse. Code compiles and runs successfully, and I eliminated the "unresolved import" error by ...
0
votes
1answer
227 views
How to install win32com module in a virtualenv?
I have installed both virtualenv and pywin32 on my Windows 7 64-bit laptop, and each of them seems to work, but not with each other.
More specifically, if a virtualenv is active, then running import ...
1
vote
0answers
53 views
Python active window logger
How may I log the users input in an active window such as 'example_window_name' using python? I can obtain the active window using:
from win32gui import GetWindowText, GetForegroundWindow
print ...

