Enable Verbose - Show Detailed Information While Windows Start

At times windows take hell lot of time to start or to shutdown. You are getting frustrated why it is happening but have no idea how to know about the reason. Well here is a registry hack which will tell you what windows was doing that took so long to start or shutdown…

By this registry hack you can get detailed information of what windows is doing during startup, Shutdown, Login or logoff. Activating this will slow down the windows further but as this shows detailed information about what it doing it will be good for troubleshooting purpose. It can also be handy for tuning so if you see any application or file takinga lot of time to load during startup you can remove that from startup. If it is a service you can set it to start in delayed mode (vista only).

I would recommend don’t use this setting turned on always, set it only when you want to troubleshoot as it further slow downs windows. Step to do it are explained below -

  1. Go To Start > Run.
  2. Type ‘Regedit’ in run dialog.
  3. Browse to ‘HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionPoliciesSystem‘.
  4. Create a DWORD value called ‘verbosestatus‘.
  5. Set the value of this newly created item as ’1′.
  6. This will enable the status message with detailed information during startup and shutdown.
  7. To disable this behaviour delete above key or set it to 0.

An alternative for editing Registry is you can use following codes to automate the process without browsing through registry –

To Enable “Verbose Status Message” copy following code in notepad and save the files as “enableVerbose.reg”

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionPoliciesSystem]
“verbosestatus”=dword:00000001

To Disable “Verbose Status Message” copy following code in notepad and save the files as “disableVerbose.reg”

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionPoliciesSystem]
“ConsentPromptBehaviorAdmin”=-

Now whenever you want to disable or enable functionality double click on desired function file, you will get a prompt asking “Are you sure you want to add the information in C:………..reg to the registry? ”

Click Yes , and you will get a confirmation message in next step, and you are done.

Hope you like this Tip, if yes leave a comment or bookmark us using bookmarking toolbar below.

Related Posts:

4 comments to Enable Verbose – Show Detailed Information While Windows Start

  • DodgyGeeza

    Warning to users of these scripts!! The first one does in fact enabel verbose logging on startup\shutdonwn\login\logoff, but the second script will actual disable UAC (User Account Control) which is one of the security features built into Vista.

  • Sam Samson

    Presumably to disable the verbose logging you should actually paste the following into notepad:

    Windows Registry Editor Version 5.00

    [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System]
    “verbosestatus”=dword:00000000

    and save it as “disableVerbose.reg”.

  • Himaloy

    thanks for it,
    but instead of [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System]
    “ConsentPromptBehaviorAdmin”=- should we do [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System]
    “verbosestatus”=dword:00000000
    i am a lil bit confused

    • admin

      Both of them will do the same thing….

      Either you delete the key or You change the value form 1 to 0 … the effect will remain same…

Leave a Reply