Can Microsoft Security Essentials be installed remotely to several PCs from one central PC

ms-security-essentials

I would like to rollout MSE over a network, mange it and update it all remotely. I am sick of having to visit each and every client.

Best Answer

Microsoft Security Essentials is not licensed for business use. (Source) That being said it can be used in a home or home office, so installation via the network may still be an option.

You can extract the download using this command:

mssefullinstall-x86fre-en-us-xp.exe /x

Then you can use psexec to silently install the msse.msi. Something similar to below.

psexec \\computername msiexec "\\server\share\Pathtomsse.msi" /s /runwgacheck 

or if you have a text file with all the computers on their own line like:

computer1
computer2
computer3

your command would be

psexec @c:\Computerlist.txt msiexec "\\server\share\Pathtomsse.msi" /s /runwgacheck

Please note I haven't actually tried the silent install, but that should get you on the right track.

If this is for a business you can try out Microsoft Forefront Client Security.

Related Topic