Re: [python-win32] Task Scheduler on Windows 7 and pythonw.exe problems

2015-09-22 Thread eryksun
On 9/22/15, Tim Roberts wrote: > samilnart . wrote: >> So when i launch my script on command line using pythonw it works fine >> but if task scheduler launches it, it instantly crashes without error >> message. Here is the code: http://pastebin.com/5QfmMrPN . Any help is >> appreciated. > > What u

Re: [python-win32] Task Scheduler on Windows 7 and pythonw.exe problems

2015-09-22 Thread Tim Roberts
samilnart . wrote: > So when i launch my script on command line using pythonw it works fine > but if task scheduler launches it, it instantly crashes without error > message. Here is the code: http://pastebin.com/5QfmMrPN . Any help is > appreciated. What user did you use to create your scheduled

[python-win32] Task Scheduler on Windows 7 and pythonw.exe problems

2015-09-22 Thread samilnart .
So when i launch my script on command line using pythonw it works fine but if task scheduler launches it, it instantly crashes without error message. Here is the code: http://pastebin.com/5QfmMrPN . Any help is appreciated. ___ python-win32 mailing list p

Re: [python-win32] Task Scheduler

2005-07-19 Thread kimwaic888-pythonwin32
Gabriel, If you have an installed copy of PythonWin32 running under XP, you can try the sample app too and see if it works for you. It's in the win32comext\taskscheduler\test directory. Just double-click on test_addtask.py. On my system, the object gets created but it doesn't run unless I do it

Re: [python-win32] Task Scheduler

2005-07-19 Thread Gabriel Genellina
At Friday 15/7/2005 00:44, [EMAIL PROTECTED] wrote: >Thank you, Roger, for pointing that out. I tried the >test sample and it did create the scheduler object as >one would expect. > >However, same as the at.exe attempt I did from CLI, >the object doesn't run when the time came. I manually >reque

Re: [python-win32] Task Scheduler

2005-07-14 Thread kimwaic888-pythonwin32
nt: Thursday, July 14, 2005 1:29 PM > To: python-win32@python.org > Subject: [python-win32] Task Scheduler > > > There's a taskscheduler module in Pywin32 that gives > you access to the Task Scheduler COM interfaces. > The scripts in \win32comext\tasksc

[python-win32] Task Scheduler

2005-07-14 Thread Roger Upole
There's a taskscheduler module in Pywin32 that gives you access to the Task Scheduler COM interfaces. The scripts in \win32comext\taskscheduler\test have some examples of how they're used. Roger ___ Python-win32 mailing list Python-win32@pyth

Re: [python-win32] Task Scheduler

2005-07-14 Thread kimwaic888-pythonwin32
Thanks for the reply. Yes, at.exe is very simple but as I said, after the object gets created, it doesn't run. For example, I issued the CLI command: at "12:30" /interactive "python.exe example.py" where example.py is some sample Python program. Well, 12:30 came and gone and nothing happened.

Re: [python-win32] Task Scheduler

2005-07-14 Thread Konstantin Veretennicov
On 7/14/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hello list, > > I am having trouble working with the Windows XP Task > Scheduler. ... > There is also a at.exe program which is suppose to > have been replaced by the schtasks.exe. It's a lot > simpler then schtasks.exe and doesn't prom

[python-win32] Task Scheduler

2005-07-14 Thread kimwaic888-pythonwin32
Hello list, I am having trouble working with the Windows XP Task Scheduler. I know this might not be exactly a PythonWin32 question because as I searched the web for clue on how I can control the Task Scheduler using PythonWin32, nobody appears to know. The one message I found suggested using th