在远程计算机中执行 gacutil 的方法

发布于 2024-10-11 02:59:39 字数 340 浏览 4 评论 0原文

有没有办法在给定机器的 IP 地址(或工作站名称)的情况下在特定(远程)机器上执行 gacutil?

有问题的计算机位于 Active Directory 域中。

运行脚本的用户可能在其本地或远程计算机上没有任何特殊权限。

某些情况下,将成为机器的管理员。

操作系统为Windows XP,远程机器为Win2008和Win2003。

任何编程语言都可以,但最好是脚本语言:

  • DOS 批处理文件(bat、cmd)
  • VBScript (WSH)
  • psexec
  • C#(对我来说最差的选择)

Is there a way to execute gacutil in to a particular (remote) machine given the IP address (or the workstation name) of the machine?

The machines in question are on an Active Directory Domain.

The user running the script probably won't have any special rights on either their local or the remote machine.

Some cases, will be administrator in machine.

Operating system is Windows XP , and remote machine Win2008 and Win2003.

Any programming language is fine but ideally scripting:

  • DOS Batch file (bat, cmd)
  • VBScript (WSH)
  • psexec
  • C# (worst option for me)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

欲拥i 2024-10-18 02:59:39

您尝试过远程 Gacutil 吗? http://remotegacutil.codeplex.com/

您始终可以使用 psexec:

copy %Proj_folder%\SomeDll.dll \\destinationHost\c$\Temp
psexec \\destinationHost gacutil -I c:\temp\SomeDll.dll

Have you tried Remote Gacutil? http://remotegacutil.codeplex.com/

You can always use psexec:

copy %Proj_folder%\SomeDll.dll \\destinationHost\c$\Temp
psexec \\destinationHost gacutil -I c:\temp\SomeDll.dll
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文