No Microsoft Security Essentials for Windows 8. So, how to access similar Defender features/settings?

6

1

I just installed Windows 8 Pro. One of the first things I went to do is install Microsoft Security Essentials, thinking I still needed add-on security software, but I've learned here that it isn't required for Windows 8. Witness:

Got Windows 8 or Windows RT?

Windows Defender for Windows 8 and Windows RT provides the same level of protection against malware as Microsoft Security Essentials. You can't use Microsoft Security Essentials with Windows 8, but you don't need to — Windows Defender is already included and ready to go. [...]

All well and good.

However, on Windows 7, once you installed Microsoft Security Essentials, you got a tray icon, and from there you could access the features of MSE, such as perform custom scans, turn off real-time protection (temporarily, of course), check for updates, etc. However, Defender on Windows 8 doesn't display a tray icon – and yes, I've already made sure I'm displaying all icons in the notification area.

So, how to access the similar specific features of Windows Defender on Windows 8?

Chris W. Rea

Posted 2012-10-27T17:49:17.300

Reputation: 10 282

Answers

8

1. Opening the Windows Defender GUI

I won't bother repeating all the other answers here about how to access Defender's interface, but will just add that since the main executable is %ProgramFiles%\Windows Defender\MSASCui.exe, you can create shortcuts to the same for easy access (with keyboard shortcuts as well), pin it to the Start screen or Taskbar etc.

2. Tray (Notification Area) icon

  1. Defender-related messages are now displayed by the Action Center tray icon:

    1

    If malware is detected, toast notifications similar to the following are displayed:

    2 3

  2. For a dedicated tray icon, you can try and see whether the Monitor Tool for Windows Defender, created for Windows 7's Defender, works with the Windows 8 version as well:

    4

3. Automation

As already mentioned above, the Defender GUI can be accessed via %ProgramFiles%\Windows Defender\MSASCui.exe. The command-line version of the same can be accessed via %ProgramFiles%\Windows Defender\MpCmdRun.exe.

Command-line options for MSASCui.exe include:

  1. -Settings
  2. -Update
  3. -UpdateAndQuickScan
  4. -QuickScan
  5. -FullScan

Command-line options for MpCmdRun.exe include:

  1. -SignatureUpdate
  2. -Scan [-ScanType value [-File filename]]

    where value can be:

    0 = Default, according to your configuration
    1 = Quick scan
    2 = Full system scan
    3 = Single file custom scan

    and filename (can include full path) must be specified for a custom scan

So where can these be used? You could, for example, add the options you prefer to the Windows Explorer context menu:

5

Detailed registry editing instructions as well as ready-to-use add/remove .REG files can be found here, here and here. As always with anything to do with the registry, be careful and use at your own risk.

You can also cook up custom batch files to run on-demand updates, scans etc. For example, save the following as Scan.bat:

"%ProgramFiles%\Windows Defender\MpCmdRun.exe" -Scan -ScanType 3 -File "%1"
pause

Now go to %Appdata%\Microsoft\Windows\SendTo or shell:SendTo and create a shortcut to the aforementioned batch file. This will enable you to simply right-click files in Windows Explorer and use the Send to menu to scan them.

Yet another nifty thing you can do is use Task Scheduler to add hourly/daily/weekly etc. scheduled tasks for updates, scans and the like. Defender of course gets updated whenever Windows Update does its thing, but if you're paranoid you can add a separate task for hourly updates.

A basic scheduled task for a full system scan should look like the following (note the arguments):

6

Important: After creating a scheduled scan task, open its Properties dialog and on the General tab, make sure the Run with highest privileges check box is checked. This will allow Defender to run with elevated rights and ensure maximum malware removal efficacy.

7

You might also want to select the Run task as soon as possible after a scheduled start is missed option on the Settings tab. This will ensure the least possible delay in scanning after logging in, in case the system is turned off or you are not signed in at the scheduled time.

8

Hope these help improve the experience a bit! I'll add to the list if I think of/come across anything new. Shame they couldn't simply have added the complete MSE UI though to Defender, since that's what it has replaced in Windows 8. Maybe in a future update...

Karan

Posted 2012-10-27T17:49:17.300

Reputation: 51 857

Thanks. Creating a shortcut to MSASCui.exe and pinning it to my task bar gives me back the quick access I desired. – Chris W. Rea – 2012-11-04T19:14:01.553

2

Search for Defender in the Control Panel: Control Panel Defender
with Start + W, or with Start + Q:

Defender Metro Search

There you will find the familiar MSE interface.

Microsoft Active Protection Service There is also a new category Microsoft Active Protection Service (MAPS), that seems to be a parallel of SpyNet.

Louis

Posted 2012-10-27T17:49:17.300

Reputation: 18 859

1

You can hit the start button and start typing "Defender". Open Windows Defender and you are good to go.

Wouter

Posted 2012-10-27T17:49:17.300

Reputation: 284

1

Go to the "Modern UI" and start typing "Defender"

enter image description here

Click on the resulting icon, and "Windows Defender" will open.

enter image description here

You could also pin it to your start menu or taskbar if you wanted.

TheXed

Posted 2012-10-27T17:49:17.300

Reputation: 1 931

1

MS Essential is called Windows Defender in the Windows 8. Press the Win+Q from desktop and type the defender.

enter image description here

enter image description here

avirk

Posted 2012-10-27T17:49:17.300

Reputation: 15 151