|
Restrict usage of Certain Applications on your network You want to restrict what applications users of the network are able to run on their workstations.
How ? There are two methods to approach this problem. You may want to designate which applications are not allowed to run, and allow all others to be executed normally. This option is configurable on Windows 2000/ME/XP only.
Alternatively, you may choose a more restrictive approach that allows only specific applications to be executed, while all others are not allowed at all. This option is configurable on all versions of Windows.
The problem with taking such a restrictive approach is that it requires alot more work to configure an appropriate level of control while leaving a reasonable amount of functionality. Both methods are explained below.
Setup with DesktopAuthority
Method 1:To restrict users from running specific applications, multiple registry keys must be created. The first key enables the policy in Windows. Remember this policy is effective in Windows 2000/ME/XP only, so be sure to configure your Validation Logic accordingly. Use the Registry tab within DesktopAuthority to add an element with the following settings (See Figure 1):
- Action: WriteValue Hive: HKEY_CURRENT_USER
- Key: Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
- Type: REG_DWORD
- Value: DisallowRun
- Data: 1
Each subsequent registry key that is created indicates exactly which applications the user is not allowed to execute. For each application you wish to restrict, create an entry on the Registry tab within DesktopAuthority with settings similar to the following (See Figure 2):
- Action: WriteValue Hive: HKEY_CURRENT_USER
- Key:Software\Microsoft\Windows\CurrentVersion\ Policies\Explorer\DisallowRun
- Type: REG_SZ
- Value: AOL Instant Messenger
- Data: AIM.EXE
In this example we have denied the users ability to execute AOL Instant Messenger. The "Value" field in the registry setting above is for description purposes only. The "Data" field is used to indicate the executable that has been restricted. You may create as many of these keys as necessary to enforce your network policy.
|