Hello,
I have deployed an optional Company Portal app in Intune (Greenshot)
We have some custom parameters set to have the install be silent and select the language as English using a modified .ini via a PowerShell script.
$Filename = "setup.exe"
Start-Process -FilePath $Filename -ArgumentList "/VERYSILENT /NORESTART"
Start-Sleep -Seconds 1.5
Copy-Item -Path "greenshot-defaults.ini" -Destination "$Env:ProgramFiles\Greenshot"
We are using a policy execution bypass for PowerShell as well


There are two issues with the install on the client side:
We get this message "This app is no longer detected on your device it may have been uninstalled or updated to a different version (Mind you we have been testing like crazy so the application has been on off the test group machines several times)
Main issue is after successful installation on client machine there is a push notification stating the installation failed.

The app has full functionality and is silent but we have these errors could anyone assist?
