cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
EB
Engaged Sweeper III
Well this is how I do it...

download startreg.exe from admin arsenal

put all files into action folder...
8 REPLIES 8
EB
Engaged Sweeper III
Thank you Tron....:)
Tron
Engaged Sweeper
Please see attached compiled 64 bit executable.
Tron
Engaged Sweeper
I found startreg.exe does not open up the full registry when connecting to a 64 bit machine as it opens regedit up in 32 bit mode. I found AutoIT code provided by Sticky on the lansweeper forum posted from 2009 and converted it to 64 bit which now runs the process as 64 bit.

Please see below Sticky’s code compiled to a 64 bit executable.

http://www.lansweeper.com/forum/yaf_postst1395_Connect-to-remote-registry-tool.aspx
;
; AutoIt Version: 3.3
; Language: English
; Platform: Win2000/XP/Vista/2008
; Author: Michael Ward
;
; Script Function:
; Connects to a remote registry using regedit
;

if ($CmdLine[0] > 0) Then
$hostname = $CmdLine[1]
Else
MsgBox(48,"Error","No Hostname Specified",60)
Exit(1)
EndIf

; Run Regedit
Run("regedit.exe")


; Wait for the regedit to become active
WinWaitActive("Registry Editor")

; Connect to the remote registry
Send("!f")
Send("c")
WinWaitActive("Select Computer")
Send($hostname)
Send("{ENTER}")

; Finished!
Paul808
Engaged Sweeper
Thank you so much for sharing this. You don't know the amount of stress you have just saved me. Much appreciated.
EB
Engaged Sweeper III
IF you get prompted it means you don't have the privileges for remote registry on that machine....

new download spot I guess....moved it on us...so I am adding two sites this time...

http://www.adminarsenal.com/Portals/72023/utilities/startreg.exe

http://www.adminarsenal.com/admin-arsenal-blog/bid/50061/Run-your-favorite-IT-utilities-commands-within-AA-Console








dteague
Engaged Sweeper III
Hmmm.... Having issues... Nothing happens... anyone have any ideas?

{actionpath}ShellRunAs startreg.exe {computer}


I get promped for an elevated user to Run as, but then nothing.
mwrobo09
Champion Sweeper
Thanks, this worked great
Gregoreo_Maximo
Engaged Sweeper
Now that is awesome! I have been trying to get remote registry to work for a long time. Thanks for sharing this!