希望建置一個用於部署專案 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
我正在嘗試使用此處的 Office 部署工具方法複製標準安裝。唯一的問題是讓論證可讀"/configure c:\windows\ccmcache\2\ProjectPro2019_32.xml"
資料夾ccmcache
可以是任何東西,無論 MECM 決定要創建什麼,這就是我想使用該變數的原因。無論我嘗試什麼,我都無法獲得 powershell 的正確格式來讀取參數清單中的檔案路徑。