Skip to content

Instantly share code, notes, and snippets.

@jrotello
Created July 12, 2012 02:51
Show Gist options
  • Save jrotello/3095372 to your computer and use it in GitHub Desktop.
Save jrotello/3095372 to your computer and use it in GitHub Desktop.
Creates the GodMode (control panel on steriods) folder on the current user's desktop.
$godMode = "$env:userprofile\Desktop\GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}"
if (!(Test-Path -Path $godMode)) {
mkdir $godMode
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment