| 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 | |
| 22 | If 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 | |
| 36 | 1 - 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 | |
| 38 | 2 - 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 | |
| 41 | Logon Script |
| 42 | You can include the following command in any CMD-based user logon script you may have configured: |
| 43 | |
| 44 | REG ADD HKCU\Software\Autodesk\ODIS /V DisableManualUpdateInstall /D 1 /T REG_DWORD /f |
| 45 | OR |
| 46 | REG ADD HKCU\Software\Autodesk\ODIS /V DisableManualUpdateInstall /D 2 /T REG_DWORD /f |
| 47 | }}} |