![]() |
![]()
|
Tips and Suggestions - Limit Logins Tip #1Limit Logins and DFSLimit Logins works great using DFS. Using DFS, you can greatly speed up the connection intervals of the client software. DFS shares will allow you to use the software without the need of creating sub-server shares in the Administrator Console when using the software with a large amount of users.Suggestions:
Tips and Suggestions - USB Admin Pro Tip #1Using Group Policy to install USB Admin Pro based on OU membershipThe following will allow you to install USB Admin Pro on specific computers that are located within an Organizational Unit. This gives you a little more flexibility as it enables you to control which computers the software is installed on. The instructions below assumes you have already installed USB Admin Pro, setup a client install share, and defined a Default Policy for "Settings for All Computers."
Set FSO = CreateObject("Scripting.FileSystemObject") Dim WshShell Set WshShell = CreateObject("WScript.Shell") If Not fso.fileexists("c:\program files\ntrds\rsrv.exe") Then WshShell.Exec("\\server\share\InstallRSRV.exe") End If Using this method, you can effectively install the client on the machines you specify without a lot of hassle. Of coarse, we realize not all your users who log into your machines will have administrative privileges. In this case, you will have to replace InstallRSRV.exe in the script above with InstallAsAdmin.exe, and follow the steps described in the Install Guide to install with elevated privileges. |