SCRIPTS FOR MODIFY REGISTRY IN XP

  • Thread starter Thread starter veronica londono
  • Start date Start date
V

veronica londono

Hi guys , i don't know how can i do enable reg word in
registry, for terminal services . The clients is xp and
w2000, i need script for 30 pc's.


The registry :
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Termina
l Server

fDenyTSConnectionsto 0

any idea???

Please help me !
 
Hi Veronica,

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server]
"fDenyTSConnections"=dword:00000000


Save in Notepad.

/top10faqs.htm
 
Hi Veronica,

Forgot to list the vbs:

Set WSHShell = WScript.CreateObject("WScript.Shell")

P1 = "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\"

WshShell.RegWrite p1 & "fDenyTSConnections", 0, "REG_DWORD"

MsgBox "Finished."

/top10faqs.htm
 
Back
Top