<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
<channel>
  <title>Linux Format forums</title>
  <link>http://www.linuxformat.com/forums/index.php</link>
  <description>Help, discussion, magazine feedback and more</description>
  <language>english</language>
  <copyright>(c) Copyright Fri May 24, 2013 7:28 pm by Linux Format forums</copyright>
  <managingEditor>webmaster@linuxformat.com</managingEditor>
  <webMaster>webmaster@linuxformat.com</webMaster>
  <pubDate>Fri May 24, 2013 7:28 pm</pubDate>
  <lastBuildDate>Fri May 24, 2013 7:28 pm</lastBuildDate>
  <docs>http://backend.userland.com/rss</docs>
  <generator>phpBB2 RSS Syndication Mod by Lucas</generator>
  <ttl>1</ttl>

  <image>
    <title>Linux Format forums</title>
    <url></url>
    <link>http://www.linuxformat.com/forums/</link>
    <description>Help, discussion, magazine feedback and more</description>
  </image>

                                      <item>
                                        <title>Re: remote user login</title>
                                        <link>http://www.linuxformat.com/forums/viewtopic.php?p=69569#69569</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=14106'&gt;dwjs1974&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Sun Jan 25, 2009 11:36 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Many thanks all&lt;br /&gt;
&lt;br /&gt;
i found a patch and a dll&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#58;START&lt;br /&gt;
&amp;nbsp; &amp;nbsp;@echo off&lt;br /&gt;
&amp;nbsp; &amp;nbsp;cls&lt;br /&gt;
&lt;br /&gt;
&amp;#58;DETECTARGUMENTS&lt;br /&gt;
&amp;nbsp; &amp;nbsp;SET SINGLESESSION=1&lt;br /&gt;
&amp;nbsp; &amp;nbsp;SET BLANK=1&lt;br /&gt;
&amp;nbsp; &amp;nbsp;IF /I *%1 == *MULTI SET SINGLESESSION=0&lt;br /&gt;
&amp;nbsp; &amp;nbsp;IF /I *%2 == *MULTI SET SINGLESESSION=0&lt;br /&gt;
&amp;nbsp; &amp;nbsp;IF /I *%1 == *BLANK SET BLANK=0&lt;br /&gt;
&amp;nbsp; &amp;nbsp;IF /I *%2 == *BLANK SET BLANK=0&lt;br /&gt;
&lt;br /&gt;
&amp;#58;SETSOURCEFOLDER&lt;br /&gt;
&amp;nbsp; &amp;nbsp;REM This will get the folder the batch file was launched from since the current&lt;br /&gt;
&amp;nbsp; &amp;nbsp;REM directory will change if launched from a network share&lt;br /&gt;
&amp;nbsp; &amp;nbsp;SET SOURCEFOLDER=%~dp0&lt;br /&gt;
&amp;nbsp; &amp;nbsp;ECHO Source Folder is %SOURCEFOLDER%&lt;br /&gt;
&lt;br /&gt;
&amp;#58;TAKEOWNERSHIP&lt;br /&gt;
&amp;nbsp; &amp;nbsp;echo Taking ownership of %SystemRoot%\System32\termsrv.dll&lt;br /&gt;
&amp;nbsp; &amp;nbsp;takeown /a /f %SystemRoot%\System32\termsrv.dll&lt;br /&gt;
&amp;nbsp; &amp;nbsp;echo Granting Administrators rights&lt;br /&gt;
&amp;nbsp; &amp;nbsp;icacls %SystemRoot%\System32\termsrv.dll /Grant Administrators&amp;#58;F&lt;br /&gt;
&lt;br /&gt;
&amp;#58;STOPTERMINALSERVICES&lt;br /&gt;
&amp;nbsp; &amp;nbsp;echo Stopping Terminal Services&lt;br /&gt;
&amp;nbsp; &amp;nbsp;net stop &amp;quot;Terminal Services&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;#58;BACKUPTERMSRVDLL&lt;br /&gt;
&amp;nbsp; &amp;nbsp;copy %SystemRoot%\System32\termsrv.dll %SystemRoot%\System32\*.*.bak&lt;br /&gt;
&lt;br /&gt;
&amp;#58;COPYTERMSRVDLL&lt;br /&gt;
&amp;nbsp; &amp;nbsp;echo Copying %SOURCEFOLDER%termsrv.dll to %SystemRoot%\System32\&lt;br /&gt;
&amp;nbsp; &amp;nbsp;copy /y &amp;quot;%SOURCEFOLDER%termsrv.dll&amp;quot; %SystemRoot%\System32\&lt;br /&gt;
&lt;br /&gt;
&amp;#58;IMPORTREGKEYS&lt;br /&gt;
&amp;nbsp; &amp;nbsp;echo Importing Registry Keys&lt;br /&gt;
&amp;nbsp; &amp;nbsp;regedit /s &amp;quot;%SOURCEFOLDER%termonpremium.reg&amp;quot;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;echo Enabling RDP&lt;br /&gt;
&amp;nbsp; &amp;nbsp;REG ADD &amp;quot;HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server&amp;quot; /v fDenyTSConnections /t REG_DWORD /d 0 /f&lt;br /&gt;
&lt;br /&gt;
&amp;#58;SETSINGLESESSIONSETTING&lt;br /&gt;
&amp;nbsp; &amp;nbsp;ECHO Setting fSingleSessionPerUser to %SINGLESESSION%&lt;br /&gt;
&amp;nbsp; &amp;nbsp;REG ADD &amp;quot;HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server&amp;quot; /v fSingleSessionPerUser /t REG_DWORD /d %SINGLESESSION% /f&lt;br /&gt;
&lt;br /&gt;
&amp;#58;SETBLANKPASSWORDPOLICY&lt;br /&gt;
&amp;nbsp; &amp;nbsp;ECHO Setting LimitBlankPasswordUser to %BLANK%&lt;br /&gt;
&amp;nbsp; &amp;nbsp;REG ADD &amp;quot;HKLM\SYSTEM\CurrentControlSet\Control\Lsa&amp;quot; /v LimitBlankPasswordUse /t REG_DWORD /d %BLANK% /f&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&lt;br /&gt;
&amp;#58;CONFIGUREFIREWALL&lt;br /&gt;
&amp;nbsp; &amp;nbsp;ECHO Configuring Remote Desktop in Windows Firewall&lt;br /&gt;
&amp;nbsp; &amp;nbsp;netsh firewall set service remotedesktop enable&lt;br /&gt;
&lt;br /&gt;
&amp;#58;STARTTERMINALSERVICES&lt;br /&gt;
&amp;nbsp; &amp;nbsp;echo Starting Terminal Services&lt;br /&gt;
&amp;nbsp; &amp;nbsp;net start &amp;quot;Terminal Services&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;#58;PAUSE5SECONDS&lt;br /&gt;
&amp;nbsp; &amp;nbsp;ECHO Pausing 5 seconds to give service time to start listening&lt;br /&gt;
&amp;nbsp; &amp;nbsp;choice /n /c y /d y /t 5 &amp;gt; nul&lt;br /&gt;
&lt;br /&gt;
&amp;#58;CHECKIFSERVICELISTENING&lt;br /&gt;
&amp;nbsp; &amp;nbsp;echo Checking if Service is listening on port 3389&lt;br /&gt;
&amp;nbsp; &amp;nbsp;SUBST&lt;br /&gt;
&amp;nbsp; &amp;nbsp;netstat -a | find /i &amp;quot;3389&amp;quot;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;if ERRORLEVEL 1 goto SERVICENOTLISTENING&lt;br /&gt;
&lt;br /&gt;
&amp;#58;SERVICEISLISTENING&lt;br /&gt;
&amp;nbsp; &amp;nbsp;echo Service is listening&lt;br /&gt;
&amp;nbsp; &amp;nbsp;goto CONTINUE&lt;br /&gt;
&lt;br /&gt;
&amp;#58;SERVICENOTLISTENING&lt;br /&gt;
&amp;nbsp; &amp;nbsp;echo Service is not listening&lt;br /&gt;
&lt;br /&gt;
&amp;#58;CONTINUE&lt;br /&gt;
&amp;nbsp; &amp;nbsp;echo Done&lt;br /&gt;
&amp;nbsp; &amp;nbsp;Pause&amp;nbsp; &lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
This allowed my machine to be logged in with one user while remote login via another user...&lt;br /&gt;
&lt;br /&gt;
Thanks for the tips i found a dll&lt;br /&gt;
&lt;br /&gt;
Dave</description>
                                        <comments>http://www.linuxformat.com/forums/viewtopic.php?p=69569#69569</comments>
                                        <author>dwjs1974</author>
                                        <pubDate>Sun Jan 25, 2009 11:36 pm</pubDate>
                                        <guid isPermaLink="true">http://www.linuxformat.com/forums/viewtopic.php?p=69569#69569</guid>
                                      </item>
                                      <item>
                                        <title>RE: remote user login</title>
                                        <link>http://www.linuxformat.com/forums/viewtopic.php?p=69555#69555</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=2326'&gt;ollie&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Sun Jan 25, 2009 11:21 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      There is a hack (use at own risk) that allows up to three RDP sessions on Windows XP Pro provided you could locate a particular version of the termsrv.dll. A guide written in 2005 for use at your own risk is available &lt;a href=&quot;http://www.golod.com/2005/10/enabling-multiple-remote-desktop-sessions-in-windows-xp-professional-and-media-center-edition-2005/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;here&lt;/a&gt;.</description>
                                        <comments>http://www.linuxformat.com/forums/viewtopic.php?p=69555#69555</comments>
                                        <author>ollie</author>
                                        <pubDate>Sun Jan 25, 2009 11:21 am</pubDate>
                                        <guid isPermaLink="true">http://www.linuxformat.com/forums/viewtopic.php?p=69555#69555</guid>
                                      </item>
                                      <item>
                                        <title>RE: remote user login</title>
                                        <link>http://www.linuxformat.com/forums/viewtopic.php?p=69542#69542</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=2793'&gt;MartyBartfast&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Sun Jan 25, 2009 7:27 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      When I was faced with the same issue a few years ago I took myself off to a Windows forum to ask and their response was &quot;Upgrade to XP Pro&quot; which will allow multiple users, I didn't! You might get some mileage from installing an X display manager on the Windows box (Cygwin X for example) but I guess you'd be severely limited in what you can run on it that way.</description>
                                        <comments>http://www.linuxformat.com/forums/viewtopic.php?p=69542#69542</comments>
                                        <author>MartyBartfast</author>
                                        <pubDate>Sun Jan 25, 2009 7:27 am</pubDate>
                                        <guid isPermaLink="true">http://www.linuxformat.com/forums/viewtopic.php?p=69542#69542</guid>
                                      </item>
                                      <item>
                                        <title>RE: remote user login</title>
                                        <link>http://www.linuxformat.com/forums/viewtopic.php?p=69531#69531</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=2326'&gt;ollie&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Sun Jan 25, 2009 1:23 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      The Microsoft Remote Desktop Protocol (RDP) used to access a Windows system will either lock out the local user or share the session with the local user (Remote Assistance).</description>
                                        <comments>http://www.linuxformat.com/forums/viewtopic.php?p=69531#69531</comments>
                                        <author>ollie</author>
                                        <pubDate>Sun Jan 25, 2009 1:23 am</pubDate>
                                        <guid isPermaLink="true">http://www.linuxformat.com/forums/viewtopic.php?p=69531#69531</guid>
                                      </item>
                                      <item>
                                        <title>RE: remote user login</title>
                                        <link>http://www.linuxformat.com/forums/viewtopic.php?p=69526#69526</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=12122'&gt;pootman&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Sun Jan 25, 2009 12:16 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Correct me if I'm wrong, but the Windows license is the issue here - you're only allowed one user.&lt;br /&gt;
