Archive for the ‘ All ’ Category

Windows Auto Login

Copy the below text into a .reg file and edit as required.

This works on a std PC and a Domained Machine


Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
"DisableCAD"=dword:00000001
"AutoAdminLogon"="1"
"ForceAutoLogon"="1"
"DefaultPassword"="PASSWORD"
"DefaultDomainName"="DOMAIN"
"DefaultUserName"="USERNAME"

Print Friendly, PDF & Email

Check Registry Settings

Paste the following text into a .vbs file and edit as required.

The code allows you to check registry settings


On Error Resume Next

sResults = ""

Set oWShell = CreateObject("Wscript.Shell")
Call GetAppVersion("Internet Explorer", "HKLM\SOFTWARE\Microsoft\Internet Explorer\Version")
Call  GetAppVersion("Java",  "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{26A24AE4-039D-4CA4-87B4-2F83216016FF}\DisplayVersion")

msgbox sResults

Set oWShell = Nothing

Sub GetAppVersion(sApplication, sRegPath)
On Error Resume Next

sTemp = oWShell.RegRead(sRegPath)
If Err.Number <> 0 Then
sResults = sResults & "Version not found for " & sApplication & "." & vblf
Err.Clear
Else
sResults = sResults & sApplication & " Version: " & sTemp & vblf
End If
End Sub

Print Friendly, PDF & Email

Windows 7 GodMode

Windows Vista/7 God mode is a list of every config available(Windows)

  1. Create a new folder
  2. Rename the folder
    GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}
  3. The icon will change and your done.
Print Friendly, PDF & Email