Windows 10のSmartScreenフィルターは、コンピューターウイルスやフィッシング詐欺などからユーザーを保護する仕組みです。フィッシングサイトなど、ユーザーに被害を及ぼしかねないサイトへのアクセスを検出し、サイトの表示やダウンロードをブロックするなどの機能があります。この機能を有効にすると、アクセスしようとしているWebサイトのURLや、初めて起動するアプリケーションの情報などがすべてマイクロソフトに送信されます。これを快く思わないユーザーも多いでしょう。Windows 10のデフォルトでは有効となっているため、変更のためには設定が必要です。
方法1:w10customによる設定
w10customを起動し、プライバシータブの
- アプリのSmartScreenフィルター機能を無効にする
- Internet ExplorerのSmartScreenフィルター機能を無効にする
- Microsoft EdgeのSmartScreenフィルター機能を無効にする
をオンにすることで、それぞれ無効にできます。なお、簡単設定タブの「おすすめ設定」をクリックすると自動でオン(無効)になります。変更後、OKをクリックしてw10customを終了し、サインインしなおす必要があります。
対応するレジストリ
w10customは以下のレジストリを変更しています。
アプリのSmartScreenフィルター機能を無効にする
Path | HKEY_CURRENT_USERSOFTWAREMicrosoftWindowsCurrentVersionAppHost |
---|---|
Name | EnableWebContentEvaluation |
Type | DWORD |
Value | 0: 無効 1: 有効 |
Internet ExplorerのSmartScreenフィルター機能を無効にする
Path | HKEY_CURRENT_USERSOFTWAREMicrosoftInternet ExplorerPhishingFilter |
---|---|
Name | EnabledV9 |
Type | DWORD |
Value | 0: 無効 1: 有効 |
Microsoft EdgeのSmartScreenフィルター機能を無効にする
Path | HKEY_CURRENT_USERSOFTWAREClassesLocal SettingsSoftwareMicrosoftWindowsCurrentVersionAppContainerStoragemicrosoft.microsoftedge_8wekyb3d8bbweMicrosoftEdgePhishingFilter |
---|---|
Name | EnabledV9 |
Type | DWORD |
Value | 0: 無効 1: 有効 |
方法2:コマンドプロンプトによる設定
コマンドプロンプトを開き、以下のコマンドを実行することで無効にできます。
1 2 3 | reg add "HKCUSOFTWAREMicrosoftWindowsCurrentVersionAppHost" /v EnableWebContentEvaluation /t REG_DWORD /d 0 /f reg add "HKCUSOFTWAREMicrosoftInternet ExplorerPhishingFilter" /v EnabledV9 /t REG_DWORD /d 0 /f reg add "HKCUSOFTWAREClassesLocal SettingsSoftwareMicrosoftWindowsCurrentVersionAppContainerStoragemicrosoft.microsoftedge_8wekyb3d8bbweMicrosoftEdgePhishingFilter" /v EnabledV9 /t REG_DWORD /d 0 /f |
有効に戻すには、以下のコマンドを実行します。
1 2 3 | reg add "HKCUSOFTWAREMicrosoftWindowsCurrentVersionAppHost" /v EnableWebContentEvaluation /t REG_DWORD /d 1 /f reg add "HKCUSOFTWAREMicrosoftInternet ExplorerPhishingFilter" /v EnabledV9 /t REG_DWORD /d 1 /f reg add "HKCUSOFTWAREClassesLocal SettingsSoftwareMicrosoftWindowsCurrentVersionAppContainerStoragemicrosoft.microsoftedge_8wekyb3d8bbweMicrosoftEdgePhishingFilter" /v EnabledV9 /t REG_DWORD /d 1 /f |
設定の反映には、再サインインが必要となります。
方法3:PowerShellコンソールによる設定
PowerShellコンソールを開き、以下のコードを実行することで無効にできます。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | $path = 'HKCU:SOFTWAREMicrosoftWindowsCurrentVersionAppHost' $name = 'EnableWebContentEvaluation' $type = 'DWord' $value = 0 If (-Not (Test-Path $path)) { New-Item -Path $path -Force } Set-ItemProperty -Path $path -Name $name -Type $type -Value $value -Force $path = 'HKCU:SOFTWAREMicrosoftInternet ExplorerPhishingFilter' $name = 'EnabledV9' $type = 'DWord' $value = 0 If (-Not (Test-Path $path)) { New-Item -Path $path -Force } Set-ItemProperty -Path $path -Name $name -Type $type -Value $value -Force $path = 'HKCU:SOFTWAREClassesLocal SettingsSoftwareMicrosoftWindowsCurrentVersionAppContainerStoragemicrosoft.microsoftedge_8wekyb3d8bbweMicrosoftEdgePhishingFilter' $name = 'EnabledV9' $type = 'DWord' $value = 0 If (-Not (Test-Path $path)) { New-Item -Path $path -Force } Set-ItemProperty -Path $path -Name $name -Type $type -Value $value -Force |
有効に戻すには、以下のコードを実行します。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | $path = 'HKCU:SOFTWAREMicrosoftWindowsCurrentVersionAppHost' $name = 'EnableWebContentEvaluation' $type = 'DWord' $value = 1 If (-Not (Test-Path $path)) { New-Item -Path $path -Force } Set-ItemProperty -Path $path -Name $name -Type $type -Value $value -Force $path = 'HKCU:SOFTWAREMicrosoftInternet ExplorerPhishingFilter' $name = 'EnabledV9' $type = 'DWord' $value = 1 If (-Not (Test-Path $path)) { New-Item -Path $path -Force } Set-ItemProperty -Path $path -Name $name -Type $type -Value $value -Force $path = 'HKCU:SOFTWAREClassesLocal SettingsSoftwareMicrosoftWindowsCurrentVersionAppContainerStoragemicrosoft.microsoftedge_8wekyb3d8bbweMicrosoftEdgePhishingFilter' $name = 'EnabledV9' $type = 'DWord' $value = 1 If (-Not (Test-Path $path)) { New-Item -Path $path -Force } Set-ItemProperty -Path $path -Name $name -Type $type -Value $value -Force |
再サインインが必要なのは、他と同様です。
(初出: 2016.04.02)