Exactly the same here: All Installation failed with severe error - looks like it worked before but now not.
Hi Dely,
I’ve had a similar issue when deploying Freshservice Discovery Agent 3.5.0 using Intune. Since the new version requires a token for installation, you’ll need to modify your PowerShell script to include it as part of the silent installation.
Here’s an example of a command that worked for me:
powershell
Copy code
msiexec /i "FreshserviceDiscoveryAgent.msi" TOKEN=YourTokenHere /quiet /norestart
Make sure to replace YourTokenHere
with your actual token. If the token is correct, this should install the agent silently.
Also, ensure that the MSI and script are properly packaged and uploaded to Intune. Double-check that the token doesn't contain any extra spaces or invalid characters, as this could cause installation issues.
Let me know if this helps or if you're running into any specific errors!
actually it worked by me using this script.
Start-Process -FilePath ".\fs-windows-agent-3.5.0.msi" -ArgumentList "/quiet", "REGISTRATIONTOKEN=YourTokenHere"