Small script which helps you enable DEP (Data Execution Prevention) wrote in PowerShell: # Script to enable DEP on clients with and without Bitlocker $script:ErrorActionPreference = "SilentlyContinue" $DebugPreference = "Continue" $ScriptPath = $MyInvocation.MyCommand.Path $ScriptDir = split-path -parent $ScriptPath $ScriptName = ($MyInvocation.MyCommand.Name).SubString(0,($MyInvocation.MyCommand.Name).Length-4) # Function to write Logfile Function Log($text) { […]