Mark Hammond wrote:
I believe that build 212 had a problem with win32traceutil, introduced
trying to get things working on Vista. Build 213 should have that
fixed, but on Vista it may be necessary to either (a) run win32traceutil
as an admin or (b) ensure IIS has already imported win32traceuti
On 26/02/2009 3:56 AM, Boris Borcic wrote:
Hello,
I just moved a python ISAPI between servers, the code works fine except
that "import win32traceutil" doesn't work any more for the ISAPI.
On the other hand, "import win32traceutil" in a small test program run
either from the pythonwin environmen
Tim Roberts wrote:
> Ben wrote:
>
>>> I have generally been getting better results using winreg than using WMI,
>>> but even Winreg (or config problems on our server) are causing me
>>> problems. For example I'd use this code to find out if a certain
>>>
>>>
>>>
>> I'm beginning to
Ben wrote:
>> I have generally been getting better results using winreg than using WMI,
>> but even Winreg (or config problems on our server) are causing me
>> problems. For example I'd use this code to find out if a certain
>>
>>
>
> I'm beginning to think this is because of 32 vs 64 bit, be
Hello,
I just moved a python ISAPI between servers, the code works fine except that
"import win32traceutil" doesn't work any more for the ISAPI.
On the other hand, "import win32traceutil" in a small test program run either
from the pythonwin environment or with python.exe, works all right : t
> I have generally been getting better results using winreg than using WMI,
> but even Winreg (or config problems on our server) are causing me
> problems. For example I'd use this code to find out if a certain
>
I'm beginning to think this is because of 32 vs 64 bit, because the server
running
Hello
I have generally been getting better results using winreg than using WMI, but
even Winreg (or config problems on our server) are causing me problems. For
example I'd use this code to find out if a certain security update is installed
across all our servers:
def KB958644(OS, servername):
After some investigations, I finally found a solution :
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ServiceGroupOrder:List
In this list you can add your proper group, assign your service to the
group. Windows will start services by group following the order they
appear in "List".
To m
En Wed, 25 Feb 2009 05:40:22 -0200, venu madhav
escribió:
I am writing an application which has to identify the
archived files in a given directory.I've tried using the function
i = win32api.GetFileAttributes (full_path)
to obtain the attributes.But am unable to identify based on