Jump to content

Recommended Posts

Posted

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

Posted

try this

Dim $Computer

$Computer = Inputbox("Type remote computername", "Computername", "")

RegWrite("\\" & $Computer & "\HKEY_LOCAL_MACHINE\SOFTWARE", "TestKey", "REG_SZ", "Hello this is a test")

  • 3 weeks later...
Posted

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!

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...