I would like to know how to disable and enable Microsoft Security Essentials from the command line.

This is a common procedure on build machines in order to speed-up the build process.

link|improve this question

39% accept rate
5  
+1 on the fact that you explained why you want to do it. – alex Dec 14 '09 at 14:39
feedback

1 Answer

up vote 9 down vote accepted

To disable from the (elevated) command line:

net stop MsMpSvc

To start from the (elevated) command line:

net start MsMpSvc

However, you may get similar results by simply going in to the configuration and disable scanning on your solutions/build folder

link|improve this answer
feedback

protected by Diago Dec 2 '10 at 16:33

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.