Como faço para digitalizar um único arquivo com o Windows Defender?

3

A maneira número pela qual as pessoas estão acostumadas a usar scanners de vírus é verificando um único arquivo.

Os vírus do sistema operacional número um são encontrados no Windows.

O antivírus oficial da Microsoft, o Windows Defender, parece não ter o caso de uso mais comum.

Como faço para digitalizar um arquivo com o Windows Defender? É impossível fazer?

Ok, há um recurso "Custom Scan" que é mal implementado, demora uma eternidade para clicar e encontrar meu arquivo. Então isso não é muito útil.

Você pode dizer "bem, basta ativar a proteção em tempo real", mas isso pode funcionar para o caso de uso médio. Mas e se eu tiver um emulador responsável pela execução de um arquivo e, portanto, o arquivo não estiver sendo executado em um processo normal? Ou se eu simplesmente estiver entregando um arquivo para outro computador fora da rede e não puder executá-lo nesta máquina por razões de compatibilidade? Há muitas razões pelas quais essa abordagem não é suficiente.

    
por Jonathan 10.01.2015 / 21:08

1 resposta

4

Você pode adicione o Windows Defender no menu de contexto no Windows 8 , em seguida, você pode facilmente digitalizar um único arquivo ou pasta. Verifique o link é bem explicado com imagens.

Reproduzindo as informações abaixo:

How to Add “Scan with Windows Defender” to the Context Menu in Windows 8

scan-with-windows-defender-from-context-menu

Windows Defender replaces Microsoft Security Essentials in Windows 8, but it does not include the ability to quickly right-click folders and scan them. However, you can add this option yourself with a quick registry hack.

This trick adds a “Scan with Windows Defender” option to the context menu that appears when you right-click a folder. It works similarly to the “Scan with Microsoft Security Essentials” option on previous versions of Windows.

Unfortunately, there is no command that launches Windows Defender in graphical mode and initiates a scan, so we will have to launch Windows Defender in a Command Prompt window.

Add the Context Menu Entry Manually

Press the Windows key to access the Start screen, type regedit at the Start screen, and press Enter to launch the Registry Editor.

launch-registry-editor-on-windows-8

Navigate to the following key:

HKEY_CLASSES_ROOT\Folder\shell

Right-click the shell key in the left pane, point to New, and create a new Key. Name it WindowsDefender.

create-windows-defender-key-in-registry

With the WindowsDefender key selected in the left pane, right-click in the right pane and create a new String value. Name it Icon, then double-click it and enter the following value:

%ProgramFiles%\Windows Defender\EppManifest.dll

Right-click in the right pane again and create another new String value. Name it MUIVerb, then double-click it and enter the following value:

Scan with Windows Defender

scan-with-windows-defender-in-registry

Right-click the WindowsDefender key in the left pane, point to new, and create a new key. Name it Command.

windows-defender-command-subkey

Double-click the (Default) value in the right pane with the Command key selected and give it the following value:

“C:\Program Files\Windows Defender\MpCmdRun.exe” -scan -scantype 3 -SignatureUpdate -file %1

windows-defender-scan-command

When you use the option, you will see the scan happen in a Command Prompt window. You will only be alerted if a problem is found. If the scan is very quick, you will see a Command Prompt window appear and disappear quickly. If a problem is found, the window will alert you instead of closing.

windows-defender-scan-in-command-prompt

    
por 10.01.2015 / 21:17