twinnis Posted February 21, 2006 Posted February 21, 2006 Hi. The command that send registry changes to remote computers works fine, but is it possible to implement a variable for computername?` Something like this only to describe what I want. Because this script dont work. Dim &Computer &Computer = Inputbox("Type remote computername", "Computername", "") RegWrite(\\&Computer\"HKEY_LOCAL_MACHINE\SOFTWARE", "TestKey", "REG_SZ", "Hello this is a test") /Twinnis
Dirk Diggler Posted February 21, 2006 Posted February 21, 2006 try thisDim $Computer$Computer = Inputbox("Type remote computername", "Computername", "")RegWrite("\\" & $Computer & "\HKEY_LOCAL_MACHINE\SOFTWARE", "TestKey", "REG_SZ", "Hello this is a test")
Skizz Posted March 8, 2006 Posted March 8, 2006 What if this doesn't work? I get the message box, but it never goes and connects to the registry. I really need something that can remotly connect to HKCU hive but I don't know if it can be done. Thanks for all your help! This board is great!
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