Questions tagged [remote-registry]
57 questions
0
votes
1 answer
Accessing Remote Registry of Windows 7 and Server 2008 through C#
I've been searching for a way to access a Remote Registry of a computer in my Network ( no domain configured ) but failed several times.
Only way I can successfully get access is previously going to regedit and connect to it trought it ( which will…

Ima Geekah
- 13
- 1
- 3
0
votes
1 answer
Remote Registry
I know this has been talked about a few times about remote registry access, but I cannot find any good examples on how to implement this.
I did find http://www.codeproject.com/KB/cs/cpimpersonation1.aspx which seems to have code that will do what I…

Andy12
- 77
- 3
- 13
0
votes
1 answer
Get-ItemProperty for all properties of remote registry key when value name is unknown
Similar posts such as this one or this one explain how to get a remote registry key, but it assumes that you already know the name of the value that you are interested in. If you run
Get-ItemProperty "HKLM:\Software\MySoftware"
It will return all…

Tanaka Saito
- 943
- 1
- 17
- 40
0
votes
1 answer
OpenRemoteBaseKey doesn't work on remote Windows 10
I have a ps1 file that I run from my Java web application (on the intranet).
The ps1 file get the client printers.
It works OK on Windows 7 clients, but on Windows 10 clients it doesn't perform OpenRemoteBaseKey().
My Java command is:
String…

tamih
- 93
- 1
- 15
0
votes
0 answers
Finding and deleting specific keys and values through powershell
I'm new to powershell (and really scripting in general) and I've recently created a tool to search and delete malicious files on a remote host (I work in security ops) but I'm struggling to work out how to do the same with registry keys and registry…

RJK
- 35
- 1
- 5
0
votes
0 answers
Remote registry values. Return the string value
I am trying to return registry values from specific keys. For some reason I can not get the string value of a key. I can get the DWordValue no problem.
Can anyone tell me why the string value won't return?
The code:
function getRegistry(){
Param…

Blurr.P
- 35
- 1
- 10
0
votes
1 answer
Get installed software in other machines without enabling Remote registry
I need to get the installed program list of all machines in my LAN from a machine.
I can access the remote registry through the "RegistryKey.OpenRemoteBaseKey" option,
But I need to enable the remote registry service on all machines in my LAN. I…

Roshil K
- 2,583
- 28
- 38
0
votes
1 answer
Remote registry fails to read on deploy
I have a 3 node ESB cluster. Each node has its own mssql registry db. Additionally, there is a shared db for config and governance mount points.
I have a CAR which contains a proxy with a wspolicy. This car fails to deploy with a m says saying that…

Combined Resource
- 25
- 10
0
votes
2 answers
Trouble getting properties and object structured correctly
I am trying to create an object with properties identical to the code below. The following bit of code creates the $TempValueICM object with 2 added NoteProperties:
$TempValueICM = Invoke-Command -ComputerName $computer -ScriptBlock {
…

J.C.
- 143
- 1
- 8
0
votes
1 answer
Opening remote registry sub key
I have this script that remotely gets the value of a registry subkey:
$reg = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey'LocalMachine',$Computer)
$key = $reg.OpenSubKey('SOFTWARE\Wow6432Node\SomeVendor\SomeApp')
$key.getvalue('Value1')
There…

TOGEEK
- 711
- 4
- 15
- 34
0
votes
1 answer
Best practice to deploy wso2 esb policies
I have setup an ESB cluster using jdbc connections to ms sql databases for local and remotely mounted config and gov registries. 1x mgt and 2xworker
Our .car file contains some ws-security policy artifacts which go to config. When I deploy to mgt it…

Combined Resource
- 25
- 10
0
votes
1 answer
Powershell 2.0 how to get the values from remote registry "\..\WindowsUpdate\Auto Update\RebootRequired"
I am trying to query a registry path of a remote server:
"HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired"
This contains a list of all updates that are pending a reboot (REG_DWORD), and perhaps some dates of…

TOGEEK
- 711
- 4
- 15
- 34
0
votes
1 answer
How to start remote registry services on windows 10 from a remote machine using c#/vb
I am facing a problem on windows 10 remote registry services - it stops a short while (10-15minutes) after starting. My program needs to go the remote machines and read the registry. I have even tried setting it up on the group domain policy - which…

anil
- 598
- 1
- 6
- 20
0
votes
2 answers
Converting Error when calling OpenRemoteBaseKey
I am getting a converting error from powershell when I run my code. I get a "Cannot convert argument "0", with value: "The sid of whatever user is try", for OpenRemoteBasekey. Can anyone look at my code and see where I went wrong?
The script is…
0
votes
1 answer
loop remote registry check
I am attempting to check if machines in a list have Outlook 2010 standalone installed using a batch file, I can run the script if I hard code each check but I am after something that pulls from a file, this is what I have so far:
Important Info:
I…

Francis Sutherland
- 11
- 2