& Construction

Integrated BIM tools, including Revit, AutoCAD, and Civil 3D
& Manufacturing

Professional CAD/CAM tools built on Inventor and AutoCAD
Integrated BIM tools, including Revit, AutoCAD, and Civil 3D
Professional CAD/CAM tools built on Inventor and AutoCAD
Autodesk Support
Oct 8, 2023
Products and versions covered
Installer Helper enables the CAD administrator to easily manage the settings for a large number of users. For example, the administrator can deploy a script or perform a manual operation to:
Installer Helper files are included in the AdskLicensingInstaller and are installed when Autodesk Licensing (CLIC v2) is installed.
Platform | Location | Notes |
Windows | %CommonProgramFiles(x86)%\Autodesk Shared\AdskLicensing\Current\helper | The version is tracked inside "version.ini" file in Example: [General] version=9.0.1.1462 |
macOS | /Library/Application Support/Autodesk/AdskLicensing/Current/helper | |
Linux | /opt/Autodesk/AdskLicensing/Current/helper | ${installed_version} will be the version number of the RPM that was installed. |
This section describes how to use Installer Helper to:
List registered features
Change registered features
Use the list command to see the features currently registered for a product.
The options for license method are:
The options for server type are:
$ ./AdskLicensingInstHelper list .. which produces results like below for every registered feature: [ { "feature_id": "ACD", "def_prod_key": "001L1", "def_prod_ver": "2020.0.0.F", "sel_prod_key": "001L1", "sel_prod_ver": "2020.0.0.F", "lic_method": 1, "supported_lic_methods": [ 2, 1, 4 ], "lic_server_type": 1, "lic_servers": [ "@1.1.1.1" ], "serial_number_sa": "000-00000000", "serial_number_nw": "000-00000000", "def_prod_code": "ACD", "sel_prod_code": "ACD" } ]
Note: The command output may not include line breakers and the output may be hard to read. In this case, redirect the output to a .txt file (e.g. ./AdskLicensingInstHelper list > C:\Autodesk\list_output.txt) then open the text file in Notepad, copy & paste its content in json formatter (e.g. http://jsonprettyprint.com/), which will display it as above.
Use the change command to change or reset feature information such as license method, server type and licensing servers' list with the following options:
> ./AdskLicensingInstHelper change --help NAME: AdskLicensingInstHelper change - Change registered product USAGE: AdskLicensingInstHelper change [command options] Legend: [R] - required [O] - optional OPTIONS: --prod_key key, --pk key [R] key of the product to change (e.g. "001L1") --prod_ver version, --pv version [R] version of the product to change (e.g. "2020.0.0.F") --feature_id key, --fi key [O] alternate key of the product to change (e.g. "ACD", for license method USER only) --lic_method value, --lm value [O] new license method. Should be one of (case insensitive): USER, STANDALONE, NETWORK or empty "" to reset LGS --lic_server_type value, --lt value [O] network license server type. Should be one of (case insensitive): SINGLE, REDUNDANT, DISTRIBUTED or empty "" to reset LGS. WARNING! For empty value lic_servers will be reset as well --lic_servers value, --ls value [O] list of comma-separated network license server addresses or empty "" to reset. For example: @127.0.0.1,@192.168.1.1,@9.0.9.0
If your Autodesk software opens, suggested workflow for resetting LGS is using in product the License Manager UI. When the product trial license is expired, to initiate LGS Dialog, click on the "Already have a License" link at the bottom of the Expired Trial Dialog.
Use AdskLicensingInstHelper tool if above is not possible or changing a license type via a script.
To change licensing method from NETWORK to USER one can run:
> ./AdskLicensingInstHelper change -pk 001L1 -pv 2020.0.0.F -lm USER
Note: before running the command if you are logged in on an Autodesk cloud based services, you must sign out from the service and clear the login status by deleting the LoginState.xml file.
The following examples show how to change the license address for a server (AutoCAD 2020, key 001L1 and Flame 2020 key C0TL1 on macOS and Linux) from: 2080@10.12.15.111 To: 2080@20.23.24.222
"%CommonProgramFiles(x86)%\Autodesk Shared\AdskLicensing\Current\helper\AdskLicensingInstHelper.exe" change --prod_key 001L1 --prod_ver 2020.0.0.F --lic_servers "2080@20.23.24.222"
sudo /Library/Application\ Support/Autodesk/AdskLicensing/Current/helper/AdskLicensingInstHelper change --prod_key C0TL1 --prod_ver 2020.0.0.F --lic_servers "2080@20.23.24.222"
sudo /opt/Autodesk/AdskLicensing/*/helper/AdskLicensingInstHelper change --prod_key C0TL1 --prod_ver 2020.0.0.F --lic_servers "2080@20.23.24.222"
Note: If you are logged in on an Autodesk cloud based services, you must sign out from the service and clear the login status by deleting the LoginState.xml file.
The following example shows how to reset LGS for AutoCAD 2020 (001L1) on Windows and for Flame 2020 (C0TL1) on macOS and Linux. Use the install helper "change" command, and set licensing method to an empty string.
In general:
AdskLicensingInstHelper change --prod_key 001L1 --prod_ver 2020.0.0.F --lic_method ""
"%CommonProgramFiles(x86)%\Autodesk Shared\AdskLicensing\Current\helper\AdskLicensingInstHelper.exe" change --prod_key 001L1 --prod_ver 2020.0.0.F --lic_method ""
sudo /Library/Application\ Support/Autodesk/AdskLicensing/Current/helper/AdskLicensingInstHelper change --prod_key C0TL1 --prod_ver 2020.0.0.F --lic_method ""
sudo /opt/Autodesk/AdskLicensing/*/helper/AdskLicensingInstHelper change --prod_key C0TL1 --prod_ver 2020.0.0.F --lic_method ""
The following example shows how to reset a license server for AutoCAD 2020, key 001L1 and for Flame 2020 key C0TL1 on macOS and Linux.
"%CommonProgramFiles(x86)%\Autodesk Shared\AdskLicensing\Current\helper\AdskLicensingInstHelper.exe" change --prod_key 001L1 --prod_ver 2020.0.0.F --lic_server_type "" --lic_servers ""
sudo /Library/Application\ Support/Autodesk/AdskLicensing/Current/helper/AdskLicensingInstHelper change --prod_key C0TL1 --prod_ver 2020.0.0.F --lic_server_type "" --lic_servers ""
sudo /opt/Autodesk/AdskLicensing/*/helper/AdskLicensingInstHelper change --prod_key C0TL1 --prod_ver 2018.0.0.F --lic_server_type "" --lic_servers ""
--from_deployment or -d
Was this information helpful?
The Assistant can help you find answers or contact an agent.
What level of support do you have?
Different subscription plans provide distinct categories of support. Find out the level of support for your plan.
How to buy
Privacy | Do not sell or share my personal information | Cookie preferences | Report noncompliance | Terms of use | Legal | © 2025 Autodesk Inc. All rights reserved