Enable God Mode via PowerShell or the CLI and GUI

GodMode is a special folder in Windows that gives you quick access to over important tools needed to administer your computer. Its been around since the days of Windows 7. In this article, we shall discuss how to enable God Mode via PowerShell or the CLI and GUI. Please see How to remove WDS role via the GUI and PowerShell, how to SSH into a VM created using Azure CLI or GUI, and How to uninstall AWS CLI in Windows.
It is a dedicated folder that puts all of your settings in one place, where you’ll be able to do everything from adding clocks for different time zones to defragmenting your drives
Also, see How to manage automatic login on Ubuntu Linux, and how to fix “AWS CLI Error: All commands return Unknown output type [None]“. Also, see
Cconfigure GodMode
Below are the steps to configure GodMode. Right clcik on the desktop and create a new folder

Enter the name as shown below to rename the folder
GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}

Press enter. This is all the configuzation needed in order to have GodMode running on your PC

Double Click to open the GodMode Application. It currently contains 205 tools and settings to administer your Windows Machine.

Please see how to Enable Autologon and Autostart for user session, and How to Diagnose a Windows Hardware Issue.
Via the Command Prompt
Create a New Folder, and launch the CMD and navigate to the path or open the newly created folder and type cmd as shown below.

This will open a command line interface to the path where the folder was created and rename
ren "God Mode.{ED7BA470-8E54-465E-825C-99712043E01C}" New folder

Via PowerShell
Ensure you run it with administrative privilege.
#Requires -RunAsAdministrator
$godmodeSplat = @{
Path = "$env:USERPROFILEDesktop"
Name = "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}"
ItemType = 'Directory'
}
New-Item @godmodeSplat

This will have the GodMode Folder (icon) created on your desktop.
I hope you found this article useful on how to enable God Mode via PowerShell or the CLI and GUI. Please feel free to leave a comment below.