Changes between Version 1 and Version 2 of AutoCad


Ignore:
Timestamp:
11/18/24 00:52:43 (7 months ago)
Author:
Paul Kulda
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AutoCad

    v1 v2  
    88
    99 
     10* Registery Patches
     11{{{
     12
     13
     14    From the Search bar in Windows, type in “regedit”
     15    Browse to the HKEY_CURRENT_USER/Software/Autodesk/ODIS folder.  If it does not exist, create it.
     16    Right-click on the folder, and choose New > DWORD (32-bit) Value
     17    Enter “DisableManualUpdateInstall” for the Name
     18    Enter 1 for the Data.
     19
     20
     21
     22If you use Group Policy in your company, you can distribute this key to multiple users via this process:
     23
     24    Open the Group Policy Management Console, gpmc.msc
     25    Create a new (or edit an existing) Group Policy Object (GPO) in the Organizational Unit you prefer.
     26    Expand the User Configuration section > Preferences > Windows Settings > Registry
     27    Right click on Registry, and select New > Registry Item
     28    Use these settings:
     29        Action: Update
     30        Hive:  HKEY_CURRENT_USER
     31        Key Path:  Software\Autodesk\ODIS
     32        Value Name:  DisableManualUpdateInstall
     33        Value Type:  REG_DWORD
     34        Value Data:  1 or 2
     35
     361 - Access will not start during device startup, and the system tray icon will not be shown. Users may still launch Access from the Start Menu, but when users close Access, it will quit the application and remove the system tray icon again
     37
     382 - Access will show available updates, but will not display an Update button. Users will be able to see information about the updates, but cannot install them from Access.
     39
     40
     41Logon Script
     42You can include the following command in any CMD-based user logon script you may have configured:
     43
     44REG ADD HKCU\Software\Autodesk\ODIS /V DisableManualUpdateInstall /D 1 /T REG_DWORD /f
     45OR
     46REG ADD HKCU\Software\Autodesk\ODIS /V DisableManualUpdateInstall /D 2 /T REG_DWORD /f
     47}}}