I am a bit of a scripting newbie in Immy and have been trying to figure out how to silently deploy the Autodesk Design Review application in Immy but have been having a difficult time. First, I found that the document from Autodesk on how to deploy the application silently didn’t have the correct Arguments for the latest version. I was able to find the updated information in their community forum and wrote a script which works on my local computer but when I import the ZIP file with the installer into Immy and attempt to deploy it it fails.
I think my main issue is a lack of understanding where Immy sends and extracts the package to? The last version of the script I tried used the path the ZIP file was listed at in the Immy logs but I’m guessing that isn’t correct:
Define the path to the installer file
$InstallerFile = “C:\Windows\Temp\ImmyBot\6c785c38-8c65-2427-487e-8a7cd1dc8b54.zip”
Define the arguments for the installation command
$Arguments = “–silent --noupdate /language en-us”
Execute the installation command using Start-Process
Start-Process -FilePath $InstallerFile -ArgumentList $Arguments -Wait
Any help would be super appreciated. Thanks in advance.