Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Modify Recovery Configuration OptionsContent of Modify Recovery Configuration Options.vbsMD5 Hash: 1409FF37F5AE6A378D3D2F49DE3C5B0F |
||
' Description: 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 = 1 strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colRecoveryOptions = objWMIService.ExecQuery _ ("Select * from Win32_OSRecoveryConfiguration") For Each objOption in colRecoveryOptions objOption.DebugInfoType = COMPLETE_MEMORY_DUMP objOption.DebugFilePath = "c:\scripts\memory.dmp" objOption.OverWriteExistingDebugFile = False objOption.Put_ Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |