1

After creating the GodMode folder, the folder has no visible name, even though what I entered before the dot was GodMode.

GodMode icon

What I named the folder was GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}.

Is there a way to get a display name to show up for this special folder in Windows 10?

mbomb007
  • 761
  • https://www.reddit.com/r/sysadmin/comments/3ghx7a/how_to_enable_godmode_in_windows_10/ – LPChip May 01 '18 at 13:37
  • Just did the steps from this earlier link, but Windows refuses to give it a display name. I can however safely rename the folder without breaking the godmode. – LPChip May 01 '18 at 13:41
  • @LPChip And it keeps your name? Mine doesn't. – mbomb007 May 01 '18 at 13:42
  • It does if you create a folder, put a desktop.ini in it with the right content and use attrib to set the right permissions to the folder and file. – LPChip May 01 '18 at 13:44
  • Post an answer with the desktop.ini content. Nothing in the link you commented has anything about changing the folder name using the ini file. – mbomb007 May 01 '18 at 13:52
  • The problem is that after you use the desktop.ini method, the folder is still blank and renaming has no effect. So I did a better thing, posting an answer that its not possible. I suspect Microsoft introduced a bug here, or they want to discourage the use of the GodMode folder. – LPChip May 01 '18 at 14:00

3 Answers3

3

It appears this is a bug/feature, and its currently not possible to give that folder a name.

LPChip
  • 61,264
  • Yeah, I can't get a single setting of desktop.ini to work on it, either. Maybe there's something in the registry that needs to be changed? – mbomb007 May 01 '18 at 14:13
  • you need to attrib desktop.ini +s +h and the folder +s before it will work. – LPChip May 01 '18 at 14:23
  • I did. It doesn't change anything. I couldn't change the tooltip, and I couldn't change the icon. I also found that it's impossible to edit the registry values for HKEY_CLASSES_ROOT\CLSID\{ED7BA470-8E54-465E-825C-99712043E01C} – mbomb007 May 01 '18 at 14:24
2

A workaround would be to create a shortcut on the desktop with the following target value:

explorer shell:::{ED7BA470-8E54-465E-825C-99712043E01C}

Name it whatever you like! :)

To change the icon to the Control Panel icon, click the Change Icon button in the shortcut properties, then enter %SystemRoot%\System32\SHELL32.dll into the Look for icons in this file box. Then scroll through the icons until you find the Control Panel "monitor with pie chart" icon.

Jimadine
  • 1,372
0

Based on Ahmad Addas's answer, here's some lines of Powershell that create the desktop shortcut as well as setting the shortcut icon to the Control Panel icon, as per the conventional GodMod "new folder" method:

$WshShell = New-Object -comObject WScript.Shell
$Shortcut = $WshShell.CreateShortcut("$Home\Desktop\GodMode.lnk")
$Shortcut.TargetPath = "%SystemRoot%\explorer.exe"
$Shortcut.Arguments = "shell:::{ED7BA470-8E54-465E-825C-99712043E01C}"
$Shortcut.WorkingDirectory = "%SystemRoot%"
$Shortcut.IconLocation = "%SystemRoot%\System32\SHELL32.dll,21"
$Shortcut.Save()

To run the above, copy and paste all of the lines into a Windows Powershell window, and press the Return key ().

Jimadine
  • 1,372