Skip to content

Commit 0e99072

Browse files
committed
Update
1 parent 1907c8d commit 0e99072

9 files changed

Lines changed: 18 additions & 0 deletions
546 Bytes
Binary file not shown.
260 Bytes
Binary file not shown.
1.38 KB
Binary file not shown.
574 Bytes
Binary file not shown.
3.82 KB
Binary file not shown.
14.7 KB
Binary file not shown.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Temporarily disable Windows Defender realtime monitoring
2+
3+
Set-MpPreference -DisableRealtimeMonitoring $true
4+
Get-MpComputerStatus | select AMRunningMode
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@echo off
2+
3+
schtasks /Change /TN "Microsoft\Windows\LanguageComponentsInstaller\Installation" /Disable

Scripts/disable_firewall.ps1

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Disable Windows Firewall filtering
2+
Set-NetFirewallProfile -Enabled False
3+
4+
# For private network only
5+
Set-NetFirewallProfile -Profile Private -Enabled False
6+
7+
# For public network only
8+
Set-NetFirewallProfile -Profile Public -Enabled False
9+
10+
# For domain network only
11+
Set-NetFirewallProfile -Profile Domain -Enabled False

0 commit comments

Comments
 (0)