How can I check if my firewall is still running after I turn it off?

2023-10-28 04:22:46
2023-10-28 04:22:46
How to disable Firewall via command line? To do this, run the command line as an administrator and enter a special code.
netsh advfirewall set allprofiles state off
Successful execution of the code will produce the following result.
C:\Windows\system32>netsh advfirewall set allprofiles state off
ОК.
C:\Windows\system32>
However, the operation performed does not guarantee that after disabling the system, the firewall will stop working. To check, press Win+R and enter “services.msc” into the command line.
services.msc
This way we see that the program is not disabled. The operating system of new versions launches this function automatically. What should be done? Open a Win+R window and type “regedit”.
Regedit
A window called “Registry Editor” will open in front of the user. There you should follow the address path described below.
Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\mpssvc
In the column on the right, select “Start” by double-clicking and change “2” to “4”. After this, the computer must be restarted.