Windows Explored

Everyday Windows Desktop Support, Advanced Troubleshooting & Other OS Tidbits

Archive for August 11th, 2010

Windows 7 "One Stop Shopping" Control Panel

Posted by William Diaz on August 11, 2010


Here’s a neat trick to put all Windows 7 control panels into one location, also known as “God” mode. Create a new folder on the desktop and change its name to GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}. Actually, you can name it anything, e.g. OneStopShoping.{ED7BA470-8E54-465E-825C-99712043E01C}.
The icon will change to the Control Panel Icon and you now have one stop shopping for configuration settings in the OS:

image

Advertisement

Posted in Inside Windows | Leave a Comment »

Enable Process & Service Crash Archiving in Vista/Win7

Posted by William Diaz on August 11, 2010


Windows Vista and 7, unlike Windows XP, do not come enabled with a post-mortem debugger out of the box . But you can enable crash dump archiving by editing the Windows registry.

  • Create a new key called LocalDumps in HKLM\Software\Microsoft\Windows\Windows Error Reporting (by default it points to %LOCALAPPDATA%\CrashDumps).
    • To change save location, create a new Expandable String Value called DumpFolder with a value of the desired path
    • A DWORD value called DumpCount with a value of decimal 10 will set the max number of dumps to save into this file at 10.
    • A new DWORD value called DumpType with value of 1 or 2 decides the type of dump (1 = minidump, 2 = fulldump).

 

The crash dump will be created in \Users\UserName\AppData\Local. To change the destination, modify DumpFolder to the desired path.

Alternatively, if the app errors and the process remains running until the error message box is dismissed, you can use the Windows Task Manager to manually dump the process by right-clicking it and choosing Create Dump File.

See this MSDN article here for more details.

Posted in Inside Windows | Tagged: , | 3 Comments »