Would like to ask if Zenon 11.0.1.45862 can be uploaded from Microsoft Configuration. I've packaged the application using Powershell Script but it seems that might script is not working.
$exePath = "$dirFiles\Setup\SoftwarePlatform.exe"
$args = "-s CDP_WORKLOAD=`"WlEngineeringStudio`""
Start-Process -FilePath $exePath -ArgumentList $args -NoNewWindow
I've also tried the basic scripting but no luck so far in making it work:
Execute-Process -Path "SoftwarePlatform.exe CDP_WORKLOAD=WlEngineeringStudio" -Parameters '/silent'
Execute-Process -Path '"SoftwarePlatform.exe /silent CDP_WORKLOAD="WlEngineeringStudio"'