Looking to build a small package for deploying Project 64 bit click to run version. I want to use MECM
Install files get copied to somewhere in 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
I am trying to replicate a standard install using the office deployment tool method here. the only problem is getting the argument to read "/configure c:\windows\ccmcache\2\ProjectPro2019_32.xml"
The folder in ccmcache
could be anything, whatever MECM decides to create, which is why I want to use the variable. no matter what I try I can't get the formatting right for powershell to read what the file path will be in the argument list.