Autodesk recently released a high CVE 4/25/2023 for their new Autodesk installer, so I thought it would be a good idea to share how to deploy any Autodesk Products in the Enterprise. I’ve noticed many people are having issues on Twitter and Autodesk doesn’t have any supported documentation on the topic.
Navigate to the Autodesk Management Portal and select Products and Services – Custom Install – Create New. Select your license type Autodesk ID / Network. We use Network, because all our devices have line of sight to the license server via VPN. Select Product and Version in case you for some reason doesn’t want the latest version. Be aware that the new Autodesk Installer only goes back to 2022 before that you’ll need to use the old deployment methodology.
We are deploying globally, so we have a license server in each continent. For that reason, we use a DNS alias for the license server and include that in the name of the package. So, if the license server is to be changed, we can easily update the alias, and everything will work as expect.
Finally agree to the license terms and download the installer.
To be able to download the media, extract it and find all the required information for the detection rules(s) we run the installer on a Windows Sandbox VM. The extracted media will be located in C:\Autodesk\{GUI}\image and should be copied to your Media and PKG folder (if you use my Automation script). Below is an example Config.xml file. Make sure to grab the –installer_version from .\odisver.xml.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
<Application> <Manufacturer>Autodesk</Manufacturer> <ProductName>AutoCAD 2023 - US</ProductName> <ProductVersion>24.2.172.0</ProductVersion> <ProductCode></ProductCode> <Description>AutoCAD is a commercial computer-aided design and drafting software application. Developed and marketed by Autodesk, AutoCAD was first released in December 1982 as a desktop app running on microcomputers with internal graphics controllers.</Description> <Installer>Installer</Installer> <InstallerType>exe</InstallerType> <Install>-i deploy --offline_mode -q -o ".\Collection.xml" --installer_version "1.39.0.216"</Install> <Path></Path> <Uninstaller></Uninstaller> <Uninstall></Uninstall> <UninstallerPath>C:\Program Files\Autodesk\AdODIS\V1\installer.exe -i uninstall --trigger_point system -m C:\ProgramData\Autodesk\ODIS\metadata\{73A78CE1-E03A-3415-826E-91A699E39B17}\bundleManifest.xml -x C:\ProgramData\Autodesk\ODIS\metadata\{73A78CE1-E03A-3415-826E-91A699E39B17}\SetupRes\manifest.xsd --extension_manifest C:\ProgramData\Autodesk\ODIS\metadata\{73A78CE1-E03A-3415-826E-91A699E39B17}\setup_ext.xml --extension_manifest_xsd C:\ProgramData\Autodesk\ODIS\metadata\{73A78CE1-E03A-3415-826E-91A699E39B17}\SetupRes\manifest_ext.xsd -o C:\ProgramData\Autodesk\ODIS\metadata\{73A78CE1-E03A-3415-826E-91A699E39B17}\deploymentCollection.xml</UninstallerPath> <DetectionRuleRegistry>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{73A78CE1-E03A-3415-826E-91A699E39B17}</DetectionRuleRegistry> <DetectionRuleValue>DisplayVersion</DetectionRuleValue> <DetectionRuleVersion>24.2.172.0</DetectionRuleVersion> <DetectionFile>acad.exe</DetectionFile> <DetectionPath>C:\Program Files\Autodesk\AutoCAD 2023</DetectionPath> <SCCM>False</SCCM> <Intune>True</Intune> <Categories></Categories> <Group>All Users</Group> <RequiredGroup>All Devices</RequiredGroup> <PilotGroup></PilotGroup> <Owner>NGUYEVL</Owner> <ID>100454</ID> </Application> |