Windows Defender exclusions when creating ISO's?

mvalpreda

New Member
See a lot of threads on getting rid of Defender, but not trying to do that.
What folder(s) should I add to the exclusion list in Defender when I am creating ISOs? That way if I forget to turn it off it doesn't go slow.
 
Run this command as Administrator, to permanently add NTLite.exe process and its folders to the exclusion list.
Code:
powershell Add-MpPreference -ExclusionProcess 'C:\Program Files\NTLite\NTLite.exe'; Add-MpPreference -ExclusionPath 'C:\Program Files\NTLite\NTLite'; Add-MpPreference -ExclusionPath "$env:LOCALAPPDATA\Temp"

If you assigned the temp folder to another location, then update the -ExclusionPath.
 
Back
Top