How do I install the msi file from a batch file silently?

N

Nocturnal

Is it possible to silently install Windows Defender? What are some other
CLPs for Windows Defender?
 
G

Guest

msiexec /i windowsdefender.msi /quiet /log install.log
installs, but not completely quietly--the UI pops at the end, and a
definition update cycle is initiated.

msiexec /uninstall windowsdefender.msi /quiet /log uninstall.log

works, and is silent.
 
G

Guest

Bill,

couldn't you just use group policy through scripts and install with just the
msi file? i.e. windowsdefender.msi /qn
 
B

Bill Sanderson MVP

Having never done that, I can't speak for what is possible. I've tested the
commands I posted in the local cmd prompt environment, and they work--I
assume they would work in a script as well.

--
 

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