PDA

View Full Version : SCRIPTS FOR MODIFY REGISTRY IN XP


veronica londono
January 7th 04, 01:05 PM
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\Contro l\Termina
l Server

fDenyTSConnectionsto 0

any idea???

Please help me !

Kelly
January 7th 04, 01:06 PM
Hi Veronica,

Windows Registry Editor Version 5.00

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


Save in Notepad.

--
All the Best,
Kelly

MS-MVP Win98/XP
[AE-Windows® XP]

Troubleshooting Windows XP
http://www.kellys-korner-xp.com

Top 10 Frequently Asked Questions and Answers
http://www.kellys-korner-xp.com/top10faqs.htm


"veronica londono" > wrote in message
...
> 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\Contro l\Termina
> l Server
>
> fDenyTSConnectionsto 0
>
> any idea???
>
> Please help me !

Kelly
January 7th 04, 01:06 PM
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."

--
All the Best,
Kelly

MS-MVP Win98/XP
[AE-Windows® XP]

Troubleshooting Windows XP
http://www.kellys-korner-xp.com

Top 10 Frequently Asked Questions and Answers
http://www.kellys-korner-xp.com/top10faqs.htm


"veronica londono" > wrote in message
...
> 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\Contro l\Termina
> l Server
>
> fDenyTSConnectionsto 0
>
> any idea???
>
> Please help me !

Google