I vaguely remember such a useful feature nearly making it into XPSP1, but being yanked after the beta to stop such shennanigans.&lt;br /&gt;
There were/might still be copies of the relevant terminal services dll (termsrv?) floating around the web, but it's dodgier than it's worth IMHO.</description>
                                        <comments>http://www.linuxformat.com/forums/viewtopic.php?p=69526#69526</comments>
                                        <author>pootman</author>
                                        <pubDate>Sun Jan 25, 2009 12:16 am</pubDate>
                                        <guid isPermaLink="true">http://www.linuxformat.com/forums/viewtopic.php?p=69526#69526</guid>
                                      </item>
                                      <item>
                                        <title>remote user login</title>
                                        <link>http://www.linuxformat.com/forums/viewtopic.php?p=68947#68947</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=14106'&gt;dwjs1974&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Thu Jan 15, 2009 11:38 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Hi all, Hope everyone had a good newyear....&lt;br /&gt;
&lt;br /&gt;
(machine 1)&lt;br /&gt;
Laptop running windowsXP media edition&lt;br /&gt;
(machine 2)&lt;br /&gt;
Is a custom build DELL not sure if will have XP or vista&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
What they want to do?&lt;br /&gt;
They would like to remotely access machine 2 using the laptop mainly to check emails. but without disrupting the user on machine 2.&lt;br /&gt;
&lt;br /&gt;
I tested remote desktop and it will not allow 2 users on at the same time.&lt;br /&gt;
So my Question:&lt;br /&gt;
&lt;br /&gt;
Does anyone know any software (free) that will allow 2 users to be logged on at the same time. in there own profiles??&lt;br /&gt;
&lt;br /&gt;
Cheers&lt;br /&gt;
&lt;br /&gt;
Dave</description>
                                        <comments>http://www.linuxformat.com/forums/viewtopic.php?p=68947#68947</comments>
                                        <author>dwjs1974</author>
                                        <pubDate>Thu Jan 15, 2009 11:38 am</pubDate>
                                        <guid isPermaLink="true">http://www.linuxformat.com/forums/viewtopic.php?p=68947#68947</guid>
                                      </item></channel></rss>