我正在编写一个脚本来在 Windows 上配置 SNMP。此脚本必须从 Centos 操作系统启动。
我对 Windows 脚本一窍不通,所以我在互联网上找到了一个 PSscript:
https://community.whatsupgold.com/library/powershellscripts/installandconfiguresnmpwithpowershell
我需要通过以下命令启动这个 PSscript:
winexe -U USER%PWD //IP "powershell -Command & {SCRIPT.PS1}"
我可以使用 Centos 操作系统上的 PSscript 来实现吗?(我不这么认为)
您知道从 Winexe 启动 PSscript 的确切形式吗?
感谢您的阅读,也许这对我有帮助=)
答案1
谢谢!如果有人需要的话我会回答:
winexe -U administrateur%$PWD //$IP "powershell -Command & {(c:\User\administrateur\powershell.ps1)}"
这将在远程服务器上启动 PSscript“powershell.ps1”。