We have a requirement for the mass deployment of Autodesk Mesh Mixer the software is publicly accessible
The installer as below
Autodesk_Meshmixer_v3p5_Win64.exe" $args = " /S"
The uninstaller can be removed silently
$process = "C:\Program Files\Autodesk\Meshmixer\Uninstall.exe"
$args = " /S"
Start-Process $process -ArgumentList $args -Wait