<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Windows XP Multiuser Remote Desktop</title>
	<atom:link href="http://www.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/</link>
	<description>A blog by Riccardo Raneri</description>
	<lastBuildDate>Thu, 11 Mar 2010 11:52:50 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: champions online resources</title>
		<link>http://www.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/comment-page-6/#comment-88776</link>
		<dc:creator>champions online resources</dc:creator>
		<pubDate>Fri, 30 Oct 2009 07:09:23 +0000</pubDate>
		<guid isPermaLink="false">http://riccardo.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/#comment-88776</guid>
		<description>i couldn’t tick where it says: “Allow users to connect remotely to this computer”. Do you have any idea how i can hack through without anyone noticing so that i would be able to tick that box?</description>
		<content:encoded><![CDATA[<p>i couldn’t tick where it says: “Allow users to connect remotely to this computer”. Do you have any idea how i can hack through without anyone noticing so that i would be able to tick that box?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: REggie</title>
		<link>http://www.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/comment-page-6/#comment-88502</link>
		<dc:creator>REggie</dc:creator>
		<pubDate>Thu, 30 Jul 2009 20:50:21 +0000</pubDate>
		<guid isPermaLink="false">http://riccardo.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/#comment-88502</guid>
		<description>Looks like the forum pulled out the error. The error said - Failed to Read Description error code 2

Thanks.</description>
		<content:encoded><![CDATA[<p>Looks like the forum pulled out the error. The error said &#8211; Failed to Read Description error code 2</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: REggie</title>
		<link>http://www.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/comment-page-6/#comment-88501</link>
		<dc:creator>REggie</dc:creator>
		<pubDate>Thu, 30 Jul 2009 20:49:13 +0000</pubDate>
		<guid isPermaLink="false">http://riccardo.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/#comment-88501</guid>
		<description>Was wondering if anybody has run into a problem with Vista Business like mine. I downloaded and ran the batch file (below) and now I can&#039;t RDP to my machine. In services.msc, I see the following error for the service TermService: . Also, I had previously changed RDP to listen on port 918 and it was working (before I ran the batch file)

I downloaded the hacked .dll from remotedesktoprdp.com and ran the batch file for Vista Business. I&#039;m a linux guy and feel pretty helpless here. 

Here are the contents of the batch file I ran. How can I reverse these changes? I&#039;d be fine with getting it back to allowing only 1 concurrent session. 

Thanks much for any thoughts. 


:START
   @echo off
   cls

:DETECTARGUMENTS
   SET SINGLESESSION=1
   SET BLANK=1
   IF /I *%1 == *MULTI SET SINGLESESSION=0
   IF /I *%2 == *MULTI SET SINGLESESSION=0
   IF /I *%1 == *BLANK SET BLANK=0
   IF /I *%2 == *BLANK SET BLANK=0

:SETSOURCEFOLDER
   REM This will get the folder the batch file was launched from since the current
   REM directory will change if launched from a network share
   SET SOURCEFOLDER=%~dp0
   ECHO Source Folder is %SOURCEFOLDER%

:TAKEOWNERSHIP
   echo Taking ownership of %SystemRoot%\System32\termsrv.dll
   takeown /a /f %SystemRoot%\System32\termsrv.dll
   echo Granting Administrators rights
   icacls %SystemRoot%\System32\termsrv.dll /Grant Administrators:F

:STOPTERMINALSERVICES
   echo Stopping Terminal Services
   net stop &quot;Terminal Services&quot;

:BACKUPTERMSRVDLL
   copy %SystemRoot%\System32\termsrv.dll %SystemRoot%\System32\*.*.bak

:COPYTERMSRVDLL
   echo Copying %SOURCEFOLDER%termsrv.dll to %SystemRoot%\System32\
   copy /y &quot;%SOURCEFOLDER%termsrv.dll&quot; %SystemRoot%\System32\

:IMPORTREGKEYS
   echo Enabling RDP
   REG ADD &quot;HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server&quot; /v fDenyTSConnections /t REG_DWORD /d 0 /f

:SETSINGLESESSIONSETTING
   ECHO Setting fSingleSessionPerUser to %SINGLESESSION%
   REG ADD &quot;HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server&quot; /v fSingleSessionPerUser /t REG_DWORD /d %SINGLESESSION% /f

:SETBLANKPASSWORDPOLICY
   ECHO Setting LimitBlankPasswordUser to %BLANK%
   REG ADD &quot;HKLM\SYSTEM\CurrentControlSet\Control\Lsa&quot; /v LimitBlankPasswordUse /t REG_DWORD /d %BLANK% /f
   
:CONFIGUREFIREWALL
   ECHO Configuring Remote Desktop in Windows Firewall
   netsh firewall set service remotedesktop enable

:STARTTERMINALSERVICES
   echo Starting Terminal Services
   net start &quot;Terminal Services&quot;

:PAUSE5SECONDS
   ECHO Pausing 5 seconds to give service time to start listening
   choice /n /c y /d y /t 5 &gt; nul

:CHECKIFSERVICELISTENING
   echo Checking if Service is listening on port 3389
   SUBST
   netstat -a &#124; find /i &quot;3389&quot;
   if ERRORLEVEL 1 goto SERVICENOTLISTENING

:SERVICEISLISTENING
   echo Service is listening
   goto CONTINUE

:SERVICENOTLISTENING
   echo Service is not listening

:CONTINUE
   echo Done
   Pause</description>
		<content:encoded><![CDATA[<p>Was wondering if anybody has run into a problem with Vista Business like mine. I downloaded and ran the batch file (below) and now I can&#8217;t RDP to my machine. In services.msc, I see the following error for the service TermService: . Also, I had previously changed RDP to listen on port 918 and it was working (before I ran the batch file)</p>
<p>I downloaded the hacked .dll from remotedesktoprdp.com and ran the batch file for Vista Business. I&#8217;m a linux guy and feel pretty helpless here. </p>
<p>Here are the contents of the batch file I ran. How can I reverse these changes? I&#8217;d be fine with getting it back to allowing only 1 concurrent session. </p>
<p>Thanks much for any thoughts. </p>
<p>:START<br />
   @echo off<br />
   cls</p>
<p> <img src='http://www.raneri.it/blog/eng/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ETECTARGUMENTS<br />
   SET SINGLESESSION=1<br />
   SET BLANK=1<br />
   IF /I *%1 == *MULTI SET SINGLESESSION=0<br />
   IF /I *%2 == *MULTI SET SINGLESESSION=0<br />
   IF /I *%1 == *BLANK SET BLANK=0<br />
   IF /I *%2 == *BLANK SET BLANK=0</p>
<p>:SETSOURCEFOLDER<br />
   REM This will get the folder the batch file was launched from since the current<br />
   REM directory will change if launched from a network share<br />
   SET SOURCEFOLDER=%~dp0<br />
   ECHO Source Folder is %SOURCEFOLDER%</p>
<p>:TAKEOWNERSHIP<br />
   echo Taking ownership of %SystemRoot%\System32\termsrv.dll<br />
   takeown /a /f %SystemRoot%\System32\termsrv.dll<br />
   echo Granting Administrators rights<br />
   icacls %SystemRoot%\System32\termsrv.dll /Grant Administrators:F</p>
<p>:STOPTERMINALSERVICES<br />
   echo Stopping Terminal Services<br />
   net stop &#8220;Terminal Services&#8221;</p>
<p>:BACKUPTERMSRVDLL<br />
   copy %SystemRoot%\System32\termsrv.dll %SystemRoot%\System32\*.*.bak</p>
<p>:COPYTERMSRVDLL<br />
   echo Copying %SOURCEFOLDER%termsrv.dll to %SystemRoot%\System32\<br />
   copy /y &#8220;%SOURCEFOLDER%termsrv.dll&#8221; %SystemRoot%\System32\</p>
<p>:IMPORTREGKEYS<br />
   echo Enabling RDP<br />
   REG ADD &#8220;HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server&#8221; /v fDenyTSConnections /t REG_DWORD /d 0 /f</p>
<p>:SETSINGLESESSIONSETTING<br />
   ECHO Setting fSingleSessionPerUser to %SINGLESESSION%<br />
   REG ADD &#8220;HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server&#8221; /v fSingleSessionPerUser /t REG_DWORD /d %SINGLESESSION% /f</p>
<p>:SETBLANKPASSWORDPOLICY<br />
   ECHO Setting LimitBlankPasswordUser to %BLANK%<br />
   REG ADD &#8220;HKLM\SYSTEM\CurrentControlSet\Control\Lsa&#8221; /v LimitBlankPasswordUse /t REG_DWORD /d %BLANK% /f</p>
<p>:CONFIGUREFIREWALL<br />
   ECHO Configuring Remote Desktop in Windows Firewall<br />
   netsh firewall set service remotedesktop enable</p>
<p>:STARTTERMINALSERVICES<br />
   echo Starting Terminal Services<br />
   net start &#8220;Terminal Services&#8221;</p>
<p> <img src='http://www.raneri.it/blog/eng/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> AUSE5SECONDS<br />
   ECHO Pausing 5 seconds to give service time to start listening<br />
   choice /n /c y /d y /t 5 &gt; nul</p>
<p>:CHECKIFSERVICELISTENING<br />
   echo Checking if Service is listening on port 3389<br />
   SUBST<br />
   netstat -a | find /i &#8220;3389&#8243;<br />
   if ERRORLEVEL 1 goto SERVICENOTLISTENING</p>
<p>:SERVICEISLISTENING<br />
   echo Service is listening<br />
   goto CONTINUE</p>
<p>:SERVICENOTLISTENING<br />
   echo Service is not listening</p>
<p>:CONTINUE<br />
   echo Done<br />
   Pause</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chp</title>
		<link>http://www.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/comment-page-6/#comment-88190</link>
		<dc:creator>chp</dc:creator>
		<pubDate>Sat, 30 May 2009 13:30:23 +0000</pubDate>
		<guid isPermaLink="false">http://riccardo.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/#comment-88190</guid>
		<description>For vista sp2 x64

http://noricube.pe.kr/tc/chp/attachment/3631389456.dll

thanks, noimp ;)</description>
		<content:encoded><![CDATA[<p>For vista sp2 x64</p>
<p><a href="http://noricube.pe.kr/tc/chp/attachment/3631389456.dll" rel="nofollow">http://noricube.pe.kr/tc/chp/attachment/3631389456.dll</a></p>
<p>thanks, noimp <img src='http://www.raneri.it/blog/eng/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashish</title>
		<link>http://www.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/comment-page-6/#comment-88149</link>
		<dc:creator>Ashish</dc:creator>
		<pubDate>Tue, 12 May 2009 12:04:35 +0000</pubDate>
		<guid isPermaLink="false">http://riccardo.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/#comment-88149</guid>
		<description>Thank you very much</description>
		<content:encoded><![CDATA[<p>Thank you very much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NetGeek</title>
		<link>http://www.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/comment-page-6/#comment-88129</link>
		<dc:creator>NetGeek</dc:creator>
		<pubDate>Wed, 29 Apr 2009 09:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://riccardo.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/#comment-88129</guid>
		<description>There are also software like &lt;a href=&quot;http://aikotech.com/thinserver.htm&quot; rel=&quot;nofollow&quot;&gt; ThinServer &lt;/a&gt; which is cheaper and easier to work with and can work on XP Professional as well as Windows Server 2003</description>
		<content:encoded><![CDATA[<p>There are also software like <a href="http://aikotech.com/thinserver.htm" rel="nofollow"> ThinServer </a> which is cheaper and easier to work with and can work on XP Professional as well as Windows Server 2003</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tonmi</title>
		<link>http://www.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/comment-page-6/#comment-88120</link>
		<dc:creator>tonmi</dc:creator>
		<pubDate>Fri, 24 Apr 2009 03:08:19 +0000</pubDate>
		<guid isPermaLink="false">http://riccardo.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/#comment-88120</guid>
		<description>I need</description>
		<content:encoded><![CDATA[<p>I need</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Lawson</title>
		<link>http://www.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/comment-page-6/#comment-88111</link>
		<dc:creator>James Lawson</dc:creator>
		<pubDate>Tue, 07 Apr 2009 00:28:17 +0000</pubDate>
		<guid isPermaLink="false">http://riccardo.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/#comment-88111</guid>
		<description>This situation with remote access for multiple concurrent users has troubled many people. So many, that they have decided to create a lot of thired party software. There are big, expansive, but very functional programs from &lt;a href=&quot;http://www.citrix.com/English/ps2/products/product.asp?contentID=683711&amp;ntref=hp_nav_US&quot; rel=&quot;nofollow&quot;&gt;Citrix&lt;/a&gt;, for example. But there are other programs, less complicated, but still very efficient, like &lt;a href=&quot;http://www.netleverage.com/index8ecf.html?option=com_content&amp;task=blogcategory&amp;id=85&amp;Itemid=93&quot; rel=&quot;nofollow&quot;&gt;ThinPoint&lt;/a&gt;.It all depends on how you are planing to use concurrent connection to your machine really.</description>
		<content:encoded><![CDATA[<p>This situation with remote access for multiple concurrent users has troubled many people. So many, that they have decided to create a lot of thired party software. There are big, expansive, but very functional programs from <a href="http://www.citrix.com/English/ps2/products/product.asp?contentID=683711&amp;ntref=hp_nav_US" rel="nofollow">Citrix</a>, for example. But there are other programs, less complicated, but still very efficient, like <a href="http://www.netleverage.com/index8ecf.html?option=com_content&amp;task=blogcategory&amp;id=85&amp;Itemid=93" rel="nofollow">ThinPoint</a>.It all depends on how you are planing to use concurrent connection to your machine really.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eugene</title>
		<link>http://www.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/comment-page-6/#comment-88104</link>
		<dc:creator>Eugene</dc:creator>
		<pubDate>Thu, 26 Mar 2009 10:28:39 +0000</pubDate>
		<guid isPermaLink="false">http://riccardo.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/#comment-88104</guid>
		<description>If nobody wants ;-) I answer the question:

Windows XP SP3 with latest updates (Pre-SP4) no user limit
termsrv.dll version 5.1.2600.5733
E:\WINDOWS\system32&gt;fc/b termsrv.bak termsrv.dll
Comparing files termsrv.bak and TERMSRV.DLL
00022D47: 74 75
00022DC2: 7F 90
00022DC3: 16 90</description>
		<content:encoded><![CDATA[<p>If nobody wants <img src='http://www.raneri.it/blog/eng/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  I answer the question:</p>
<p>Windows XP SP3 with latest updates (Pre-SP4) no user limit<br />
termsrv.dll version 5.1.2600.5733<br />
E:\WINDOWS\system32&gt;fc/b termsrv.bak termsrv.dll<br />
Comparing files termsrv.bak and TERMSRV.DLL<br />
00022D47: 74 75<br />
00022DC2: 7F 90<br />
00022DC3: 16 90</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eugene</title>
		<link>http://www.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/comment-page-6/#comment-88101</link>
		<dc:creator>Eugene</dc:creator>
		<pubDate>Wed, 25 Mar 2009 06:27:33 +0000</pubDate>
		<guid isPermaLink="false">http://riccardo.raneri.it/blog/eng/index.php/2006/04/24/windows-xp-multiuser-remote-desktop/#comment-88101</guid>
		<description>anyone can answer me?</description>
		<content:encoded><![CDATA[<p>anyone can answer me?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
