Re: [python-win32] Credential Manager "CredEnumerate"

2014-04-15 Thread alessandro.zanni
Hi, First, thank you Tim for your response. In Windows 7 "CredEnumerate" enumerates the credential manager of the current user (except those having the flag: CRED_TYPE_DOMAIN_PASSWORD). However, in Windows 8 this function doesn't work. The mimikatz tool did it very well (I tried on Win7 and

[python-win32] Global ActiveScripting object not visible

2014-04-15 Thread Łukasz Jakubowski
Hello, I have a problem with a file manager called Directory Opus 11. It supports ActiveScripting languages, but in case of python, its global objects are not visible in global namespace. Python packages (python-3.4.0, pywin32-218.win32-py3.4) seem to be installed correctly (fe. WS

Re: [python-win32] Global ActiveScripting object not visible

2014-04-15 Thread Vernon D. Cole
The message means that no one has defined a meaning for the name "DOpus" to Python. You, as a programmer, must define that name. If you say: >>>DOpus = "Spam and Eggs" then you have defined it as a character string which contains three English words. If you say: >>>from win32com.client import Di

Re: [python-win32] Global ActiveScripting object not visible

2014-04-15 Thread Łukasz Jakubowski
Hi Vernon, Thanks for the answer. The DOpus object is not supposed to be created by a user with Dispatch (as DO11 author has told me) - DO11 has no ProgID to use. The object is brought into script before passing control to it in the same way as fe. WScript in case of .pys, by calling AddNa

Re: [python-win32] Global ActiveScripting object not visible

2014-04-15 Thread Vernon D. Cole
One other thing to check: are Python and DO11 this same 32 or 64 bit-ness? 32 bit programs cannot talk to 64 bit COM, and vice-versa. On Tue, Apr 15, 2014 at 2:49 PM, Łukasz Jakubowski wrote: > Hi Vernon, > > Thanks for the answer. > > The DOpus object is not supposed to be created by a user w

[python-win32] context_menu.py crashing Explorer

2014-04-15 Thread Bob Hood
Hi, everybody. I'm having an issue with the context_menu.py example included with pywin32 (2.18) under Python 2.7.6. I register it by running it ("python context_menu.py --register"), but then, when I right-click on a Python file, my Explorer process terminates. I've tried variations (some enhan

Re: [python-win32] Could not load excelAddin demos

2014-04-15 Thread Mark Hammond
You might like to try using the 32bit builds of python and pywin32. HTH, Mark On 14/04/2014 2:48 AM, Pierre Mallard wrote: Hello, I'm running on Windows8.1 64 bits, Excell 2013, Python 3.4 and pywin32-218.win-amd64-py3.4 That might be a newbee question but I'm running out of idea to fix this

Re: [python-win32] Global ActiveScripting object not visible

2014-04-15 Thread Mark Hammond
You could try registering the python engine for debugging - change to win32comext/axscript/client and run "python pyscript.py --debug" - a message should be printed that the object is registered for debugging. Then, run "python -m win32traceutil" - this will run a python program where debug st