
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-24-2013 04:32 PM
Well this is how I do it...
download startreg.exe from admin arsenal
put all files into action folder...
download startreg.exe from admin arsenal
put all files into action folder...
Labels:
- Labels:
-
Archive
8 REPLIES 8

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-25-2014 06:37 PM
Thank you Tron....:)

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-05-2014 07:27 PM

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-05-2014 07:25 PM
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!
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!

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-30-2014 09:54 PM
Thank you so much for sharing this. You don't know the amount of stress you have just saved me. Much appreciated.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-22-2014 05:19 PM
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
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

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-24-2014 04:47 PM
Hmmm.... Having issues... Nothing happens... anyone have any ideas?
I get promped for an elevated user to Run as, but then nothing.
{actionpath}ShellRunAs startreg.exe {computer}
I get promped for an elevated user to Run as, but then nothing.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-23-2014 09:46 PM
Thanks, this worked great

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-21-2013 02:37 AM
Now that is awesome! I have been trying to get remote registry to work for a long time. Thanks for sharing this!
