Skip to main content

The Ultimate Windows 7 folder

A colleague (thanks Tony) sent me through an email saying ...
create this folder on you c drive an take a look inside :
AllControlPanels.{ED7BA470-8E54-465E-825C-99712043E01C}

The folder contains all the control pannels in one place!  In doing a search on the GUID (the text in the brackets) shows that this has been nicknamed God Mode ... pretty handy I'd say.  To extend this a little further, here is a list of a few more in a format to copy and paste into a command prompt.  It creates and adds all the new folders to a tools folder on the c drive. 

Enjoy!


Md c:\tools
Cd c:\tools
md AllControlPanels.{ED7BA470-8E54-465E-825C-99712043E01C}
Md LOCATION.{00C6D95F-329C-409a-81D7-C46C66EA7F33}
md BIOMETRIC.{0142e4d0-fb7a-11dc-ba4a-000ffe7ab428}
md POWER.{025A5937-A6BE-4686-A844-36FE4BEC8B6D}
md NOTIFICATION.{05d7b0f4-2121-4eff-bf6b-ed3f69b894d9}
md CREDENTIALS.{1206F5F1-0569-412C-8FEC-3204630DFB70}
md NETWORKAPPS.{15eae92e-f17a-4431-9f28-805e482dafd4}
md DEFAULTS.{17cd9488-1228-4b2f-88ce-4298e93e0966}
md ASSEMBLIES.{1D2680C9-0E2A-469d-B787-065558BC7D43}
md WIRELESS.{1FA9085F-25A2-489B-85D4-86326EEDCD87}
md NETWORK.{208D2C60-3AEA-1069-A2D7-08002B30309D}
md DRIVES.{20D04FE0-3AEA-1069-A2D8-08002B30309D}
md PRINTERS.{2227A280-3AEA-1069-A2DE-08002B30309D}
md REMOTE.{241D7C96-F8BF-4F85-B01F-E2B043341A4B}
md FIREWALL.{4026492F-2F69-46B8-B9BF-5654FC07E423}
md PERFORMANCE.{78F3955E-3B90-4184-BD14-5397C15F1EFC}


UPDATE : blog entry explaining a bit more about this

Comments

Popular posts from this blog

Assigning Permissions - AGDLP

AGDLP It seems I have been mildly distracted away from the title of this blog site.   It does say AD Admin, but I seem to have been taken away by file system stuff.   I have to say, it has all been worthwhile, but it’s probably time I got back to the real heart of what I do. There are probably a million permission assigning advice pages, but I thought I would put another one out there after referring to AGDLP in my last post. So, what is this all about – AGDLP.   Well, it is something I learned in my MCSE 2003 studies and has become ingrained into my ideals since.   As a contractor, I get to move job often.   This enables me to forge opinions on how to configure things in a domain, and more importantly how NOT to configure things. AGDLP is definitely on the to do list…for anyone in any size domain or forest, as it follows some very basic principals.   I will explain these whilst I go through what AGDPL stands for. A A is for...

Finding out what 'SearchFlags' are set on you AD attributes

Whilst doing some research into indexed attributes, I posted this  a while back on how to find your index attributes.  Since then, I have looked a little deeper into what indexing really means and found this excellent explanation on the numbers that can be found in the searchflags attribute of a schema object. Using Florian’s reference, I built the following script (which is both powershell v1 and v2 compatible) to get the schema attributes from the forest schema and return (among other things) the breakdown of your attributes search flags. $forest = [System.DirectoryServices.ActiveDirectory.forest]::getcurrentforest() $schema = [ADSI]('LDAP://CN=Schema,CN=Configuration,dc=' + ($($forest).name -replace "[.]",",dc=")) $attributes = $schema.psbase.children | where {$_.objectClass -eq "attributeSchema"} $collection = @() foreach ($attr in $attributes){ $store = "" | select "Name","lDAPDisplayName","singlev...

Updated : V0.992 Filesystem Powershell module

Update : version 0.992  now available including DFS-r Hot on the heals of my AD sites module , I have been looking at some file system functions.  This module is driven primarily by my own needs, but after a prompt on the powergui website from someone after a way of managing DFS with powershell (thanks packetboy), this is what I have come up with.  All help files are included with examples, but I will publish the help and examples over time. Requirements This module has been built on a Windows 2008 R2 platform and therefore the DFS functions will be based around the 2008 R2 version of DFSUTIL.  This is not to say that it is not compatible with anything earlier, it has just not been tested. Installation and use Download the zip file and extract to your modules folder. This can be found by running "explorer $pshome\modules" from a PowerShell console. To use, run "import-module Filesystem" Command list and Help To retrieve the list of comma...