Nerwin Posted November 25, 2005 Posted November 25, 2005 Hey guys, How do i change the Registration name?See Picture Below:
BrandonS_Mil Posted November 25, 2005 Posted November 25, 2005 \\HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\WINDOWS NT\CURRENTVERSION
cluberti Posted November 25, 2005 Posted November 25, 2005 (edited) This can be done with some simple vb script:Const HKEY_LOCAL_MACHINE = &H80000002strComputer = "."Set objReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & _strComputer & "\root\default:StdRegProv")strKeyPath = "SOFTWARE\Microsoft\Windows NT\CurrentVersion"strEntryName1 = "RegisteredOwner"strEntryName2 = "RegisteredOrganization"strValue1 = "User"strValue2 = "Organization"objReg.SetStringValue HKEY_LOCAL_MACHINE,strKeyPath,strEntryName1,strValue1objReg.SetStringValue HKEY_LOCAL_MACHINE,strKeyPath,strEntryName2,strValue2 Edited November 25, 2005 by cluberti
gunsmokingman Posted November 25, 2005 Posted November 25, 2005 This is a hta that changes the user informationChange User Info
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now