clavicle Posted August 12, 2005 Posted August 12, 2005 Can someone please tell me what commandline can be used to access the same as achieved by Right Click (on desktop) > Arrange Icons by >Show Desktop IconsI need it to assign a shortcut to my keyboard to toggle hide and show desktop icons especially when the desktop is cluttered!Thanks in advance!
Yzöwl Posted August 12, 2005 Posted August 12, 2005 As far as I know there isn't one.From the registry, the keys changed are[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Desktop\Components]"RestrictChannelUI"[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]"ShellState"[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]"HideIcons"The RestrictChannelUI hex value is set for 'hidden' and removed for 'shown'.The ShellState hex value data will be different for some users, therefore no one size fits all, on top of that it is the third pair which changes in the hex code for the toggle.The HideIcons dword is a simple change between 0, (shown), and 1, (hidden).Additionally the registry changes would require a reboot of explorer.exe to take effect
clavicle Posted August 13, 2005 Author Posted August 13, 2005 Thanks Yzöwl! I also tried the keys, but as you mentioned a reboot is needed.I searched and found a reference at http://www.mcse.ms/message1739106.html but still I am unable to get the thing working. So maybe a little modification in this script or a script of autoit can do it. But I am bad at computer languages.I shall keep trying!Thanks anyway!
xtremexxx Posted September 2, 2005 Posted September 2, 2005 I've been trying to get a tweak for this, but I was unsuccesfull also ...
gunsmokingman Posted September 3, 2005 Posted September 3, 2005 You would have to hack shell32.dllThis is part one215 MENUEXLANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US{POPUP "", 0, MFT_STRING, MFS_ENABLED, 0{ POPUP "&View", 28674, MFT_STRING, MFS_ENABLED, 0 { MENUITEM "Filmstri&p", 28719, MFT_STRING, MFS_ENABLED MENUITEM "T&humbnails", 28717, MFT_STRING, MFS_ENABLED MENUITEM "Tile&s", 28718, MFT_STRING, MFS_ENABLED MENUITEM "Ico&ns", 28713, MFT_STRING, MFS_ENABLED MENUITEM "&List", 28715, MFT_STRING, MFS_ENABLED MENUITEM "&Details", 28716, MFT_STRING, MFS_ENABLED } MENUITEM "", 65535, MFT_SEPARATOR, MFS_ENABLED POPUP "Arrange &Icons By", 28673, MFT_STRING, MFS_ENABLED, 0 { MENUITEM "", 30208, MFT_SEPARATOR, MFS_ENABLED MENUITEM "Show in &Groups", 30209, MFT_STRING, MFS_ENABLED MENUITEM "&Auto Arrange", 28753, MFT_STRING, MFS_ENABLED MENUITEM "A&lign to Grid", 28756, MFT_STRING, MFS_ENABLED } MENUITEM "R&efresh", 28931, MFT_STRING, MFS_ENABLED MENUITEM "", 65535, MFT_SEPARATOR, MFS_ENABLED MENUITEM "Customize This &Folder...", 28722, MFT_STRING, MFS_ENABLED MENUITEM "", 65535, MFT_SEPARATOR, MFS_ENABLED MENUITEM "&Paste", 28698, MFT_STRING, MFS_ENABLED MENUITEM "Paste &Shortcut", 28700, MFT_STRING, MFS_ENABLED MENUITEM "&Undo", 28699, MFT_STRING, MFS_ENABLED}}This is part two218 MENUEXLANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US{POPUP "", 0, MFT_STRING, MFS_ENABLED, 0{ MENUITEM "Show &Desktop Icons", 29698, MFT_STRING, MFS_ENABLED MENUITEM "Lock Web &Items on Desktop", 29699, MFT_STRING, MFS_ENABLED MENUITEM "&Run Desktop Cleanup Wizard", 29700, MFT_STRING, MFS_ENABLED}}
bmn Posted September 10, 2005 Posted September 10, 2005 i dono this,but is it possible to run shortcut keys using command prompt.bcz combination of windowskey+M will show u the desktop.is it possible with cmd?
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now