Hello,

I want to kill a Process in Windows ME, which I have
started. I have
executed the following lines in XP and it works. I
execute this in ME,
the process starts but it won't be killed. I tried
different function calls.

Win32::Process::Create($ProcessObj,
                       "C:\\Program Files\\Internet
Explorer\\iexplorer.exe",
                       "iexplore temp.txt",
                       0,
                       NORMAL_PRIORITY_CLASS,
                       ".")|| die ErrorReport();

$ProcessObj->Kill(1);

#or

$ProcessObj->Kill(9);

#or 

my $pid = $ProcessObj->GetProcessID();
Win32::Process::KillProcess($pid, 1);

#or
 
kill 1, $pid;

Nothing works. Is there a possibility to kill
processes in Windows ME?

Thanks in advance.

Stefan



        

        
                
___________________________________________________________ 
Gesendet von Yahoo! Mail - Jetzt mit 250MB Speicher kostenlos - Hier anmelden: 
http://mail.yahoo.de
_______________________________________________
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to