问题描述
问候,
我尝试使用powershell远程安装visio(2013)。
I am try to use powershell to install visio (2013) remotely.
我使用了Powershell 将所有安装媒体复制到目标计算机的c:\ temp。我有TARGET机器的本地管理员RIGHTS。
I used Powershell copy all installation media to the Target machine's c:\temp. I have the TARGET machine's local administrator RIGHTS.
然后我使用:
$ InstallS = " cmd.exe / c C:\ temp \Install.bat"
$InstallS="cmd.exe /c C:\temp\Install.bat"
( [ WMICLASS ] " \\ $ TARGETmachine \ROOT \CIMV2:Win32_Process" ) 。 创建( $ InstallS )
([WMICLASS]"\\$TARGETmachine\ROOT\CIMV2:Win32_Process").Create($InstallS)
WMICLASS创建的一个,我可以看到setup.exe cmd.exe conhost.exe在TARGET机器的TasK管理器中运行,但是什么都没有,我甚至等了一个多小时。仍然没有发生任何事情
one the WMICLASS created, I can see setup.exe cmd.exe conhost.exe are running in TARGET machine's TasK manager, but do nothing, I even waited over one hour. still nothing happened
可能出现什么问题?
谢谢
userausera
userausera
顺便说一句,如果我从TARGET机器手动运行命令(c:\ temp \ install.bat),我可以安装visio而不会出现任何问题
by the way, if I manual run the command (c:\temp\install.bat) from TARGET machine, I can install visio WITHOUT any issues
c:\ temp \ install.bat的内容
Content of c:\temp\install.bat
c:\setup.exe / config
\\VisioServer \ 32bit \vispro.ww\config.xml
vispro.ww\config.xml的内容,允许沉默安装
content of vispro.ww\config.xml, allow the silence install
推荐答案
这篇关于Powershell远程安装visio的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!