Сообщения

Enable Remote access

Изображение
  PowerShell Command to Disable Windows Firewall This is the PowerShell command to fully disable the Windows firewall. Set-NetFirewallProfile -Enabled False Open the  Start  menu. Search for “ PowerShell “. Right-click on “ PowerShell ” and select “ Run as administrator “. In the PowerShell window,  execute  the below command to disable the Windows Defender Firewall. Set-NetFirewallProfile -Enabled False Close  the PowerShell. Reboot  Windows. To enable back the firewall, you need to execute the below command in the PowerShell window as an admin. Set-NetFirewallProfile -Enabled True That is all. It is that simple to fully disable Windows defender firewall in Windows 10, Windows 7, and Windows 8. If you are stuck or need some help, comment below and I will try to help as much as possible. or  Enable Remote Desktop Remotely Using PowerShell To enable RDP remotely, you need to configure and run the WinRM service (Windows Remote Management) on the rem...