Hi everyone. Now that Autodesk has moved to a new method of creating custom installers for their products my older “Deploying AutoDesk AutoCAD 2019 with Intune” article needed some updating.
Below you’ll find the instructions to deploy any Autodesk application using Microsoft Intune and Endpoint Manager. I’ll be using AutoCAD 2023 in my examples, but the process should be similar for any Autodesk product that appears on the Custom Install screen.
In order to create a custom installer you’ll need to perform some customization steps through the Autodesk website, some in Windows, and finally some in Endpoint Manager.
Create the Custom Installation Package
Log into the Audodesk management site at: https://manage.autodesk.com/products/deployments
Click Custom Install
Click Create new
Under License Type choose Serial Number
Select the product you are looking to package
Click Next
Next to Package name, I’m going to use AutoCAD2023
You can use whatever you’d like, but choosing that will make sure your files look just like mine.
You can only create a deployment to a network share. Since we’re using Intune, this isn’t relevant, so we’ll pick the hidden C: drive share to specify your local computer. Choose \\localhost\c$\users\[your username]\Desktop\autocad .
You can uncheck the “Install Autodesk desktop app” if you won’t be using it.
Click Download
Run the downloaded file. This will create a folder on your desktop called autocad .
You may see messages like the below when installing. You can ignore them and click Continue.
Package the Installer
If you haven’t already, download a copy of the Microsoft Win32 Content Prep Tool to your Downloads folder from https://github.com/Microsoft/Microsoft-Win32-Content-Prep-Tool
Open Windows Terminal or PowerShell. Change directory into the directory just above the autocad folder you create for the network installation.
For me that’s:
cd ~/Desktop
Tell the Intune prep tool to create a package from the autocad directory, use the Installer.exe located in the image folder, and save the package to your current directory:
~/Downloads/intunewinapputil.exe -c .\autocad\ -s image\Installer.exe -o .
The package will be named Installer.intunewin . Since that’s not very helpful, rename it to something that is.
mv Installer.intunewin autocad2023.intunewin
Create & Deploy in Intune
Log in to Intune device management at: https://endpoint.microsoft.com
Choose Apps->All Apps
Click the Add Button
Choose the App Type “Windows app (Win32) then click Select at the bottom of the screen.
Choose the autocad2023.intunewin file you created.
Open the autocad folder on your desktop.
Right click on AutoCAD2023.bat and click Edit
Under the line
rem ========== Install the deployment silently ==========
Copy your installer version number.
Return to Endpoint Manager.
On the Program step change the install command to the following (making sure to use the version of the installer copied in the previous step):
image\Installer.exe -i deploy --offline_mode -q -o "image\Collection.xml" --installer_version "1.32.0.7"
For the uninstaller, this is a bit of a kludge since it only uninstalls the main component, not the rest. For me, this is sufficient.
The IdentifyingNumber seems to be the same regardless of version number, but to be sure, on a machine with AutoCAD 2023 installed, run the following in PowerShell.
Get-WmiObject -Class Win32_Product | where name -eq "AutoCAD 2023 - English"
Make the uninstall command like mine below, but making sure to use the IdentifyingNumber that you got above.
msiexec /uninstall
{28B89EEF-6101-0409-2102-CF3F3A09B77D}
Choose 64bit Windows 10 under the Requirements
Under Detection Rules choose “Manually configure detection rules”
Click + Add
Choose MSI for rule type and enter the same identifier as above: {28B89EEF-6101-0409-2102-CF3F3A09B77D}
No Dependencies are needed.
Finally, assign it to whatever device groups you need. Devices in those groups will automatically download and install AutoCAD 2023. Alternatively, you can assign it to user groups and those users can install AutoCAD from the Company Portal app.
Thanks again for all of you that patiently waited for this while we got our licensing sorted with AutoDesk and the amazing staff there who got it all working for us.
Please feel free to leave me comments below and I’ll reply as soon as I can.
-Adam