Automatic Windows Defender Updates with Manual Windows/Microsoft Updates

16

5

I've got Windows/Microsoft Update on my Windows 7 laptop set to notify me when updates are available but not to do anything automatically.

I also have Windows Defender running and it seems to have daily or semi-daily updates for its signature database but it uses Windows Update utility to get and install these updates.

Is there a way to automatically download and install the Windows Defender signature updates but leave the rest of Windows Updates set to manual?

wag2639

Posted 2010-03-08T19:42:37.100

Reputation: 5 568

2this has bothered me for so long. i never took the 2 minutes to google whether or not this was possible. now i know :) – kenwarner – 2010-07-02T22:49:50.770

I personally set up a daily schedule to run a task. Here's how.

– MikeF – 2014-04-15T23:44:12.120

I personally set up a simple daily task via the Task Scheduler. Here's how.

– MikeF – 2014-04-15T23:45:16.423

Answers

10

The answer is yes.

With the Windows Update settings set to "Check for Updates but let me choose whether to download and install them", you may set the Windows Defender settings to check for new definitions before a "Windows Defender Scheduled Scan".

To automatically check for new definitions before Windows Defender scheduled scans (recommended):

  1. Click to open Windows Defender by going to Control Panel > Windows Defender

  2. Click Tools, and then click Options.

  3. Under Automatic scanning, make sure the "Automatically scan my computer (recommended)" check box is selected.

  4. Select the "Check for updated definitions before scanning" check box, and then click Save. If you are prompted for an administrator password or confirmation, type the password or provide confirmation.

Source: Microsoft Support

Mehper C. Palavuzlar

Posted 2010-03-08T19:42:37.100

Reputation: 51 093

Does Windows Defender need to run as a per-user tray application for this to work? I have set this and Windows Update still continues to prompt me for "Definition Updates". – palswim – 2010-11-05T16:53:20.267

2Anyone know if this can be done in Windows 8? The options section have changed. – Lillemanden – 2012-06-11T09:41:28.103

2

@Lillemanden: see http://superuser.com/questions/499545/does-windows-defender-update-if-windows-update-is-set-to-manual#answer-499548 i modified that answer to describe how you update the signatures before doing a scan.

– akira – 2012-11-21T17:25:41.330

5

I couldn't find this option on the version of Windows Defender bundled with Windows 8, but these commands in a .BAT file work for me:

pushd "C:\Program Files\Windows Defender"
MpCmdRun.exe -SignatureUpdate
popd

I then created a scheduled task to run this at 4am every morning.

(The pushd/popd are so I can also run it from the command line on demand.)

UweBaemayr

Posted 2010-03-08T19:42:37.100

Reputation: 161