Registry Edits for Terminal Clients

  • Thread starter Thread starter Mojoala
  • Start date Start date
M

Mojoala

I would like to know how to edit the registry for each terminal user that
accesses the server. Is this possible. Currently we have to log on to a
terminal as the user to do this. However, I know that this data is stored on
the server.

Thanks,

Chuck
 
If you want to import a specific registry key into each users
HKCU, do this:

* log in as administrator
* make the registry changes that you need
* export the registry key to a regfile, let say TSuser.reg
* put a line in your users logon script:
regedit /s TSuser.reg

Note: test it first without the /s (= silent) parameter!

310516 - HOW TO: Add, Modify, or Delete Registry Subkeys and
Values by Using a Registration Entries (.reg) File
http://support.microsoft.com/?kbid=310516
 
This can be done via logon script or Group Policy

Here's an example of doing this via logon script

Dim Networ
Set Network = Wscript.CreateObject ("Wscript.Network"

'Call Batch File to change Registry Setting
Set oShell = CreateObject("WScript.Shell"
oShell.Run "DriveLetter:\Folder\reg.bat", 1, Tru

'End of of Fil

Batch file refernced does this
regedit /s FileName.re

Patrick Rous
Microsoft MVP - Terminal Serve
http://www.workthin.co

----- Mojoala wrote: ----

I would like to know how to edit the registry for each terminal user tha
accesses the server. Is this possible. Currently we have to log on to
terminal as the user to do this. However, I know that this data is stored o
the server

Thanks

Chuc
 
Back
Top