在 powerhsell 中传递变量参数列表时遇到问题

在 powerhsell 中传递变量参数列表时遇到问题

想要构建一个小包来部署 Project 64 位即点即用版本。我想使用 MECM

安装文件被复制到某个地方c:\windows\ccmcache\*

$fire_off_location = Get-Location  #I use this to get current location of where the install files are

Start-Process -FilePath $fire_off_location\setup.exe -ArgumentList "/configure $fire_off_location\ProjectPro2019_32.xml" -Wait -PassThru

我正在尝试使用办公室部署工具方法复制标准安装。唯一的问题是获取读取的参数"/configure c:\windows\ccmcache\2\ProjectPro2019_32.xml"

文件夹中的内容ccmcache可以是任何内容,无论 MECM 决定创建什么,这就是我想要使用变量的原因。无论我尝试什么,我都无法正确设置格式以便 powershell 读取参数列表中的文件路径。

相关内容