Windows registry entries for default explorer view

automationwindowswindows xpwindows-explorerwindows-registry

I'm making an automated installer for Windows XP, and I want the default view to be the "details" view on all folders – that is, the effect gotten by setting one folder to the details view, then going to Tools -> Folder Options -> View -> "Apply to All Folders". I also want the status bar to be showing, same as going View -> Show Status Bar.

What registry entries should I modify, and to what, to have this be the case?

Best Answer

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams

"Settings"=hex:08,00,00,00,04,00,00,00,00,00,00,00,00,77,7e,13,73,35,cf,11,ae,\ 69,08,00,2b,2e,12,62,04,00,00,00,01,00,00,00,43,00,00,00

.

However, as you can see the data is in an uncomprehensible format. The bold, fifth hexadecimal value in my example indicates the display style setting. Possible values:

01: Large Icons

02: Small Icons

03: List View

04: Details

. There may be others.

. Source of Information

.

Related Question