Autodesk have changed the process for 2022 products and I am a bit stuck working out how to silently deploy them to our office PCs.
The old method had you download the products installer, then use that to create a deployment. Now you do this straight from the Autodesk management page and it seems to be a slightly different format. The deployment package creates a .bat file to get you started with deployment commands and contains this information:
rem ========== Install the deployment with basic UI ==========
"\\172.20.21.151\gfadata$\Practice Admin\__GFA IT\PackageShare\Installers\AutoCAD 2022\image\Installer.exe" -i deploy --offline_mode --ui_mode basic -o "\\172.20.21.151\gfadata$\Practice Admin\__GFA IT\PackageShare\Installers\AutoCAD 2022\image\Collection.xml" --installer_version "1.20.0.44"
rem ========== Install the deployment silently ==========
rem "\\172.20.21.151\gfadata$\Practice Admin\__GFA IT\PackageShare\Installers\AutoCAD 2022\image\Installer.exe" -i deploy --offline_mode -q -o "\\172.20.21.151\gfadata$\Practice Admin\__GFA IT\PackageShare\Installers\AutoCAD 2022\image\Collection.xml" --installer_version "1.20.0.44"
rem ========== Uninstall the individual product ==========
rem ========== Uninstall Autodesk AutoCAD 2022 - English
rem "\\172.20.21.151\gfadata$\Practice Admin\__GFA IT\PackageShare\Installers\AutoCAD 2022\image\Installer.exe" -i uninstall -q --manifest "\\172.20.21.151\gfadata$\Practice Admin\__GFA IT\PackageShare\Installers\AutoCAD 2022\image\ACD_2022_en-US\setup.xml" --extension_manifest "\\172.20.21.151\gfadata$\Practice Admin\__GFA IT\PackageShare\Installers\AutoCAD 2022\image\ACD_2022_en-US\setup_ext.xml"
Previously with 2020 editions I could run the following command successfully:
"\\CDF-GFA-DCF-02\gfadata$\Practice Admin\__GFA IT\PackageShare\Installers\AutoCAD 2020\Img\Setup.exe" /W /qb /I \\CDF-GFA-DCF-02\gfadata$\Practice Admin\__GFA IT\PackageShare\Installers\AutoCAD 2020\Img\AutoCAD 2020.ini /language en-us
It's a bit beyond my knowledge so any help greatly appreciated.