Setting / locking the explorer.exe view how to customize explorer.exe's default view
#1
Posted 18 May 2009 - 03:39 PM
specifically, how can i lock the explorer.exe view to "details"? iow, i don't want a user to be able to switch the view to thumbnails, tiles, icons, or list.
thanks,
david
#2
Posted 18 May 2009 - 03:52 PM
#3
Posted 18 May 2009 - 04:13 PM
#4
Posted 18 May 2009 - 04:22 PM
This post has been edited by iamtheky: 09 August 2011 - 09:17 PM
#5
Posted 18 May 2009 - 04:37 PM
@iamtheky, he's not talking about the start menu.
#6
Posted 18 May 2009 - 04:37 PM
iamtheky, on May 18 2009, 03:22 PM, said:
Exit Registry and Reboot
thanks. i'm not in front of computer i can test this out on atm (the two i'm in front of are both processing things so they cannot be rebooted).
does switching explorer.exe to classic mode force the view to "details"?
#7
Posted 18 May 2009 - 04:38 PM
-X-, on May 18 2009, 05:52 PM, said:
Key: HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell
Value: WFlags
Type: REG_DWORD
Data: 0
Key: HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell
Value: Status
Type: REG_DWORD
Data: 0
Key: HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell
Value: Mode
Type: REG_DWORD
Data: 4
Key: HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell
Value: vid
Type: REG_SZ
Data: {137E7700-3573-11CF-AE69-08002B2E1262}
Key: HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\Bags\AllFolders\Shell
Value: WFlags
Type: REG_DWORD
Data: 0
Key: HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\Bags\AllFolders\Shell
Value: Status
Type: REG_DWORD
Data: 0
Key: HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\Bags\AllFolders\Shell
Value: Mode
Type: REG_DWORD
Data: 4
Key: HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\Bags\AllFolders\Shell
Value: vid
Type: REG_SZ
Data: {137E7700-3573-11CF-AE69-08002B2E1262}
Here's a .reg that will force "details" view for all current and new folders if imported into a logged-on user's registry:
Windows Registry Editor Version 5.00
[-HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\Bags]
[-HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\BagMRU]
[-HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags]
[-HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\BagMRU]
[HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\Bags\AllFolders\Shell]
"WFlags"=dword:00000000
"Status"=dword:00000000
"Mode"=dword:00000004
"vid"="{137E7700-3573-11CF-AE69-08002B2E1262}"
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell]
"WFlags"=dword:00000000
"Status"=dword:00000000
"Mode"=dword:00000004
"vid"="{137E7700-3573-11CF-AE69-08002B2E1262}"
Here are all of the possible "mode" and "vid" values that can be set:
Name Mode VID
Icons 1 {0057D0E0-3573-11CF-AE69-08002B2E1262}
List 3 {0E1FA5E0-3573-11CF-AE69-08002B2E1262}
Details 4 {137E7700-3573-11CF-AE69-08002B2E1262}
Thumbnail 5 {8BEBB290-52D0-11D0-B7F4-00C04FD706EC}
Tiles 6 {65F125E5-7BE1-4810-BA9D-D271C8432CE3}
Filmstrip 7 {8EEFA624-D1E9-445B-94B7-74FBCE2EA11A}
EDIT 9th April 2010: Someone documents the Vista/Win7 version of this here:
http://www.msfn.org/...__gopid__917586
This post has been edited by cluberti: 09 April 2010 - 12:15 PM
Reason for edit: Someone else documents this here as well, see EDIT.
#8
Posted 18 May 2009 - 05:08 PM
But it's a fleeting IT kind of love, that will soon be replaced when I get distracted by something shiny later on.
But those registry settings could be loaded and then locked down with ACL's.
/scampers off to look for old setacl.exe script...
// oooo look - something shiny!
#9
Posted 18 May 2009 - 05:40 PM
cluberti, on May 18 2009, 03:38 PM, said:
thank you.
cluberti, on May 18 2009, 03:38 PM, said:
does this mean that i would need execute the "Apply to All Folders" command after these .reg settings were applied in order to propagate this view to all folders?
#10
Posted 18 May 2009 - 05:45 PM
#11
Posted 18 May 2009 - 06:07 PM
But you can do it yourself if you want to. Just make sure you do it on a test (vmware) machine, because if you screw up registry permissions you are really screwed.
First log on as the user you want to lock down, then load Cluberti's registry file. Then, use SETACL.EXE to remove inheritance from the registry keys listed in Cluberti's registry files. Then lock the rights to those keys to "everyone" readonly. That way the currently logged on user will only be able to read those registry keys and not modify them. Should work. The hard part is getting the cryptic commands in setacl.exe correct.
http://setacl.source...l/examples.html
This post has been edited by Nois3: 18 May 2009 - 06:09 PM
#12
Posted 18 May 2009 - 06:52 PM
besonen, on May 18 2009, 07:40 PM, said:
No, the .reg clears all the user's explorer views they've saved in the user's profile and replaces them with the "explorer" view. It just takes a reg merge, logoff and logon (or apply during a synchronous logon script, before explorer loads), and it's done.
#13
Posted 18 May 2009 - 06:54 PM
Nois3, on May 18 2009, 08:07 PM, said:
#14
Posted 13 April 2010 - 03:24 PM
Thanks in advance.
#15
Posted 13 April 2010 - 04:25 PM
#16
#17
Posted 13 April 2010 - 08:09 PM
Name Mode VID
Icons 1 {0057D0E0-3573-11CF-AE69-08002B2E1262}
#18 Guest_necoo_*
Posted 30 August 2010 - 03:38 AM
This post has been edited by Tripredacus: 02 September 2010 - 02:46 PM
Reason for edit: removed links
#19
Posted 28 October 2010 - 04:36 AM
cluberti, on 18 May 2009 - 04:38 PM, said:
http://www.msfn.org/...__gopid__917586
That link is broken.
Try this for now: http://www.msfn.org/...o-folder-views/
#20
Posted 12 February 2011 - 12:18 PM
I'm as green as they come with this stuff.... so please bear with me.
I'm trying this out and i'm not getting any results.
When i went into the reg the branch, [HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell and [HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\Bags\AllFolders\Shell] Didn't exist.
All that was there was [HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags] and [HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam\Bags]
So, I created the rest of the branch, created the keys and set the values exactly as above.
Reboot. open a few folders.... no change...
What am I missing here?
Thanks for your time.
This post has been edited by junebug2012: 12 February 2011 - 12:32 PM
- ← Best way to get any wallpaper on desktop using my method
- Windows XP
- Javascript and ActiveX not working →



Help

Back to top











