问题标签 [remote-registry]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
695 浏览

c# - 我可以在没有远程计算机上的管理访问权限的情况下访问远程注册表项吗?

我正在用 C# (.NET 4) 编写一个在 Windows 7 上运行的应用程序。该应用程序需要访问远程计算机(也运行 Windows 7)上的注册表并修改特定密钥。

如果应用程序在目标计算机上模拟本地管理员帐户,则它可以正常工作。但是是否可以在不以本地管理员身份运行的情况下执行此功能?我知道我可以设置键的注册表权限(用于本地访问) - 我不确定的部分是如何在没有管理员访问权限的情况下与注册表键建立远程连接。

0 投票
1 回答
1158 浏览

c# - 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 :

I would like to access to the remote registry with a specific user that has the permission to the remote computer.

When i launch this windows form application from my own computer, it works because i am already logged in with this specific user that has permission on the remote computer, but i will have to use this application on other computers that are not logged in with this specific user.

So i would like to insert in my code something that will tell my application to access the remote registry with this specific user, like this anyone can use my application without been logged with this specific user.

I already permitted the Remote Registry services on the remote computer.

0 投票
1 回答
537 浏览

c# - Remote registry always null when different user

I am creating a c# windows form application that goes read registry on remote computers.

When i run the application from USER1 it works because my remote computers are always logged in with USER1.

Now if i run it with USER2 my regKey is always equal to NULL, no matter what.

On my remote computers, in Component Services, i allowed the service : REMOTE REGISTRY.

Any ideas please ?

0 投票
0 回答
357 浏览

c# - 尝试模拟用户时出现 UnauthorizedException

我正在使用以下代码模拟某些操作:

当我以 User1 身份登录时,这些操作完美运行,当我以 user2 身份登录时,我得到一个我不明白的 UnauthorizedException,因为 user1 有权执行这些操作。

有任何想法吗 ?

0 投票
1 回答
3193 浏览

c# - c# 我需要 ManagementBaseObject 来返回一个注册表数组

我使用我不太了解的管理类,只是为了读取远程注册表:

此代码为我返回指定键的特定值,但我需要返回一个名称值数组,如下所示:

0 投票
0 回答
359 浏览

c# - 为每个用户获取 HKCU

我通过这样的代码获得远程注册表项:

我的问题:

  1. 如何从远程机器的注册表中获取用户名列表?
  2. 如何从远程机器的 HKEY_USERS 为每个用户获取他的 HKCU 注册表?

PS 许多我的用户都有漫游 Windows 配置文件。

0 投票
3 回答
2819 浏览

appfabric-cache - Windows Server AppFabric 1.1 - 无法从主机读取远程注册表项

我刚刚使用一台主机(本地计算机)安装并配置了 AppFabric 缓存集群。我使用 SQL 作为提供者。

当我使用管理员权限启动缓存管理 Windows PowerShell 时,出现以下错误,

当我打开 DCacheAdministration.log 时,它显示如下,

远程注册服务已启动。哪些帐户需要 regedit.exe 中的读取权限?我已经为 LOCAL SERVICE(因为远程注册服务使用它作为登录)和 NETWORK SERVICE(我用作缓存服务帐户)提供了权限。我是否必须授予任何其他权限才能使注册表项可访问?或者我需要检查的其他事项是什么?

请帮忙

0 投票
0 回答
134 浏览

ruby - 使用 Ruby 访问远程 Windows 注册表?

我在 Windows 环境中工作,并希望使用 Ruby 访问远程计算机上的注册表。我找不到这个或 C# 中使用的等效 Win32 调用的任何示例。这个事情谁有经验?这甚至可能吗?谢谢!

0 投票
3 回答
30751 浏览

powershell - 如何使用 PowerShell 进行远程注册表更改?

我已经测试了以下 PowerShell 注册表设置,并且设置正确。有人可以告诉我为远程计算机执行此操作的方法吗?

0 投票
0 回答
808 浏览

ruby - 如何使用 Ruby 从远程注册表中读取值

我有一个运行 Ruby 1.9.3 (MRI) 的小 Windows 应用程序,我需要它来查询远程服务器的远程注册表的“ComputerName”。我有检查本地注册表的代码,如下所示:

运行此代码会生成本地 ComputerName 注册表项的打印输出以及布尔值。

但是,我找不到使用 Ruby 和 win32-service gem(或任何其他 gem)从我拥有用户 ID 和密码的远程计算机读取 ComputerName 的方法。如何使用 Ruby 和 win32-service 或其他一些 gem,甚至其他一些命令来做到这一点?