mohan
January 15th 05, 04:55 AM
Did you try the following excerpt and does this work? I have two user
accounts (A, B)set up on one xp sp 2 node. I want to remote desktop to that
node from another node either as A or B without kicking of the current user
on the node.
If this script does work, when do I run it and from where?
Thanks
Mohan
>>
@echo off
setlocal
set key="HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\Licensing Core"
@echo reg add %key% /v EnableConcurrentSessions /T REG_DWORD /D 1 /f
reg add %key% /v EnableConcurrentSessions /T REG_DWORD /D 1 /f
endlocal
<<
"benjammin" wrote:
> Have a look at this...
>
> taken from:
>
> http://www.jsifaq.com/SUBQ/tip8400/rh8428.htm
>
> ================================================== ==
> Windows XP Service Pack 2 computers can support two Remote Desktop sessions
> simultaneously.
> NOTE: If you have an open session on the desktop console, only one
> additional session is supported.
>
> To enable concurrent sessions, run the following batch file:
>
> @echo off
> setlocal
> set key="HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\Licensing Core"
> @echo reg add %key% /v EnableConcurrentSessions /T REG_DWORD /D 1 /f
> reg add %key% /v EnableConcurrentSessions /T REG_DWORD /D 1 /f
> endlocal
> ================================================== ==
>
> I haven't tried it yet.
>
> (I will as soon as I get SP2 issues dealt with first)
>
> btw, I'm curious how shadowing features are implemented...
> (can the local session watch the remote session, and vice-versa)
>
> -Ben
>
>
> >"PCyr." wrote:
> >
> > There was mention of it during development, but MS took it out. - Paul Cyr
> >
> >> "Scott" > wrote in message
> > ...
> > > It was rumored that SP2 was going to have the ability to allow two users to
> > > be logged in interactivly in XP. Such as, one will be connected to the
> > > computer and one will connect via remote desktop.
> > >
> > > Does anyone know if that happened or not?
>
accounts (A, B)set up on one xp sp 2 node. I want to remote desktop to that
node from another node either as A or B without kicking of the current user
on the node.
If this script does work, when do I run it and from where?
Thanks
Mohan
>>
@echo off
setlocal
set key="HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\Licensing Core"
@echo reg add %key% /v EnableConcurrentSessions /T REG_DWORD /D 1 /f
reg add %key% /v EnableConcurrentSessions /T REG_DWORD /D 1 /f
endlocal
<<
"benjammin" wrote:
> Have a look at this...
>
> taken from:
>
> http://www.jsifaq.com/SUBQ/tip8400/rh8428.htm
>
> ================================================== ==
> Windows XP Service Pack 2 computers can support two Remote Desktop sessions
> simultaneously.
> NOTE: If you have an open session on the desktop console, only one
> additional session is supported.
>
> To enable concurrent sessions, run the following batch file:
>
> @echo off
> setlocal
> set key="HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\Licensing Core"
> @echo reg add %key% /v EnableConcurrentSessions /T REG_DWORD /D 1 /f
> reg add %key% /v EnableConcurrentSessions /T REG_DWORD /D 1 /f
> endlocal
> ================================================== ==
>
> I haven't tried it yet.
>
> (I will as soon as I get SP2 issues dealt with first)
>
> btw, I'm curious how shadowing features are implemented...
> (can the local session watch the remote session, and vice-versa)
>
> -Ben
>
>
> >"PCyr." wrote:
> >
> > There was mention of it during development, but MS took it out. - Paul Cyr
> >
> >> "Scott" > wrote in message
> > ...
> > > It was rumored that SP2 was going to have the ability to allow two users to
> > > be logged in interactivly in XP. Such as, one will be connected to the
> > > computer and one will connect via remote desktop.
> > >
> > > Does anyone know if that happened or not?
>