Extract the files
DWGTrueView_2023_English_64bit_dlm.sfx.exe -suppresslaunch -d "C:\Install\DWGTrueView"
No Desktop Shortcut
Open C:\Install\DWGTrueView\DWGTrueView_2023_English_64bit_dlm\x64\dwgviewr\pkg.dwgviewr.xml
In the [Configuration] Section update the following line to include the ADSK_DESKTOPSHORTCUT_1=0 parameter
Original:<InstallFile type="MSI" contents="Folder" installParams="ADSK_SETUP_EXE=1" file="x64\dwgviewr\dwgviewr.msi"/>
Updated:<InstallFile type="MSI" contents="Folder" installParams="ADSK_SETUP_EXE=1 ADSK_DESKTOPSHORTCUT_1=0" file="x64\dwgviewr\dwgviewr.msi"/>
Disable Data Collection
REG ADD "HKCU\SOFTWARE\Autodesk\MC3" /v ADAOptIn /t REG_DWORD /d 0 /f
REG ADD "HKCU\SOFTWARE\Autodesk\MC3" /v ADARePrompted /t REG_DWORD /d 1 /f
Suppress AutoDesk DWG TrueView 2023 Privacy Settings
Create a new file named “%AppData%\Autodesk\ADPSDK\UserConsent\UnNamed.json”
With these contents:
{
"lastUpdated": 1234123412341,
"preferences": [
{
"consentId": "ADSK_PUD_CONTRACTUAL_NECESSITY_DESKTOP",
"optIn": false
},
{
"consentId": "ADSK_PUD_OPTIMIZATION_IMPROVEMENT_DESKTOP",
"optIn": false
},
{
"consentId": "ADSK_PUD_GO_TO_MARKET_DESKTOP",
"optIn": false
}
],
"userActionRequired": false,
"userId": "UnNamed"
}
Silent Uninstall
Autodesk DWG TrueView 2024 Silent Uninstall
"%ProgramFiles%\Autodesk\AdODIS\V1\Installer.exe" -i uninstall -q -m C:\ProgramData\Autodesk\ODIS\metadata\{9C02048D-D0DB-3E06-B903-89BD24380AAD}\bundleManifest.xml
Autodesk Access (Autodesk Identity Manager) Silent Uninstal
"%ProgramFiles%\Autodesk\AdskIdentityManager\uninstall.exe" --mode unattended
"%ProgramFiles%\Autodesk\AdODIS\V1\RemoveODIS.exe" --mode unattended
0 Comments