Questions tagged [remote-registry]

57 questions
0
votes
1 answer

Remote Powershell to retrieve specific registry value from lots of servers

I have the following.. $output = @() $servers =Get-Content "C:\Windows\System32\List3.txt" foreach ($server in $servers) { trap [Exception] {continue} Import-Module PSRemoteRegistry $key="SOFTWARE\Microsoft\'Microsoft…
0
votes
1 answer

access denied when reading remote registry on the windows domain with _winreg in Python

I have domain administrator access to the remote computer that I'm trying to read registry on with the following code: import _winreg rem_reg = _winreg.ConnectRegistry(r"\\REMOTECOMPUTER", _winreg.HKEY_LOCAL_MACHINE) regKey =…
Onedot618
  • 273
  • 2
  • 13
0
votes
1 answer

Instantiating ServiceController takes sometimes too much time

i am creating an instance of ServiceController using a remote/local machine name and the name of the service. When I type sth. like stackoverflow.com as machine name the contructor blocks for a long time and returns an exception. Example: string…
mrbamboo
  • 1
  • 1
0
votes
1 answer

How to connect to the services and registry from a another computer via batch file

I would like to run a batch file that could open the services window and allows me to connect to another computer in order to restart a service on a remote machine. And a different batch file to remote a network registry located in the same…
Cedric
  • 9
  • 5
0
votes
1 answer

What is the 2014 way to centrally deploy agents

I'm getting requests from 'the Field' to make my agent deployment 'easier' but I'm at a loss as to how. Right now, I provide a user Interface to install and configure the agents. To deploy the agents, I relied on older Windows technologies, here…
Iunknown
  • 347
  • 1
  • 2
  • 16
0
votes
1 answer

PowerShell fetch certificates via Remote Registry

$Srv ='10.101.22.82' #remote server $key = "SOFTWARE\\Microsoft\\SystemCertificates\\MY\\Certificates" $type = [Microsoft.Win32.RegistryHive]::LocalMachine $regKey = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey($type, $Srv) $regKey =…
jharkhand
  • 1
  • 2
0
votes
1 answer

The worker processcalls OpenSubKey but returns null by accessing Remote Registry service

My web server is deployed in IIS 6. The web server starts the Remote Registry service in the remote machine successfully by creating a process to run some remote operation commands. This first line runs successfully. But the second line returns…
Cary
  • 372
  • 1
  • 5
  • 14
0
votes
2 answers

Create a remote private registry

We are fairly new to docker but have been able to install docker on CentOS 6.4, created images, generated containers, and even created a private local registry. Our question is in regards to the local registry. Well... actually... regarding a remote…
0
votes
1 answer

c# I need ManagementBaseObject to return an array of registry

Im using Management class that i don't really know about, just to read remote registry : string regKeyToGet = @"SOFTWARE\ODBC\ODBC.INI\ODBC Data Sources"; string keyToRead = "Description"; ConnectionOptions oConn = new…
pharaon450
  • 493
  • 3
  • 9
  • 21
0
votes
1 answer

in c#, how can i acces on remote registry with a specific user?

Here is the code that i use to reach for remote registry : private void getAllOdbc(string pc) { RegistryKey regKey; regKey = RegistryKey.OpenRemoteBaseKey(RegistryHive.CurrentUser, pc.ToString(),…
0
votes
0 answers

Can I access a remote registry key without administrative access on the remote computer?

I am writing an application in C# (.NET 4) to run on Windows 7. The application needs to access the registry on a remote computer (also running Windows 7) and modify a specific key. The application works fine if it impersonates a local administrator…
Shannon Wagner
  • 361
  • 7
  • 25
-1
votes
4 answers

Timer to skip to connect to next computer in for each loop while connecting remotely using RegistryKey.OpenRemoteBaseKey

I built a tool (with Visual Studio 2015 Express - Visual Basic) that will check the mcafee dat version and date from the registry on computers input either manually, in a text file, or selected from active directory. The tool works it successfully…
1 2 3
4