Disable SmartScreen process
- Single actionThis page belongs to a script, containing basic changes to achieve a task.
- Windows onlyThis script improves your privacy on Windows
- Impact: HighSystem Functionality Loss Risk: High
This action improves privacy with high impact when you run the recommended script. - Batch (batchfile)These changes use Windows system commands to update your settings.
- Fully reversible
You can fully restore this action (revert back to the original behavior) using this website.
The restore/revert methods provided here can help you fix issues.
Overview
This script stops the smartscreen.exe
process and prevents it from running.
This process is officially known as Windows Defender SmartScreen 1 2. It manages the SmartScreen functionality 3 4. Disabling SmartScreen enhances privacy by preventing outbound network connections that transmit your data 5. Even when disabled, SmartScreen continues running in the background 3. It also improves system performance by reducing CPU usage 6.
However, disabling the SmartScreen process may compromise your security by removing its protective features. Additionally, if SmartScreen remains partially enabled after the process is disabled, it may impair the functionality of Microsoft Store apps 3 5 7.
Disabling SmartScreen may reduce your protection against phishing and malware.
Technical Details
The executable is located at %SYSTEMROOT%\System32\smartscreen.exe
1 2 4 5.
This script will:
- Terminate the process:
Stops the
smartscreen.exe
process to prevent it from running. - Remove the executable:
Safely deletes the
smartscreen.exe
file from the system to prevent it from restarting.
- Not Advised
This script should only be used by advanced users.
This script is not recommended for daily use as it breaks important functionality.
Consider creating a system restore point before doing any changes.
- Security Trade-off
This action prioritizes privacy over certain security features. It's not recommended and should only be used by advanced users after understanding its implications.
Increased Privacy
Enhanced privacy through reduced data collection and trackingDecreased Security
Some security features will be disabled or limitedThis script can be reversed, this allows you to restore the default system security.
Sources
- smartscreen.exe Windows process - What is it?. www.file.net. (2024).
Original: https://www.file.net/process/smartscreen.exe.html
Archived: https://web.archive.org/web/20240708200821/https://www.file.net/process/smartscreen.exe.html - smartscreen.exe. Windows Defender SmartScreen. STRONTIC. strontic.github.io. (2024).
Original: https://strontic.github.io/xcyclopedia/library/smartscreen.exe-B75FA41284409A6134BF824BEAE59B4E.html
Archived: https://web.archive.org/web/20240708201144/https://strontic.github.io/xcyclopedia/library/smartscreen.exe-B75FA41284409A6134BF824BEAE59B4E.html - CLSID a463fcb9-6b1c-4e0d-a80b-a2ca7999e25d. SmartScreen. STRONTIC. strontic.github.io. (2024).
Original: https://strontic.github.io/xcyclopedia/library/clsid_a463fcb9-6b1c-4e0d-a80b-a2ca7999e25d.html
Archived: https://web.archive.org/web/20240715084553/https://strontic.github.io/xcyclopedia/library/clsid_a463fcb9-6b1c-4e0d-a80b-a2ca7999e25d.html - Block apps from accessing internet by default... - Microsoft Community. answers.microsoft.com. (2024).
Original: https://answers.microsoft.com/en-us/windows/forum/all/block-apps-from-accessing-internet-by-default/44a235ce-c9a5-4612-998b-a4c100da93df
Archived: https://web.archive.org/web/20240708201153/https://answers.microsoft.com/en-us/windows/forum/all/block-apps-from-accessing-internet-by-default/44a235ce-c9a5-4612-998b-a4c100da93df - Windows Defender Smartscreen Using Lots of CPU - Microsoft Community. answers.microsoft.com. (2024).
Original: https://answers.microsoft.com/en-us/windows/forum/all/windows-defender-smartscreen-using-lots-of-cpu/b795d47a-3f92-44b9-bbbc-c4439e932fc3
Archived: https://web.archive.org/web/20240708200833/https://answers.microsoft.com/en-us/windows/forum/all/windows-defender-smartscreen-using-lots-of-cpu/b795d47a-3f92-44b9-bbbc-c4439e932fc3 - Disabling SmartScreen causes the OS to open apps very slowly (Solution) · Issue #412 · undergroundwires/privacy.sexy. github.com. (2024).
Original: https://github.com/undergroundwires/privacy.sexy/issues/412
Archived: https://web.archive.org/web/20240829095739/https://github.com/undergroundwires/privacy.sexy/issues/412 - www.howtogeek.com. (2024).
Original: https://www.howtogeek.com/320711/what-is-smartscreen-and-why-is-it-running-on-my-pc
Archived: https://web.archive.org/web/20240709102724/https://www.howtogeek.com/320711/what-is-smartscreen-and-why-is-it-running-on-my-pc/
Apply Now
Choose one of three ways to apply:
Download script
Download and run the script directly- No app needed
- Offline usage
- Easy-to-apply
- Free
- Open-source
Help
How to apply or restore "Disable SmartScreen process" using script
- ≈ 2 min to complete
- Tools: Web Browser
- Difficulty: Simple
- ≈ 5 instructions
- 1
Download
Download the script file by clicking on thebutton above.
Use button above to restore changes. - 2
Keep the file
If warned by your browser, keep the file. - 3
Open
Open the downloaded file. - 4
Exit
Once it's done, press any key to exit the window. - 5
Restart
Restart your computer for all changes to take effect.
Apply with privacy.sexy
Guided, automated application with safety checks- Recommended for most users
- Includes safety checks
- Free
- Open-source
- Popular
- Offline/Online usage
Help
How to apply or restore "Disable SmartScreen process" using privacy.sexy
- ≈ 3 min to complete
- Tools: privacy.sexy
- Difficulty: Simple
- ≈ 4 instructions
- 2
Choose script
- Search for the script name: Disable SmartScreen process
- Check the script by clicking on the checkbox.
- 3
Run
Click on ▶️ Run button at the bottom of the page.This button only appears on desktop version (recommended). On browser, use 💾 Save button.
- Apply
- Revert
:: Check and terminate the running process "smartscreen.exe"
tasklist /fi "ImageName eq smartscreen.exe" /fo csv 2>NUL | find /i "smartscreen.exe">NUL && (
echo smartscreen.exe is running and will be killed.
taskkill /f /im smartscreen.exe
) || (
echo Skipping, smartscreen.exe is not running.
)
:: Configure termination of "smartscreen.exe" immediately upon its startup
:: Set the registry value: "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\smartscreen.exe!Debugger"
PowerShell -ExecutionPolicy Unrestricted -Command "$registryPath = 'HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\smartscreen.exe'; $data = '%SYSTEMROOT%\System32\taskkill.exe'; reg add 'HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\smartscreen.exe' /v 'Debugger' /t 'REG_SZ' /d "^""$data"^"" /f"
:: Add a rule to prevent the executable "smartscreen.exe" from running via File Explorer
PowerShell -ExecutionPolicy Unrestricted -Command "$executableFilename='smartscreen.exe'; try { $registryPathForDisallowRun='HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\DisallowRun'; $existingBlockEntries = Get-ItemProperty -Path "^""$registryPathForDisallowRun"^"" -ErrorAction Ignore; $nextFreeRuleIndex = 1; if ($existingBlockEntries) { $existingBlockingRuleForExecutable = $existingBlockEntries.PSObject.Properties | Where-Object { $_.Value -eq $executableFilename }; if ($existingBlockingRuleForExecutable) { $existingBlockingRuleIndexForExecutable = $existingBlockingRuleForExecutable.Name; Write-Output "^""Skipping, no action needed: '$executableFilename' is already blocked under rule index `"^""$existingBlockingRuleIndexForExecutable`"^""."^""; exit 0; }; $occupiedRuleIndexes = $existingBlockEntries.PSObject.Properties | Where-Object { $_.Name -Match '^\d+$' } | Select -ExpandProperty Name; if ($occupiedRuleIndexes) { while ($occupiedRuleIndexes -Contains $nextFreeRuleIndex) { $nextFreeRuleIndex += 1; }; }; }; Write-Output "^""Adding block rule for `"^""$executableFilename`"^"" under rule index `"^""$nextFreeRuleIndex`"^""."^""; if (!(Test-Path $registryPathForDisallowRun)) { New-Item -Path "^""$registryPathForDisallowRun"^"" -Force -ErrorAction Stop | Out-Null; }; New-ItemProperty -Path "^""$registryPathForDisallowRun"^"" -Name "^""$nextFreeRuleIndex"^"" -PropertyType String -Value "^""$executableFilename"^"" ` -ErrorAction Stop | Out-Null; Write-Output "^""Successfully blocked `"^""$executableFilename`"^"" with rule index `"^""$nextFreeRuleIndex`"^""."^""; } catch { Write-Error "^""Failed to block `"^""$executableFilename`"^"": $_"^""; Exit 1; }"
:: Activate the DisallowRun policy to block specified programs from running via File Explorer
PowerShell -ExecutionPolicy Unrestricted -Command "try { $fileExplorerDisallowRunRegistryPath = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer'; $currentDisallowRunPolicyValue = Get-ItemProperty -Path "^""$fileExplorerDisallowRunRegistryPath"^"" -Name 'DisallowRun' -ErrorAction Ignore | Select -ExpandProperty DisallowRun; if ([string]::IsNullOrEmpty($currentDisallowRunPolicyValue)) { Write-Output "^""Creating DisallowRun policy at `"^""$fileExplorerDisallowRunRegistryPath`"^""."^""; if (!(Test-Path $fileExplorerDisallowRunRegistryPath)) { New-Item -Path "^""$fileExplorerDisallowRunRegistryPath"^"" -Force -ErrorAction Stop | Out-Null; }; New-ItemProperty -Path "^""$fileExplorerDisallowRunRegistryPath"^"" -Name 'DisallowRun' -Value 1 -PropertyType DWORD -Force -ErrorAction Stop | Out-Null; Write-Output 'Successfully activated DisallowRun policy.'; Exit 0; }; if ($currentDisallowRunPolicyValue -eq 1) { Write-Output 'Skipping, no action needed: DisallowRun policy is already in place.'; Exit 0; }; Write-Output 'Updating DisallowRun policy from unexpected value `"^""$currentDisallowRunPolicyValue`"^"" to `"^""1`"^"".'; Set-ItemProperty -Path "^""$fileExplorerDisallowRunRegistryPath"^"" -Name 'DisallowRun' -Value 1 -Type DWORD -Force -ErrorAction Stop | Out-Null; Write-Output 'Successfully activated DisallowRun policy.'; } catch { Write-Error "^""Failed to activate DisallowRun policy: $_"^""; Exit 1; }"
:: Soft delete files matching pattern: "%SYSTEMROOT%\System32\smartscreen.exe" with additional permissions
PowerShell -ExecutionPolicy Unrestricted -Command "$pathGlobPattern = "^""%SYSTEMROOT%\System32\smartscreen.exe"^""; $expandedPath = [System.Environment]::ExpandEnvironmentVariables($pathGlobPattern); Write-Host "^""Searching for items matching pattern: `"^""$($expandedPath)`"^""."^""; $renamedCount = 0; $skippedCount = 0; $failedCount = 0; Add-Type -TypeDefinition "^""using System;`r`nusing System.Runtime.InteropServices;`r`npublic class Privileges {`r`n [DllImport(`"^""advapi32.dll`"^"", ExactSpelling = true, SetLastError = true)]`r`n internal static extern bool AdjustTokenPrivileges(IntPtr htok, bool disall,`r`n ref TokPriv1Luid newst, int len, IntPtr prev, IntPtr relen);`r`n [DllImport(`"^""advapi32.dll`"^"", ExactSpelling = true, SetLastError = true)]`r`n internal static extern bool OpenProcessToken(IntPtr h, int acc, ref IntPtr phtok);`r`n [DllImport(`"^""advapi32.dll`"^"", SetLastError = true)]`r`n internal static extern bool LookupPrivilegeValue(string host, string name, ref long pluid);`r`n [StructLayout(LayoutKind.Sequential, Pack = 1)]`r`n internal struct TokPriv1Luid {`r`n public int Count;`r`n public long Luid;`r`n public int Attr;`r`n }`r`n internal const int SE_PRIVILEGE_ENABLED = 0x00000002;`r`n internal const int TOKEN_QUERY = 0x00000008;`r`n internal const int TOKEN_ADJUST_PRIVILEGES = 0x00000020;`r`n public static bool AddPrivilege(string privilege) {`r`n try {`r`n bool retVal;`r`n TokPriv1Luid tp;`r`n IntPtr hproc = GetCurrentProcess();`r`n IntPtr htok = IntPtr.Zero;`r`n retVal = OpenProcessToken(hproc, TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, ref htok);`r`n tp.Count = 1;`r`n tp.Luid = 0;`r`n tp.Attr = SE_PRIVILEGE_ENABLED;`r`n retVal = LookupPrivilegeValue(null, privilege, ref tp.Luid);`r`n retVal = AdjustTokenPrivileges(htok, false, ref tp, 0, IntPtr.Zero, IntPtr.Zero);`r`n return retVal;`r`n } catch (Exception ex) {`r`n throw new Exception(`"^""Failed to adjust token privileges`"^"", ex);`r`n }`r`n }`r`n public static bool RemovePrivilege(string privilege) {`r`n try {`r`n bool retVal;`r`n TokPriv1Luid tp;`r`n IntPtr hproc = GetCurrentProcess();`r`n IntPtr htok = IntPtr.Zero;`r`n retVal = OpenProcessToken(hproc, TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, ref htok);`r`n tp.Count = 1;`r`n tp.Luid = 0;`r`n tp.Attr = 0; // This line is changed to revoke the privilege`r`n retVal = LookupPrivilegeValue(null, privilege, ref tp.Luid);`r`n retVal = AdjustTokenPrivileges(htok, false, ref tp, 0, IntPtr.Zero, IntPtr.Zero);`r`n return retVal;`r`n } catch (Exception ex) {`r`n throw new Exception(`"^""Failed to adjust token privileges`"^"", ex);`r`n }`r`n }`r`n [DllImport(`"^""kernel32.dll`"^"", CharSet = CharSet.Auto)]`r`n public static extern IntPtr GetCurrentProcess();`r`n}"^""; [Privileges]::AddPrivilege('SeRestorePrivilege') | Out-Null; [Privileges]::AddPrivilege('SeTakeOwnershipPrivilege') | Out-Null; $adminSid = New-Object System.Security.Principal.SecurityIdentifier 'S-1-5-32-544'; $adminAccount = $adminSid.Translate([System.Security.Principal.NTAccount]); $adminFullControlAccessRule = New-Object System.Security.AccessControl.FileSystemAccessRule( $adminAccount, [System.Security.AccessControl.FileSystemRights]::FullControl, [System.Security.AccessControl.AccessControlType]::Allow ); $foundAbsolutePaths = @(); try { $foundAbsolutePaths += @(; Get-Item -Path $expandedPath -ErrorAction Stop | Select-Object -ExpandProperty FullName; ); } catch [System.Management.Automation.ItemNotFoundException] { <# Swallow, do not run `Test-Path` before, it's unreliable for globs requiring extra permissions #>; }; $foundAbsolutePaths = $foundAbsolutePaths | Select-Object -Unique | Sort-Object -Property { $_.Length } -Descending; if (!$foundAbsolutePaths) { Write-Host 'Skipping, no items available.'; exit 0; }; Write-Host "^""Initiating processing of $($foundAbsolutePaths.Count) items from `"^""$expandedPath`"^""."^""; foreach ($path in $foundAbsolutePaths) { if (Test-Path -Path $path -PathType Container) { Write-Host "^""Skipping folder (not its contents): `"^""$path`"^""."^""; $skippedCount++; continue; }; if($revert -eq $true) { if (-not $path.EndsWith('.OLD')) { Write-Host "^""Skipping non-backup file: `"^""$path`"^""."^""; $skippedCount++; continue; }; } else { if ($path.EndsWith('.OLD')) { Write-Host "^""Skipping backup file: `"^""$path`"^""."^""; $skippedCount++; continue; }; }; $originalFilePath = $path; Write-Host "^""Processing file: `"^""$originalFilePath`"^""."^""; if (-Not (Test-Path $originalFilePath)) { Write-Host "^""Skipping, file `"^""$originalFilePath`"^"" not found."^""; $skippedCount++; exit 0; }; $originalAcl = Get-Acl -Path "^""$originalFilePath"^""; $accessGranted = $false; try { $acl = Get-Acl -Path "^""$originalFilePath"^""; $acl.SetOwner($adminAccount) <# Take Ownership (because file is owned by TrustedInstaller) #>; $acl.AddAccessRule($adminFullControlAccessRule) <# Grant rights to be able to move the file #>; Set-Acl -Path $originalFilePath -AclObject $acl -ErrorAction Stop; $accessGranted = $true; } catch { Write-Warning "^""Failed to grant access to `"^""$originalFilePath`"^"": $($_.Exception.Message)"^""; }; if ($revert -eq $true) { $newFilePath = $originalFilePath.Substring(0, $originalFilePath.Length - 4); } else { $newFilePath = "^""$($originalFilePath).OLD"^""; }; try { Move-Item -LiteralPath "^""$($originalFilePath)"^"" -Destination "^""$newFilePath"^"" -Force -ErrorAction Stop; Write-Host "^""Successfully processed `"^""$originalFilePath`"^""."^""; $renamedCount++; if ($accessGranted) { try { Set-Acl -Path $newFilePath -AclObject $originalAcl -ErrorAction Stop; } catch { Write-Warning "^""Failed to restore access on `"^""$newFilePath`"^"": $($_.Exception.Message)"^""; }; }; } catch { Write-Error "^""Failed to rename `"^""$originalFilePath`"^"" to `"^""$newFilePath`"^"": $($_.Exception.Message)"^""; $failedCount++; if ($accessGranted) { try { Set-Acl -Path $originalFilePath -AclObject $originalAcl -ErrorAction Stop; } catch { Write-Warning "^""Failed to restore access on `"^""$originalFilePath`"^"": $($_.Exception.Message)"^""; }; }; }; }; if (($renamedCount -gt 0) -or ($skippedCount -gt 0)) { Write-Host "^""Successfully processed $renamedCount items and skipped $skippedCount items."^""; }; if ($failedCount -gt 0) { Write-Warning "^""Failed to process $($failedCount) items."^""; }; [Privileges]::RemovePrivilege('SeRestorePrivilege') | Out-Null; [Privileges]::RemovePrivilege('SeTakeOwnershipPrivilege') | Out-Null"
Ijo6IFJlbW92ZSBjb25maWd1cmF0aW9uIHByZXZlbnRpbmcgXCJzbWFydHNjcmVlbi5leGVcIiBmcm9tIHN0YXJ0aW5nXG46OiBEZWxldGUgdGhlIHJlZ2lzdHJ5IHZhbHVlIFwiSEtMTVxcU09GVFdBUkVcXE1pY3Jvc29mdFxcV2luZG93cyBOVFxcQ3VycmVudFZlcnNpb25cXEltYWdlIEZpbGUgRXhlY3V0aW9uIE9wdGlvbnNcXHNtYXJ0c2NyZWVuLmV4ZSFEZWJ1Z2dlclwiXG5Qb3dlclNoZWxsIC1FeGVjdXRpb25Qb2xpY3kgVW5yZXN0cmljdGVkIC1Db21tYW5kIFwicmVnIGRlbGV0ZSAnSEtMTVxcU09GVFdBUkVcXE1pY3Jvc29mdFxcV2luZG93cyBOVFxcQ3VycmVudFZlcnNpb25cXEltYWdlIEZpbGUgRXhlY3V0aW9uIE9wdGlvbnNcXHNtYXJ0c2NyZWVuLmV4ZScgL3YgJ0RlYnVnZ2VyJyAvZiAyPiRudWxsXCJcbjo6IFJlbW92ZSB0aGUgcnVsZSB0aGF0IHByZXZlbnRzIHRoZSBleGVjdXRhYmxlIFwic21hcnRzY3JlZW4uZXhlXCIgZnJvbSBydW5uaW5nIHZpYSBGaWxlIEV4cGxvcmVyXG5Qb3dlclNoZWxsIC1FeGVjdXRpb25Qb2xpY3kgVW5yZXN0cmljdGVkIC1Db21tYW5kIFwiJGV4ZWN1dGFibGVGaWxlbmFtZT0nc21hcnRzY3JlZW4uZXhlJzsgdHJ5IHsgJGJsb2NrRW50cmllcyA9IEdldC1JdGVtUHJvcGVydHkgLVBhdGggJ0hLQ1U6XFxTb2Z0d2FyZVxcTWljcm9zb2Z0XFxXaW5kb3dzXFxDdXJyZW50VmVyc2lvblxcUG9saWNpZXNcXEV4cGxvcmVyXFxEaXNhbGxvd1J1bicgLUVycm9yQWN0aW9uIElnbm9yZTsgaWYgKC1Ob3QgJGJsb2NrRW50cmllcykgeyBXcml0ZS1PdXRwdXQgXCJeXCJcIlNraXBwaW5nLCBubyBhY3Rpb24gbmVlZGVkOiBObyBibG9jayBydWxlcyBleGlzdCwgYFwiXlwiXCIkZXhlY3V0YWJsZUZpbGVuYW1lYFwiXlwiXCIgaXMgbm90IGJsb2NrZWQuXCJeXCJcIjsgZXhpdCAwOyB9OyAkYmxvY2tpbmdSdWxlc0ZvckV4ZWN1dGFibGUgPSBAKDsgJGJsb2NrRW50cmllcy5QU09iamVjdC5Qcm9wZXJ0aWVzIHwgV2hlcmUtT2JqZWN0IHsgJF8uVmFsdWUgLWVxICRleGVjdXRhYmxlRmlsZW5hbWUgfTsgKTsgaWYgKC1Ob3QgJGJsb2NraW5nUnVsZXNGb3JFeGVjdXRhYmxlKSB7IFdyaXRlLU91dHB1dCBcIl5cIlwiU2tpcHBpbmcsIG5vIGFjdGlvbiBuZWVkZWQ6IGBcIl5cIlwiJGV4ZWN1dGFibGVGaWxlbmFtZWBcIl5cIlwiIGlzIG5vdCBjdXJyZW50bHkgYmxvY2tlZC5cIl5cIlwiOyBleGl0IDA7IH07IGZvcmVhY2ggKCRibG9ja2luZ1J1bGVGb3JFeGVjdXRhYmxlIGluICRibG9ja2luZ1J1bGVzRm9yRXhlY3V0YWJsZSkgeyAkYmxvY2tpbmdSdWxlSW5kZXhGb3JFeGVjdXRhYmxlID0gJGJsb2NraW5nUnVsZUZvckV4ZWN1dGFibGUuTmFtZTsgV3JpdGUtT3V0cHV0IFwiXlwiXCJSZW1vdmluZyBydWxlIGBcIl5cIlwiJGJsb2NraW5nUnVsZUluZGV4Rm9yRXhlY3V0YWJsZWBcIl5cIlwiIHRoYXQgYmxvY2tzIGBcIl5cIlwiJGV4ZWN1dGFibGVGaWxlbmFtZWBcIl5cIlwiLlwiXlwiXCI7IFJlbW92ZS1JdGVtUHJvcGVydHkgLVBhdGggJ0hLQ1U6XFxTb2Z0d2FyZVxcTWljcm9zb2Z0XFxXaW5kb3dzXFxDdXJyZW50VmVyc2lvblxcUG9saWNpZXNcXEV4cGxvcmVyXFxEaXNhbGxvd1J1bicgLU5hbWUgXCJeXCJcIiRibG9ja2luZ1J1bGVJbmRleEZvckV4ZWN1dGFibGVcIl5cIlwiIC1Gb3JjZSAtRXJyb3JBY3Rpb24gU3RvcDsgV3JpdGUtT3V0cHV0IFwiXlwiXCJTdWNjZXNzZnVsbHkgcmV2b2tlZCBibG9ja2luZyBvZiBgJGV4ZWN1dGFibGVGaWxlbmFtZWAgdW5kZXIgcnVsZSBgXCJeXCJcIiRibG9ja2luZ1J1bGVJbmRleEZvckV4ZWN1dGFibGVgXCJeXCJcIi5cIl5cIlwiOyB9OyB9IGNhdGNoIHsgV3JpdGUtRXJyb3IgXCJeXCJcIkZhaWxlZCB0byByZXZva2UgYmxvY2tpbmcgb2YgYFwiXlwiXCIkZXhlY3V0YWJsZUZpbGVuYW1lYFwiXlwiXCI6ICRfXCJeXCJcIjsgRXhpdCAxOyB9XCJcbjo6IFJlc3RvcmUgdGhlIEZpbGUgRXhwbG9yZXIgRGlzYWxsb3dSdW4gcG9saWN5IGlmIG5vIG90aGVyIGJsb2NrcyBhcmUgYWN0aXZlXG5Qb3dlclNoZWxsIC1FeGVjdXRpb25Qb2xpY3kgVW5yZXN0cmljdGVkIC1Db21tYW5kIFwidHJ5IHsgJGN1cnJlbnREaXNhbGxvd1J1blBvbGljeVZhbHVlID0gR2V0LUl0ZW1Qcm9wZXJ0eSAtUGF0aCAnSEtDVTpcXFNvZnR3YXJlXFxNaWNyb3NvZnRcXFdpbmRvd3NcXEN1cnJlbnRWZXJzaW9uXFxQb2xpY2llc1xcRXhwbG9yZXInIC1OYW1lICdEaXNhbGxvd1J1bicgLUVycm9yQWN0aW9uIElnbm9yZSB8IFNlbGVjdC1PYmplY3QgLUV4cGFuZFByb3BlcnR5ICdEaXNhbGxvd1J1bic7IGlmIChbc3RyaW5nXTo6SXNOdWxsT3JFbXB0eSgkY3VycmVudERpc2FsbG93UnVuUG9saWN5VmFsdWUpKSB7IFdyaXRlLU91dHB1dCAnU2tpcHBpbmcsIG5vIGFjdGlvbiBuZWVkZWQ6IERpc2FsbG93UnVuIHBvbGljeSBpcyBub3QgYWN0aXZlLic7IEV4aXQgMDsgfTsgaWYgKCRjdXJyZW50RGlzYWxsb3dSdW5Qb2xpY3lWYWx1ZSAtbmUgMSkgeyBXcml0ZS1PdXRwdXQgXCJeXCJcIlNraXBwaW5nLCBEaXNhbGxvd1J1biBwb2xpY3kgaXMgbm90IGNvbmZpZ3VyZWQgYnkgcHJpdmFjeS5zZXh5LCB1bmV4cGVjdGVkIHZhbHVlOiBgXCJeXCJcIiRjdXJyZW50RGlzYWxsb3dSdW5Qb2xpY3lWYWx1ZWBcIl5cIlwiLlwiXlwiXCI7IEV4aXQgMDsgfTsgJHJlbWFpbmluZ0Jsb2NraW5nUnVsZXMgPSBHZXQtSXRlbVByb3BlcnR5IC1QYXRoICdIS0NVOlxcU29mdHdhcmVcXE1pY3Jvc29mdFxcV2luZG93c1xcQ3VycmVudFZlcnNpb25cXFBvbGljaWVzXFxFeHBsb3JlclxcRGlzYWxsb3dSdW4nIC1FcnJvckFjdGlvbiBJZ25vcmU7IGlmICgkcmVtYWluaW5nQmxvY2tpbmdSdWxlcykgeyBXcml0ZS1PdXRwdXQgJ1NraXBwaW5nIGRlYWN0aXZhdGluZyBEaXNhbGxvd1J1biBwb2xpY3ksIHRoZXJlIGFyZSBzdGlsbCBhY3RpdmUgcnVsZXMuJzsgRXhpdCAwOyB9OyBXcml0ZS1PdXRwdXQgJ05vIHJlbWFpbmluZyBydWxlcywgZGVsZXRpbmcgRGlzYWxsb3dSdW4gcG9saWN5Lic7IFJlbW92ZS1JdGVtUHJvcGVydHkgLVBhdGggJ0hLQ1U6XFxTb2Z0d2FyZVxcTWljcm9zb2Z0XFxXaW5kb3dzXFxDdXJyZW50VmVyc2lvblxcUG9saWNpZXNcXEV4cGxvcmVyJyAtTmFtZSAnRGlzYWxsb3dSdW4nIC1Gb3JjZSAtRXJyb3JBY3Rpb24gU3RvcDsgV3JpdGUtT3V0cHV0ICdTdWNjZXNzZnVsbHkgcmVzdG9yZWQgRGlzYWxsb3dSdW4gcG9saWN5Lic7IH0gY2F0Y2ggeyBXcml0ZS1FcnJvciBcIl5cIlwiRmFpbGVkIHRvIHJlc3RvcmUgRGlzYWxsb3dSdW4gcG9saWN5OiAkX1wiXlwiXCI7IEV4aXQgMTsgfVwiXG46OiBSZXN0b3JlIGZpbGVzIG1hdGNoaW5nIHBhdHRlcm46IFwiJVNZU1RFTVJPT1QlXFxTeXN0ZW0zMlxcc21hcnRzY3JlZW4uZXhlXCIgd2l0aCBhZGRpdGlvbmFsIHBlcm1pc3Npb25zIFxuUG93ZXJTaGVsbCAtRXhlY3V0aW9uUG9saWN5IFVucmVzdHJpY3RlZCAtQ29tbWFuZCBcIiRyZXZlcnQgPSAkdHJ1ZTsgJHBhdGhHbG9iUGF0dGVybiA9IFwiXlwiXCIlU1lTVEVNUk9PVCVcXFN5c3RlbTMyXFxzbWFydHNjcmVlbi5leGUuT0xEXCJeXCJcIjsgJGV4cGFuZGVkUGF0aCA9IFtTeXN0ZW0uRW52aXJvbm1lbnRdOjpFeHBhbmRFbnZpcm9ubWVudFZhcmlhYmxlcygkcGF0aEdsb2JQYXR0ZXJuKTsgV3JpdGUtSG9zdCBcIl5cIlwiU2VhcmNoaW5nIGZvciBpdGVtcyBtYXRjaGluZyBwYXR0ZXJuOiBgXCJeXCJcIiQoJGV4cGFuZGVkUGF0aClgXCJeXCJcIi5cIl5cIlwiOyAkcmVuYW1lZENvdW50ICAgPSAwOyAkc2tpcHBlZENvdW50ICAgPSAwOyAkZmFpbGVkQ291bnQgICAgPSAwOyBBZGQtVHlwZSAtVHlwZURlZmluaXRpb24gXCJeXCJcInVzaW5nIFN5c3RlbTtgcmBudXNpbmcgU3lzdGVtLlJ1bnRpbWUuSW50ZXJvcFNlcnZpY2VzO2ByYG5wdWJsaWMgY2xhc3MgUHJpdmlsZWdlcyB7YHJgbiAgICBbRGxsSW1wb3J0KGBcIl5cIlwiYWR2YXBpMzIuZGxsYFwiXlwiXCIsIEV4YWN0U3BlbGxpbmcgPSB0cnVlLCBTZXRMYXN0RXJyb3IgPSB0cnVlKV1gcmBuICAgIGludGVybmFsIHN0YXRpYyBleHRlcm4gYm9vbCBBZGp1c3RUb2tlblByaXZpbGVnZXMoSW50UHRyIGh0b2ssIGJvb2wgZGlzYWxsLGByYG4gICAgICAgIHJlZiBUb2tQcml2MUx1aWQgbmV3c3QsIGludCBsZW4sIEludFB0ciBwcmV2LCBJbnRQdHIgcmVsZW4pO2ByYG4gICAgW0RsbEltcG9ydChgXCJeXCJcImFkdmFwaTMyLmRsbGBcIl5cIlwiLCBFeGFjdFNwZWxsaW5nID0gdHJ1ZSwgU2V0TGFzdEVycm9yID0gdHJ1ZSldYHJgbiAgICBpbnRlcm5hbCBzdGF0aWMgZXh0ZXJuIGJvb2wgT3BlblByb2Nlc3NUb2tlbihJbnRQdHIgaCwgaW50IGFjYywgcmVmIEludFB0ciBwaHRvayk7YHJgbiAgICBbRGxsSW1wb3J0KGBcIl5cIlwiYWR2YXBpMzIuZGxsYFwiXlwiXCIsIFNldExhc3RFcnJvciA9IHRydWUpXWByYG4gICAgaW50ZXJuYWwgc3RhdGljIGV4dGVybiBib29sIExvb2t1cFByaXZpbGVnZVZhbHVlKHN0cmluZyBob3N0LCBzdHJpbmcgbmFtZSwgcmVmIGxvbmcgcGx1aWQpO2ByYG4gICAgW1N0cnVjdExheW91dChMYXlvdXRLaW5kLlNlcXVlbnRpYWwsIFBhY2sgPSAxKV1gcmBuICAgIGludGVybmFsIHN0cnVjdCBUb2tQcml2MUx1aWQge2ByYG4gICAgICAgIHB1YmxpYyBpbnQgQ291bnQ7YHJgbiAgICAgICAgcHVibGljIGxvbmcgTHVpZDtgcmBuICAgICAgICBwdWJsaWMgaW50IEF0dHI7YHJgbiAgICB9YHJgbiAgICBpbnRlcm5hbCBjb25zdCBpbnQgU0VfUFJJVklMRUdFX0VOQUJMRUQgPSAweDAwMDAwMDAyO2ByYG4gICAgaW50ZXJuYWwgY29uc3QgaW50IFRPS0VOX1FVRVJZID0gMHgwMDAwMDAwODtgcmBuICAgIGludGVybmFsIGNvbnN0IGludCBUT0tFTl9BREpVU1RfUFJJVklMRUdFUyA9IDB4MDAwMDAwMjA7YHJgbiAgICBwdWJsaWMgc3RhdGljIGJvb2wgQWRkUHJpdmlsZWdlKHN0cmluZyBwcml2aWxlZ2UpIHtgcmBuICAgICAgICB0cnkge2ByYG4gICAgICAgICAgICBib29sIHJldFZhbDtgcmBuICAgICAgICAgICAgVG9rUHJpdjFMdWlkIHRwO2ByYG4gICAgICAgICAgICBJbnRQdHIgaHByb2MgPSBHZXRDdXJyZW50UHJvY2VzcygpO2ByYG4gICAgICAgICAgICBJbnRQdHIgaHRvayA9IEludFB0ci5aZXJvO2ByYG4gICAgICAgICAgICByZXRWYWwgPSBPcGVuUHJvY2Vzc1Rva2VuKGhwcm9jLCBUT0tFTl9BREpVU1RfUFJJVklMRUdFUyB8IFRPS0VOX1FVRVJZLCByZWYgaHRvayk7YHJgbiAgICAgICAgICAgIHRwLkNvdW50ID0gMTtgcmBuICAgICAgICAgICAgdHAuTHVpZCA9IDA7YHJgbiAgICAgICAgICAgIHRwLkF0dHIgPSBTRV9QUklWSUxFR0VfRU5BQkxFRDtgcmBuICAgICAgICAgICAgcmV0VmFsID0gTG9va3VwUHJpdmlsZWdlVmFsdWUobnVsbCwgcHJpdmlsZWdlLCByZWYgdHAuTHVpZCk7YHJgbiAgICAgICAgICAgIHJldFZhbCA9IEFkanVzdFRva2VuUHJpdmlsZWdlcyhodG9rLCBmYWxzZSwgcmVmIHRwLCAwLCBJbnRQdHIuWmVybywgSW50UHRyLlplcm8pO2ByYG4gICAgICAgICAgICByZXR1cm4gcmV0VmFsO2ByYG4gICAgICAgIH0gY2F0Y2ggKEV4Y2VwdGlvbiBleCkge2ByYG4gICAgICAgICAgICB0aHJvdyBuZXcgRXhjZXB0aW9uKGBcIl5cIlwiRmFpbGVkIHRvIGFkanVzdCB0b2tlbiBwcml2aWxlZ2VzYFwiXlwiXCIsIGV4KTtgcmBuICAgICAgICB9YHJgbiAgICB9YHJgbiAgICBwdWJsaWMgc3RhdGljIGJvb2wgUmVtb3ZlUHJpdmlsZWdlKHN0cmluZyBwcml2aWxlZ2UpIHtgcmBuICAgICAgICB0cnkge2ByYG4gICAgICAgICAgICBib29sIHJldFZhbDtgcmBuICAgICAgICAgICAgVG9rUHJpdjFMdWlkIHRwO2ByYG4gICAgICAgICAgICBJbnRQdHIgaHByb2MgPSBHZXRDdXJyZW50UHJvY2VzcygpO2ByYG4gICAgICAgICAgICBJbnRQdHIgaHRvayA9IEludFB0ci5aZXJvO2ByYG4gICAgICAgICAgICByZXRWYWwgPSBPcGVuUHJvY2Vzc1Rva2VuKGhwcm9jLCBUT0tFTl9BREpVU1RfUFJJVklMRUdFUyB8IFRPS0VOX1FVRVJZLCByZWYgaHRvayk7YHJgbiAgICAgICAgICAgIHRwLkNvdW50ID0gMTtgcmBuICAgICAgICAgICAgdHAuTHVpZCA9IDA7YHJgbiAgICAgICAgICAgIHRwLkF0dHIgPSAwOyAgLy8gVGhpcyBsaW5lIGlzIGNoYW5nZWQgdG8gcmV2b2tlIHRoZSBwcml2aWxlZ2VgcmBuICAgICAgICAgICAgcmV0VmFsID0gTG9va3VwUHJpdmlsZWdlVmFsdWUobnVsbCwgcHJpdmlsZWdlLCByZWYgdHAuTHVpZCk7YHJgbiAgICAgICAgICAgIHJldFZhbCA9IEFkanVzdFRva2VuUHJpdmlsZWdlcyhodG9rLCBmYWxzZSwgcmVmIHRwLCAwLCBJbnRQdHIuWmVybywgSW50UHRyLlplcm8pO2ByYG4gICAgICAgICAgICByZXR1cm4gcmV0VmFsO2ByYG4gICAgICAgIH0gY2F0Y2ggKEV4Y2VwdGlvbiBleCkge2ByYG4gICAgICAgICAgICB0aHJvdyBuZXcgRXhjZXB0aW9uKGBcIl5cIlwiRmFpbGVkIHRvIGFkanVzdCB0b2tlbiBwcml2aWxlZ2VzYFwiXlwiXCIsIGV4KTtgcmBuICAgICAgICB9YHJgbiAgICB9YHJgbiAgICBbRGxsSW1wb3J0KGBcIl5cIlwia2VybmVsMzIuZGxsYFwiXlwiXCIsIENoYXJTZXQgPSBDaGFyU2V0LkF1dG8pXWByYG4gICAgcHVibGljIHN0YXRpYyBleHRlcm4gSW50UHRyIEdldEN1cnJlbnRQcm9jZXNzKCk7YHJgbn1cIl5cIlwiOyBbUHJpdmlsZWdlc106OkFkZFByaXZpbGVnZSgnU2VSZXN0b3JlUHJpdmlsZWdlJykgfCBPdXQtTnVsbDsgW1ByaXZpbGVnZXNdOjpBZGRQcml2aWxlZ2UoJ1NlVGFrZU93bmVyc2hpcFByaXZpbGVnZScpIHwgT3V0LU51bGw7ICRhZG1pblNpZCA9IE5ldy1PYmplY3QgU3lzdGVtLlNlY3VyaXR5LlByaW5jaXBhbC5TZWN1cml0eUlkZW50aWZpZXIgJ1MtMS01LTMyLTU0NCc7ICRhZG1pbkFjY291bnQgPSAkYWRtaW5TaWQuVHJhbnNsYXRlKFtTeXN0ZW0uU2VjdXJpdHkuUHJpbmNpcGFsLk5UQWNjb3VudF0pOyAkYWRtaW5GdWxsQ29udHJvbEFjY2Vzc1J1bGUgPSBOZXctT2JqZWN0IFN5c3RlbS5TZWN1cml0eS5BY2Nlc3NDb250cm9sLkZpbGVTeXN0ZW1BY2Nlc3NSdWxlKCAkYWRtaW5BY2NvdW50LCBbU3lzdGVtLlNlY3VyaXR5LkFjY2Vzc0NvbnRyb2wuRmlsZVN5c3RlbVJpZ2h0c106OkZ1bGxDb250cm9sLCBbU3lzdGVtLlNlY3VyaXR5LkFjY2Vzc0NvbnRyb2wuQWNjZXNzQ29udHJvbFR5cGVdOjpBbGxvdyApOyAkZm91bmRBYnNvbHV0ZVBhdGhzID0gQCgpOyB0cnkgeyAkZm91bmRBYnNvbHV0ZVBhdGhzICs9IEAoOyBHZXQtSXRlbSAtUGF0aCAkZXhwYW5kZWRQYXRoIC1FcnJvckFjdGlvbiBTdG9wIHwgU2VsZWN0LU9iamVjdCAtRXhwYW5kUHJvcGVydHkgRnVsbE5hbWU7ICk7IH0gY2F0Y2ggW1N5c3RlbS5NYW5hZ2VtZW50LkF1dG9tYXRpb24uSXRlbU5vdEZvdW5kRXhjZXB0aW9uXSB7IDwjIFN3YWxsb3csIGRvIG5vdCBydW4gYFRlc3QtUGF0aGAgYmVmb3JlLCBpdCdzIHVucmVsaWFibGUgZm9yIGdsb2JzIHJlcXVpcmluZyBleHRyYSBwZXJtaXNzaW9ucyAjPjsgfTsgJGZvdW5kQWJzb2x1dGVQYXRocyA9ICRmb3VuZEFic29sdXRlUGF0aHMgfCBTZWxlY3QtT2JqZWN0IC1VbmlxdWUgfCBTb3J0LU9iamVjdCAtUHJvcGVydHkgeyAkXy5MZW5ndGggfSAtRGVzY2VuZGluZzsgaWYgKCEkZm91bmRBYnNvbHV0ZVBhdGhzKSB7IFdyaXRlLUhvc3QgJ1NraXBwaW5nLCBubyBpdGVtcyBhdmFpbGFibGUuJzsgZXhpdCAwOyB9OyBXcml0ZS1Ib3N0IFwiXlwiXCJJbml0aWF0aW5nIHByb2Nlc3Npbmcgb2YgJCgkZm91bmRBYnNvbHV0ZVBhdGhzLkNvdW50KSBpdGVtcyBmcm9tIGBcIl5cIlwiJGV4cGFuZGVkUGF0aGBcIl5cIlwiLlwiXlwiXCI7IGZvcmVhY2ggKCRwYXRoIGluICRmb3VuZEFic29sdXRlUGF0aHMpIHsgaWYgKFRlc3QtUGF0aCAtUGF0aCAkcGF0aCAtUGF0aFR5cGUgQ29udGFpbmVyKSB7IFdyaXRlLUhvc3QgXCJeXCJcIlNraXBwaW5nIGZvbGRlciAobm90IGl0cyBjb250ZW50cyk6IGBcIl5cIlwiJHBhdGhgXCJeXCJcIi5cIl5cIlwiOyAkc2tpcHBlZENvdW50Kys7IGNvbnRpbnVlOyB9OyBpZigkcmV2ZXJ0IC1lcSAkdHJ1ZSkgeyBpZiAoLW5vdCAkcGF0aC5FbmRzV2l0aCgnLk9MRCcpKSB7IFdyaXRlLUhvc3QgXCJeXCJcIlNraXBwaW5nIG5vbi1iYWNrdXAgZmlsZTogYFwiXlwiXCIkcGF0aGBcIl5cIlwiLlwiXlwiXCI7ICRza2lwcGVkQ291bnQrKzsgY29udGludWU7IH07IH0gZWxzZSB7IGlmICgkcGF0aC5FbmRzV2l0aCgnLk9MRCcpKSB7IFdyaXRlLUhvc3QgXCJeXCJcIlNraXBwaW5nIGJhY2t1cCBmaWxlOiBgXCJeXCJcIiRwYXRoYFwiXlwiXCIuXCJeXCJcIjsgJHNraXBwZWRDb3VudCsrOyBjb250aW51ZTsgfTsgfTsgJG9yaWdpbmFsRmlsZVBhdGggPSAkcGF0aDsgV3JpdGUtSG9zdCBcIl5cIlwiUHJvY2Vzc2luZyBmaWxlOiBgXCJeXCJcIiRvcmlnaW5hbEZpbGVQYXRoYFwiXlwiXCIuXCJeXCJcIjsgaWYgKC1Ob3QgKFRlc3QtUGF0aCAkb3JpZ2luYWxGaWxlUGF0aCkpIHsgV3JpdGUtSG9zdCBcIl5cIlwiU2tpcHBpbmcsIGZpbGUgYFwiXlwiXCIkb3JpZ2luYWxGaWxlUGF0aGBcIl5cIlwiIG5vdCBmb3VuZC5cIl5cIlwiOyAkc2tpcHBlZENvdW50Kys7IGV4aXQgMDsgfTsgJG9yaWdpbmFsQWNsID0gR2V0LUFjbCAtUGF0aCBcIl5cIlwiJG9yaWdpbmFsRmlsZVBhdGhcIl5cIlwiOyAkYWNjZXNzR3JhbnRlZCA9ICRmYWxzZTsgdHJ5IHsgJGFjbCA9IEdldC1BY2wgLVBhdGggXCJeXCJcIiRvcmlnaW5hbEZpbGVQYXRoXCJeXCJcIjsgJGFjbC5TZXRPd25lcigkYWRtaW5BY2NvdW50KSA8IyBUYWtlIE93bmVyc2hpcCAoYmVjYXVzZSBmaWxlIGlzIG93bmVkIGJ5IFRydXN0ZWRJbnN0YWxsZXIpICM+OyAkYWNsLkFkZEFjY2Vzc1J1bGUoJGFkbWluRnVsbENvbnRyb2xBY2Nlc3NSdWxlKSA8IyBHcmFudCByaWdodHMgdG8gYmUgYWJsZSB0byBtb3ZlIHRoZSBmaWxlICM+OyBTZXQtQWNsIC1QYXRoICRvcmlnaW5hbEZpbGVQYXRoIC1BY2xPYmplY3QgJGFjbCAtRXJyb3JBY3Rpb24gU3RvcDsgJGFjY2Vzc0dyYW50ZWQgPSAkdHJ1ZTsgfSBjYXRjaCB7IFdyaXRlLVdhcm5pbmcgXCJeXCJcIkZhaWxlZCB0byBncmFudCBhY2Nlc3MgdG8gYFwiXlwiXCIkb3JpZ2luYWxGaWxlUGF0aGBcIl5cIlwiOiAkKCRfLkV4Y2VwdGlvbi5NZXNzYWdlKVwiXlwiXCI7IH07IGlmICgkcmV2ZXJ0IC1lcSAkdHJ1ZSkgeyAkbmV3RmlsZVBhdGggPSAkb3JpZ2luYWxGaWxlUGF0aC5TdWJzdHJpbmcoMCwgJG9yaWdpbmFsRmlsZVBhdGguTGVuZ3RoIC0gNCk7IH0gZWxzZSB7ICRuZXdGaWxlUGF0aCA9IFwiXlwiXCIkKCRvcmlnaW5hbEZpbGVQYXRoKS5PTERcIl5cIlwiOyB9OyB0cnkgeyBNb3ZlLUl0ZW0gLUxpdGVyYWxQYXRoIFwiXlwiXCIkKCRvcmlnaW5hbEZpbGVQYXRoKVwiXlwiXCIgLURlc3RpbmF0aW9uIFwiXlwiXCIkbmV3RmlsZVBhdGhcIl5cIlwiIC1Gb3JjZSAtRXJyb3JBY3Rpb24gU3RvcDsgV3JpdGUtSG9zdCBcIl5cIlwiU3VjY2Vzc2Z1bGx5IHByb2Nlc3NlZCBgXCJeXCJcIiRvcmlnaW5hbEZpbGVQYXRoYFwiXlwiXCIuXCJeXCJcIjsgJHJlbmFtZWRDb3VudCsrOyBpZiAoJGFjY2Vzc0dyYW50ZWQpIHsgdHJ5IHsgU2V0LUFjbCAtUGF0aCAkbmV3RmlsZVBhdGggLUFjbE9iamVjdCAkb3JpZ2luYWxBY2wgLUVycm9yQWN0aW9uIFN0b3A7IH0gY2F0Y2ggeyBXcml0ZS1XYXJuaW5nIFwiXlwiXCJGYWlsZWQgdG8gcmVzdG9yZSBhY2Nlc3Mgb24gYFwiXlwiXCIkbmV3RmlsZVBhdGhgXCJeXCJcIjogJCgkXy5FeGNlcHRpb24uTWVzc2FnZSlcIl5cIlwiOyB9OyB9OyB9IGNhdGNoIHsgV3JpdGUtRXJyb3IgXCJeXCJcIkZhaWxlZCB0byByZW5hbWUgYFwiXlwiXCIkb3JpZ2luYWxGaWxlUGF0aGBcIl5cIlwiIHRvIGBcIl5cIlwiJG5ld0ZpbGVQYXRoYFwiXlwiXCI6ICQoJF8uRXhjZXB0aW9uLk1lc3NhZ2UpXCJeXCJcIjsgJGZhaWxlZENvdW50Kys7IGlmICgkYWNjZXNzR3JhbnRlZCkgeyB0cnkgeyBTZXQtQWNsIC1QYXRoICRvcmlnaW5hbEZpbGVQYXRoIC1BY2xPYmplY3QgJG9yaWdpbmFsQWNsIC1FcnJvckFjdGlvbiBTdG9wOyB9IGNhdGNoIHsgV3JpdGUtV2FybmluZyBcIl5cIlwiRmFpbGVkIHRvIHJlc3RvcmUgYWNjZXNzIG9uIGBcIl5cIlwiJG9yaWdpbmFsRmlsZVBhdGhgXCJeXCJcIjogJCgkXy5FeGNlcHRpb24uTWVzc2FnZSlcIl5cIlwiOyB9OyB9OyB9OyB9OyBpZiAoKCRyZW5hbWVkQ291bnQgLWd0IDApIC1vciAoJHNraXBwZWRDb3VudCAtZ3QgMCkpIHsgV3JpdGUtSG9zdCBcIl5cIlwiU3VjY2Vzc2Z1bGx5IHByb2Nlc3NlZCAkcmVuYW1lZENvdW50IGl0ZW1zIGFuZCBza2lwcGVkICRza2lwcGVkQ291bnQgaXRlbXMuXCJeXCJcIjsgfTsgaWYgKCRmYWlsZWRDb3VudCAtZ3QgMCkgeyBXcml0ZS1XYXJuaW5nIFwiXlwiXCJGYWlsZWQgdG8gcHJvY2VzcyAkKCRmYWlsZWRDb3VudCkgaXRlbXMuXCJeXCJcIjsgfTsgW1ByaXZpbGVnZXNdOjpSZW1vdmVQcml2aWxlZ2UoJ1NlUmVzdG9yZVByaXZpbGVnZScpIHwgT3V0LU51bGw7IFtQcml2aWxlZ2VzXTo6UmVtb3ZlUHJpdmlsZWdlKCdTZVRha2VPd25lcnNoaXBQcml2aWxlZ2UnKSB8IE91dC1OdWxsXCIi
Help
How to apply or restore "Disable SmartScreen process" using commands
- ≈ 2 min to complete
- Tools: Command Prompt
- Difficulty: Medium
- ≈ 3 instructions
- 1
Open Command Prompt
Open Command Prompt as Administrator. - 2
Copy code
Copy the code: - 3
Paste & run
Paste the commands into Command Prompt and press Enter to run.Some changes require a system restart to take effect
Similar Guides
Wider Goal
Guides below includes this guide to achieve a wider goal.See other more general settings that includes this one as one of its actions.These plans combine multiple privacy settings, including this one, for stronger protection.
- Disable SmartScreen system components
- Disable SmartScreen
- Disable Defender
- Privacy over security
This category includes scripts that disable SmartScreen system components. SmartScreen is a security feature in Windows that helps protect your device fr...
This category focuses on disabling the SmartScreen and its features and components. SmartScreen is known also as "Windows SmartScreen", "Windows Defender...
This category offers scripts to disable Windows security components related to Defender. Defender is also referred to as Microsoft Defender or Windows De...
Same Goal
Other guides in Disable SmartScreen system components See settings that are in the same category as this guide.Using other actions in the same category may help you achieve your goal better.
About the Creators
These people have authored this documentation and written its scripts:
Reviewed By
This guide has undergone comprehensive auditing and peer review:Expert review by undergroundwires
- Verified technical accuracy and editorial standards
- Assessed system impact and user privacy risks
- Audited and verified using automated security tests
Public review by large community
- Privacy enthusiasts and professionals peer-reviewed
- Millions of end-users tested across different environments
- Audited and verified using third-party security software
History
We continually monitor our guides, their impact and other potential privacy options. We update our guides when new information becomes available. On every update, we publicly store who made the change, what has been changed, why the change was made and when the change was made.