Frank_Sechrist Posted April 4, 2006 Posted April 4, 2006 msiexec /i WindowsDefender.msi /qbtaskkill /f /im MSASCui.exetaskkill /f /im MsMpEng.exe
diesel_98a Posted April 5, 2006 Posted April 5, 2006 i never had to use the msiexec /i but if it works for ya, so be it..........
jonscaife Posted April 21, 2006 Posted April 21, 2006 (edited) If anyone wants details of what I changed let me know and I'll post. Can't remember off the top o fmy head, but I think I dropped an entry from CustomAction and changed to other values of 1 to 0. They were pretty obviousI would be interested in knowing what you changed.Thanks.OK. I just redid this for the recent release of Windows Defender (build 1.1.1347.0), the things I changed were as follows...Table Editor...CheckBoxLAUNCHSCAN change value to 0CustomActionLAUNCH_MY_PROGRAM_PLEASE drop rowPropertyLAUNCHSCAN change value to 0LAUNCHPROGRAM change value to 0InstallExecuteSequenceCheck_WGA drop rowRegistryOfficeCrashReportingTools.29CB3920.D0DF3458_A845_11D3_8D0A_0050046416B9 drop rowI'm not certain that all of these changes are necesary but it works. The 3 values that are changed to 0 stop windows defender running after installation. the first dropped row is for the same thing. They may not all be necesary. Dropping "check_wga" may not be necesary either, but I assumed that at T-13 windows defender wouldn't recognise WGA even if it was installed. The final dropped row is to prevent a system restore error that would kill the installer.The virtual machine I tried this on worked perfectly, and after install I was able to update Windows Defender to Engine Version: 1.1.1372.0 and Definition Version: 1.14.1404.6, which are the latest as I write thisEither edit the MSI (with orca) or create a transform (mst file). then run with msiexec /i windowsdefender.msi transforms=windowsdefender.mst /qn (if you edited the msi rather than making a mst then miss out the "transforms=windowsdefender.mst" part) Edited April 21, 2006 by jonscaife
Paradox Me Posted May 13, 2006 Posted May 13, 2006 hasn't anyone tried the:windefender.msi /QBtaskkill /F /IM MSASCui.exe.exe or MSASCui.exe -t minibug.exethen install kb915597?i haven't downloaded the kb915597 to try the silent install but the rest works for meAre you doing this through runonceex??? What's your code look like? I'm curious to get this working for me.
krawhitham Posted July 20, 2006 Posted July 20, 2006 (edited) ...and if you have a working Internet connection during your unattended install you can use this AutoIt routine to install, update, scan, and close the app all in one shot:RunWait("msiexec /i " & @ScriptDir & "\Extras\WindowsDefender.msi /qb""")Sleep(1500)WinWait("Windows Defender", "Your computer is running normally")WinClose("Windows Defender")I had to change it a little to work with Beta 2RunWait("msiexec /i WindowsDefender.msi /qb" , @ScriptDir & "\Extras")Sleep(1500)WinWait("Windows Defender (Beta 2)", "Banner Panel")WinClose("Windows Defender (Beta 2)") Edited July 20, 2006 by krawhitham
blinkdt Posted July 20, 2006 Posted July 20, 2006 Cool. I have AutoItSetOption("WinTitleMatchMode", 4) set at the beginning of my script, it's a little more forgiving.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now