Scheduled task question

B

Bill

Is there an interface somewhere that would provide
a scheduled task means of cancelling an application,
e.g., Outlook Express? (or ANY regularly running
applications that could interfere with backup jobs.)

Thanks,
Bill
 
B

Bill

I tried:

cmd taskkill /c msimn.exe
cmd taskkill /c "msimn.exe"
cmd taskkill /c "outlook express"

None of those commands cancelled OE

What am I not getting here?

Bill


Ayush said:
Click Start > Run > cmd
Type taskkill /?

Use taskkill to kill the applications


--
Ayush [ Be ''?'' Happy ]
-------------
Search - www.Google.com | Wikipedia - http://en.wikipedia.org
Snip your long urls - http://snipurl.com/
-------------


Replid to [Bill]s message :
-----------------------------------------------------------
Is there an interface somewhere that would provide
a scheduled task means of cancelling an application,
e.g., Outlook Express? (or ANY regularly running
applications that could interfere with backup jobs.)

Thanks,
Bill
 
S

Shenan Stanley

Bill said:
Is there an interface somewhere that would provide
a scheduled task means of cancelling an application,
e.g., Outlook Express? (or ANY regularly running
applications that could interfere with backup jobs.)
Click Start > Run > cmd
Type taskkill /?

Use taskkill to kill the applications
I tried:

cmd taskkill /c msimn.exe
cmd taskkill /c "msimn.exe"
cmd taskkill /c "outlook express"

None of those commands cancelled OE

What am I not getting here?

You are not reading up on how to use the tool.

Start button --> RUN --> cmd /k taskkill /? --> OK

That will list the switches and examples and such.

For you, this is the command you want:

taskkill /F /T /IM "msimn.exe"

That would kill all branches of the Outlook Express tree - all open windows
spawned from it, etc. Forcing it to close. Based off the name of the
process. Tasklist can be used to get process names (current process names)
in the command line.
 
A

Ayush

Shenan told you how to do it but keep in mind that this can result in data
corruption. specailly in the case of killing Outlook Express when it is
processing the files.

--
Ayush [ Be ''?'' Happy ]
-------------
Search - www.Google.com | Wikipedia - http://en.wikipedia.org
Snip your long urls - http://snipurl.com/
-------------


Replid to [Bill]s message :
-----------------------------------------------------------
I tried:

cmd taskkill /c msimn.exe
cmd taskkill /c "msimn.exe"
cmd taskkill /c "outlook express"

None of those commands cancelled OE

What am I not getting here?

Bill


Ayush said:
Click Start > Run > cmd
Type taskkill /?

Use taskkill to kill the applications


--
Ayush [ Be ''?'' Happy ]
-------------
Search - www.Google.com | Wikipedia - http://en.wikipedia.org
Snip your long urls - http://snipurl.com/
-------------


Replid to [Bill]s message :
-----------------------------------------------------------
Is there an interface somewhere that would provide
a scheduled task means of cancelling an application,
e.g., Outlook Express? (or ANY regularly running
applications that could interfere with backup jobs.)

Thanks,
Bill
 
B

Bill

Yes, I was aware of the exposure and I'll likely not elect
to kill OE for that reason, or any other tasks that might
be "file-active".
Bill

Ayush said:
Shenan told you how to do it but keep in mind that this can result in data
corruption. specailly in the case of killing Outlook Express when it is
processing the files.

--
Ayush [ Be ''?'' Happy ]
-------------
Search - www.Google.com | Wikipedia - http://en.wikipedia.org
Snip your long urls - http://snipurl.com/
-------------


Replid to [Bill]s message :
-----------------------------------------------------------
I tried:

cmd taskkill /c msimn.exe
cmd taskkill /c "msimn.exe"
cmd taskkill /c "outlook express"

None of those commands cancelled OE

What am I not getting here?

Bill


Ayush said:
Click Start > Run > cmd
Type taskkill /?

Use taskkill to kill the applications


--
Ayush [ Be ''?'' Happy ]
-------------
Search - www.Google.com | Wikipedia - http://en.wikipedia.org
Snip your long urls - http://snipurl.com/
-------------


Replid to [Bill]s message :
-----------------------------------------------------------
Is there an interface somewhere that would provide
a scheduled task means of cancelling an application,
e.g., Outlook Express? (or ANY regularly running
applications that could interfere with backup jobs.)

Thanks,
Bill
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top