Windows

How to enable God Mode via PowerShell, CLI and GUI

God Mode

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.

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

Below are the steps to configure GodMode

- Right clcik on the desktop and 
- Create a new folder

How to enable God Mode via PowerShell

PowerShell
- Enter the name as shown below to rename the folder
GodMode.{ED7BA470-8E54-465E-825C-99712043E01C} 
CLI
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.

Command Line Interface (CMD): This can also be done via the CommandLine Interface as shown below.

- Create a New Folder
- 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

PowerShell: This can also be created 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(How to enable God Mode via PowerShell).

Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x