PowerShell 技能连载 - 远程读取配置表(第 2 部分)
在前一个例子中我们演示了使用早期的 DCOM 协议从远程读取另一台机器的注册表代码。
如果您可以使用 PowerShell 远程处理,情况变得更简单。您现在可以简单地编写在本机可运行的代码,然后将它“发射”到目标机器(支持多台):
1 | # adjust this to a remote computer of your choice |
通过使用 PowerShell 远程处理,您只需要确保 PowerShell 远程处理的先决条件都具备。您可以用这条命令(需要本地管理员特权):
1 | PS C:\> Enable-PSRemoting -SkipNetworkProfileCheck -Force |
PowerShell 技能连载 - 远程读取配置表(第 2 部分)
http://blog.vichamp.com/2018/08/21/reading-registry-remotely-part-2/