Deploying Autodesk Revit 2026 with Intune and Company Portal
Table of Contents
Introduction
This tutorial provides a comprehensive guide on deploying Autodesk Revit 2026 using Microsoft Intune and Company Portal. Whether you are an IT administrator or looking to streamline software management for your team, this step-by-step process will help you create a deployment package for Revit 2026, configure it, and distribute it efficiently across multiple devices.
Step 1: Create a Revit 2026 Deployment Package
To start the deployment process, you need to create a package that includes all necessary installation files for Revit 2026.
-
Download Revit 2026 Installation Files
- Obtain the installation files from the Autodesk website or your company’s software repository.
-
Prepare the Deployment Directory
- Create a directory structure for the deployment package.
- Suggested structure:
C:\Autodesk\Revit2026\
-
Copy Installation Files
- Use PowerShell to copy the installation files into the newly created directory.
- Run the following command:
Copy-Item -Path "Autodesk\*" -Destination "C:\Autodesk\" -Recurse -force
Step 2: Configure the Revit 2026 Deployment with Intune
Once your package is ready, the next step is to configure it for deployment using Microsoft Intune.
-
Access Microsoft Intune
- Log into the Microsoft Intune Admin Center.
-
Create a New Application
- Go to the "Apps" section and select "Add".
- Choose "Windows app (Win32)" from the options.
-
Upload the Deployment Package
- In the app package section, upload the Revit 2026 deployment package (the folder you created).
-
Configure App Information
- Fill in all necessary app information, such as:
- Name
- Description
- Publisher (Autodesk)
- Version
- Fill in all necessary app information, such as:
-
Set the Install Command
- Specify the install command for the deployment. Use the following command:
powershell.exe -ExecutionPolicy Bypass -File .\Revit2026install.ps1
- Specify the install command for the deployment. Use the following command:
-
Define the Install Script
- Create a PowerShell script named
Revit2026install.ps1
in the package folder:cmd.exe /c "C:\Autodesk\Revit2026\Setup.exe -q"
- Create a PowerShell script named
-
Configure Assignment
- Assign the application to the appropriate user or device groups within Intune for deployment.
Step 3: Monitor Deployment Status
After configuring the deployment, it's important to monitor its status to ensure it is successfully installed on the target devices.
-
Check Deployment Status in Intune
- Navigate to the "Monitor" section in Intune.
- Review the installation status and troubleshoot any issues if necessary.
-
Verify Installation on Target Devices
- On the user’s device, check if Revit 2026 is installed correctly.
- Look for any error messages or installation failures.
Conclusion
By following these steps, you can successfully deploy Autodesk Revit 2026 using Microsoft Intune. This process not only saves time but also ensures consistency in software versions across your organization. For further assistance, consider exploring additional resources on software deployment and IT management.