How to deploy Autodesk applications to Microsoft Intune using Pckgr

Today’s blog post tackles a question we’ve received from many customers over the past few months:

“Can I deploy Autodesk apps using Pckgr?”

Until recently, I wasn’t sure. Autodesk applications are known for being large and complex, and traditionally difficult to automate. But after enough requests, I decided to dive in and test whether our Custom Applications pipeline could actually handle them.

Turns out it can! Here’s how I made it work, step by step.

The Blockers

Before we could even think about deploying Autodesk through Pckgr, I had to overcome several hurdles:

  1. Intune Timeouts
    • Even if we managed to upload a valid package, it had to survive a full Intune deployment, which can timeout if the install takes too long.
  2. Offline Installer Access
    • Many customers were uploading the online installer, which just pulls the rest of the app from Autodesk’s servers at runtime which won’t work. We need the full offline package.
  3. Installer Size
    • Pckgr’s Custom App uploader has a 5GB file limit. Most Autodesk packages? They range from 6–8GB.
  4. Installer Complexity
    • The command-line switches and structure of Autodesk deployments aren’t exactly intuitive.

The plan of Attack

To begin, I spoke with several customers and did my own digging into Autodesk’s deployment options. Turns out, you can access the offline installers by signing up for a free trial.

Once signed in, you can generate a custom deployment for your app. For this test, I chose the base Autodesk application.

  1. Start by selecting “Custom Install” from your Autodesk account.
    Custom Install from Autodesk
  2. Set the deployment path (I used C:\Temp\Autodesk).
  3. Download the deployment executable.
Autodesk Custom Install Template
Autodesk Custom Install Template

When you run this executable, Autodesk creates the full offline deployment package in the folder you specified. Once complete, navigate to that path and you’ll see the image folder with everything needed for deployment.

Autodesk executable creating installer
Autodesk executable creating installer

Zipping the Installer

The key step here is to:

  • Open the image folder
  • Select all files, right-click on Installer.exe, and choose Send to → Compressed (zipped) folder

This zip file will likely exceed 5GB, so we can’t use Pckgr’s native uploader.

How to ZIP the files correctly

Hosting the ZIP

To work around the size limit, I uploaded the zip to my own Azure Blob Storage container:

  1. Create a container in Azure Storage Explorer
  2. Upload the ZIP file
  3. Generate a shared access signature (SAS) URL

That URL will act as our download link when configuring the Custom Application in Pckgr.

Uploading ZIP folder to Azure Blob
Uploading ZIP folder to Azure Blob

Verifying the App with Pckgr

Now with the hosted installer ready:

  1. Go to Custom Applications in Pckgr
  2. Instead of uploading a file, paste your Azure Blob SAS URL
  3. Enter the main installer filename as Installer.exe
  4. Open (don’t run) the .bat file in your Autodesk image folder, this contains the correct install command and version number
The .bat file that comes with the Autodesk installer
The .bat file that comes with the Autodesk installer

Here’s the command I used (replace the version with the one from your .bat):

-i deploy --offline_mode -q -o ".\Collection.xml" --installer_version "2.19.0.123"
The Pckgr Custom Application configuration
The Pckgr Custom Application configuration

Heads up: The testing phase can take up to 15 minutes due to the size. Go grab a coffee

Once testing passes, you can add your app logo and save it to your library.

Verification Completed Successfully in Pckgr
Verification Completed Successfully in Pckgr

Deploying to Intune

Now that the app lives in your Pckgr library, deploying it to Intune is simple, just like any other Custom App:

  • Click Deploy to Intune
  • Wait while Pckgr packages the app into a .intunewin, uploads it to Intune, and configures everything

Due to the file size, this process can take up to 30 minutes. Be patient and be sure it’s working.

Deploying Autodesk application to Intune via Pckgr
Deploying Autodesk application to Intune via Pckgr

Testing the Finished Product

Once your Autodesk application is in Intune, it’s time to test deployment on a real device.

Here’s what we did (you can follow a similar process on any Windows 10 or 11 device enrolled in your tenant):

  1. Assign the application to a test device via Intune (user or device group)
  2. Wait for Intune to sync and start installation
  3. Monitor installation progress through the Company Portal or Intune console

Given the size of Autodesk installers, the deployment takes a while, but in our testing, the app installed silently and completed successfully without any user interaction.

Keep in mind: the Custom Applications feature is only available on the Pckgr Business Plan, which is designed for teams managing more advanced deployment scenarios.

If you’re not on the Business Plan yet you can sign up for a 30-day free trial and test it out for yourself.

Visit intunepckgr.com to get started.

Leave a comment