Questions tagged [remote-registry]

57 questions
44
votes
2 answers

How to call a method with output parameters in PowerShell?

I'm working on a script to get started in PowerShell. I'm trying to convert a working VBScript script that enumerates mapped network drives on a remote Windows computer. One of the tasks is to use remote WMI to read the registry and find the process…
spoulson
  • 21,335
  • 15
  • 77
  • 102
3
votes
3 answers

programmatically determine Oracle Home installed version?

I need to determine from a program what version of Oracle is installed in each of the Oracle Homes on a server. As there may not be any databases created in the Home yet, I need to be able to do this outside of the database (i.e., without…
RBarryYoung
  • 55,398
  • 14
  • 96
  • 137
3
votes
1 answer

REG QUERY Key with a space in the name

I am new to linux. Please help !! I am trying to read the windows registry key entry on a remote (windows) system using the below rsh command which has a space in the folder name. Kindly let me know how to resolve this. rsh <"remote_ip"> REG QUERY…
Rajesh
  • 31
  • 1
  • 3
3
votes
2 answers

Issue with RegConnectRegistry connecting to 64 bit machines

I'm seeing a weird thing when connecting to the performance registry on 64 bit editions of Windows. The whole program stalls and callstacks becomes unreadable. After a long timeout, the connection attempts aborts and everything goes back to…
ROAR
  • 1,304
  • 1
  • 11
  • 28
2
votes
2 answers

Why I get different result when running from CMD, than running from web service?

Application pool for my web service has Identity set to "myDomain\myUser". When I run PsList.exe from this web service I get following error : Processor performance object not found on x.x.x.x Try running Exctrlst from microsoft.com to repair…
Primoz
  • 4,079
  • 17
  • 56
  • 67
2
votes
1 answer

Powershell throws terminating error on reg import but operation completes successfully

Both this stack post as well as this one looked similar but I couldn't find my solution there. I'm having an issue understanding the difference between the behaviour in reg export versus reg import. When running reg export inside powershell, it…
Tanaka Saito
  • 943
  • 1
  • 17
  • 40
2
votes
1 answer

LocateRegistry.createRegistry() doesn't keep application alive

I've rubberduck debugged every line of code along with multiple working examples but for some reason my java application just closes when I start an RMI server. I expect the java application to keep running because I have started a Registry and I…
Tvde1
  • 1,246
  • 3
  • 21
  • 41
2
votes
0 answers

Why does the handheld device ignore the "FileSyncPath" Registry key's value?

We don't want file syncing between our handheld device and the PC. The handheld device puts certain (SQL CE database) files in the \My Documents folder on the handheld. These are, in particular, the files we don't want synced to the PC. I first…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
2
votes
0 answers

"OpenRemoteBaseKey" with "2" argument(s): "Attempted to perform an unauthorized operation."

I am trying to access through PowerShell the registry of multiple remote servers (whose names are read from a text file) in order to gather information about SQL Server instances installed in a specific server. Here are some additional details: The…
Famela Canico
  • 31
  • 1
  • 4
2
votes
3 answers

How can I use PowerShell to make remote registry changes?

I have tested the following PowerShell registry settings and it sets them correctly. Could someone show me the way to do this for a remote computer? New-Item -itemType String…
user1890242
  • 69
  • 1
  • 10
  • 19
2
votes
2 answers

Read a single registry key value on a remote machine

I am having a very tough time achieving this one seemingly very simple goal... I have to gather the value of a single registry key on several machines for the sake of auditing whether the machines scanned need to be patched with newer versions of…
MadSc13ntist
  • 19,820
  • 8
  • 25
  • 19
2
votes
1 answer

Remote registry always null when different user

I am creating a c# windows form application that goes read registry on remote computers. RegistryKey regKey = RegistryKey .OpenRemoteBaseKey(RegistryHive.CurrentUser, pc, RegistryView.Registry64) …
pharaon450
  • 493
  • 3
  • 9
  • 21
1
vote
0 answers

how to build and deploy the webpack micro frontend module federation project in angular

Please guide with the steps how to deploy the webpack module micro frontend project from angular on production server. with the webpack.config.js routing and remote registry exposed to provide the third application URL to bind using cors.
1
vote
1 answer

Requested remote registry access is not allowed

Requested registry access is not allowed I want to access Remote Pc's Registry but it cant allow me to do so. Below is my code private static void CheckRemoteRegistry() { try { string serverName = "DESKTOP-2ME3g20M"; NetworkShare share =…
1
vote
1 answer

Take Ownership of Registry Subkey and Delete It via SYSTEM Account

I am deploying an update via WSUS to remove broken registry keys from Windows 10 systems running 1703 and 1709. The PowerShell code needs to open two registry keys, take ownership, set ownership to users, then delete them. The code below works when…
Tim P.
  • 11
  • 1
  • 4
1
2 3 4