Configures a computer to do a complete memory dump to the file C:\Scripts\memory.dmp should a stop event (blue screen) occur.
Const COMPLETE_MEMORY_DUMP = 1strComputer = "."Set objWMIService = GetObject("winmgmts:" _& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")Set colRecoveryOptions = objWMIService.ExecQuery _("Select * from Win32_OSRecoveryConfiguration")For Each objOption in colRecoveryOptionsobjOption.DebugInfoType = COMPLETE_MEMORY_DUMPobjOption.DebugFilePath = "c:\scripts\memory.dmp"objOption.OverWriteExistingDebugFile = FalseobjOption.Put_Next
This is a VB Script, this can be used by saving the file in .vbs file