Windows: Disable Windows Defender

1. How to disable Windows Defender using Local Group Policy

Use the Windows key + R keyboard shortcut to open the Run command.
Type gpedit.msc and click OK to open the Local Group Policy Editor.

Computer Configuration > Administrative Templates > Windows Components > Windows Defender

On the right, double-click Turn off Windows Defender.

 

2. Using the UI or PowerShell

Turn off Windows Defender Real-Time Protection using PowerShell
Set-MpPreference -DisableRealtimeMonitoring $true
then
remove windows defender open command prompt with administrator and copy following
Dism /online /Disable-Feature /FeatureName:Windows-Defender /Remove /NoRestart /quiet
restart server

Firefox: отключение проверки цифровой подписи дополнений

Для отключения поверки ццифровой подписи, создайте 2 файла:

1. Файл config.js
В корневой папке папке самого файрфокса (по умолчанию: C:\Program Files (x86)\Mozilla Firefox\ )

//
try {
Components.utils.import("resource://gre/modules/addons/XPIProvider.jsm", {})
.eval("SIGNED_TYPES.clear()");
}
catch(ex) {}

2. Файл config-prefs.js
В папке (по умолчанию: C:\Program Files\Mozilla Firefox\defaults\pref )

pref("general.config.obscure_value", 0);
pref("general.config.filename", "config.js");

Windows: отключаем Windows Update на Server 2016

Открываем консоль – cmd
Вводим sconfig
Выбираем пункт обновление Windows (по умолчанию 5)

Выбираем пункт 5
Выбираем М – обновление только вручную

Ждем сообщение системы, что все корректно отключилось

Firefox: disable DNS Prefetching

Что такое DNS Prefetching? Это значит, когда вы заходите на главную страницу сайта, то происходит DNS resolution самого сайта и DNS resolution всех линков на другие хосты, которые исходят с этого сайта. Более того этот DNS resolution происходит не последовательно, а параллельно с загрузкой странички.

Как отключить?:

1. In the Location bar, type about:config and press EnterReturn.
2. Right-clickHold down the Ctrl key while you click in the list of preferences, select New, and then select Boolean.
3. In the Enter the preference name window, enter network.dns.disablePrefetch and click OK.
4. Select true when prompted to set the value and click OK.

Для отключения DNS Prefetching на HTTPS сайтах, добавьте строчку
network.dns.disablePrefetchFromHTTPS
аналогично инструкции выше

Posts navigation

1 2 3 4
Scroll to top