<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Computerzworld &#187; DOS</title>
	<atom:link href="http://computerzworld.com/category/dos/feed/" rel="self" type="application/rss+xml" />
	<link>http://computerzworld.com</link>
	<description>Explore the world of computers.</description>
	<lastBuildDate>Thu, 21 Jul 2011 20:27:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Something about batch programming</title>
		<link>http://computerzworld.com/something-about-batch-programming/</link>
		<comments>http://computerzworld.com/something-about-batch-programming/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 18:14:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DOS]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://computerzworld.com/?p=572</guid>
		<description><![CDATA[The simplest idea of how to write a batch file is: Figure out how you would type the commands at a DOS prompt, then type them, one per line, in a text file — and you’ve written your batch file. &#8230; <a href="http://computerzworld.com/something-about-batch-programming/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles> </xml><![endif]--> <!--[if gte mso 10]><br />
<mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --></p>
<p><!--[endif]--></p>
<p class="MsoNormal">The simplest idea of how to write a batch file is: Figure out how you would type the commands at a DOS prompt, then type them, one per line, in a text file — and you’ve written your batch file.</p>
<p class="MsoNormal">
<h3>Commandline Arguements {%x}</h3>
<p class="MsoNormal">Variables can be inserted into a batch structure in the form of command line arguements. These are in the form %1, %2, etc. To populate the variables, type the desired values after the batch file name when executing it.</p>
<p class="MsoNormal">
<h3>DOS Environment Variable Names {%nn%}</h3>
<p class="MsoNormal">DOS environment variables also can be used as variables in batch files. For example:</p>
<p>COPY %windir%\filename a:</p>
<p>Where does one get a list of DOS environment variables? I have never found a comprehensive list; but a partial but lengthy list of existing environment variables can be gotten by typing SET at a command prompt.</p>
<p>And here’s the really cool part! You can make them up as you go along, and assign them as you wish (as long as you don’t grab one that has a legitimate assigned value, such as, say, %windir%, the Windows directory name!). Pick a name, populate it with the SET command by any means known to you (including having one batch file run a process that includes setting one, and then another batch file using it), then use it by placing the name between flanking % signs. Environment variables remain until overwritten, or until a reboot. (If you set them in a DOS window, they will end when that session is closed.)</p>
<p>If you precede an environment variable setting with the SETLOCAL command (on a line of its own), then environment variable changes are local to the batch file. They do not exist for any other process and they do not survive the completion of the batch file’s execution. You can turn this setting off by issuing an ENDLOCAL command later in the batch file.</p>
<p>Silly example: To change the current logged drive to D:, do the following:</p>
<p>SET GONEXT=D:<br />
%GONEXT%</p>
<p>More practical example: You want to copy a file to the desktop of each user the next time they log into Windows. Each user logs into a different user profile, and the Desktop folder is in a unique location for each user. (The folder name will, of course, vary on non-English versions of Windows.) For a file called MYFILE.TXT, you can do this as follows on Windows 2000 or XP computers by using an environment variable %userprofile% which gives the path to the root of a given user’s profile:</p>
<p>COPY MYFILE.TXT %userprofile%\Desktop</p>
<p class="MsoNormal">
<p class="MsoNormal">
<h3>START Command</h3>
<p class="MsoNormal">The START command can launch a Windows program either by specifying the program name (and its command-line parameters), or by specifying a data file name that is associated with a particular program (one that would automatically launch if you clicked on it in Windows).</p>
<p>For example, if you have NOTEPAD.EXE associated with all TXT files, then you could open the file SOME.TXT in any of the following four ways:</p>
<p>NOTEPAD SOME.TXT<br />
SOME.TXT<br />
START NOTEPAD.EXE SOME.TXT<br />
START SOME.TXT</p>
<p>Why use one or the other? Well, sometimes you may have to use one particular form to get a result — depending, for example, on how the particular program is coded. Though the first form usually will work, you may want, for example, to write a more general batch file to open any particular program and associated file — without knowing what the requirements of all such files might be. You could, then, write a general batch file line such as START %1% %2%.</p>
<p>One particular use of the START command is to launch the default browser and go directly to a URL, for example: START <a href="http://google.com/" target="_blank">http://google.com</a></p>
<p>You may use any of four command line parameters with the START command. These go after the word START, but before the program name:</p>
<p>/minimized or /m<br />
/maximized or /max<br />
/restored or /r<br />
/wait or /w</p>
<p>The first three determine the screen status in which the program opens. The last one forces the batch file to halt processing until the called program has finished executing. (This can be useful, for example, if you are loading multiple items in your windows Startup folder, and the nature of the programs require that one be finished before the next starts loading. Put them all in a single batch file, using the /wait parameter, and only put a shortcut to the batch file in the Startup folder.) Command line parameters of the START command can be combined in a single line. Example:</p>
<p>START /max /wait NOTEPAD.EXE SOME.TXT</p>
<p class="MsoNormal">
<h3>IF and IF NOT Commands</h3>
<p class="MsoNormal">There are three variations of the IF and IF NOT commands.</p>
<p>* IF EXIST: Execute the commandline only if a particular file exists:</p>
<p>IF EXIST some.txt COPY c:/some.dll %windir%/SYSTEM/some.dll<br />
* Compare two text strings, and execute the commandline only if they are identical.</p>
<p>IF %HostWinBootDrv%==C SET WinDir=C:\WINDOWS<br />
* Error testing: Check the exit code of the most recently run program. If it is equal to or greater than the number specified, execute the command:</p>
<p>IF ERRORLEVEL 4 ERASE trashfile.tmp /P</p>
<p class="MsoNormal">
<h3>GOTO Command</h3>
<p class="MsoNormal">You can set a label in a batch file by beginning a line with a colon. You can then go directly to that label with the GOTO command. The GOTO command searches both forward and backward in the batch file; that is, it simply goes to the label location, regardless of where it is in the file.</p>
<p>For example, in my batch file for removing the Happy99 virus, UNHAPPY.BAT, the following code was used to make sure a file was not deleted unless the original form of it (backed up by the virus under the name WSOCK32.SKA) is present:</p>
<p>IF NOT EXIST WSOCK32.SKA GOTO SavedIt<br />
DEL WSOCK32.DLL<br />
RENAME WSOCK32.SKA WSOCK32.DLL<br />
:SavedIt</p>
<p class="MsoNormal">
<h3>FOR Command</h3>
<p class="MsoNormal">The syntax for this command is: FOR variable in (set list) DO command</p>
<p>The variable must be in the form of one alphabetic character preceeded by %%; e.g., %%v.</p>
<p>NOTE: The %% is necessary because this is in a batch file which, otherwise, would give a special meaning to a single %. However, if you run the FOR command outside of a batch file, simply from the system prompt, just use a single % in the variable name. (Tip from Steve Wisdom)</p>
<p>The set list is enclosed within parentheses. These values will be assigned to the variable successively. You can use any text enclosed in quotes, batch file commandline parameters, environment variables, or DOS file wildcard expressions.</p>
<p>The command can be any valid command that otherwise could be entered into the batch file as a line of its own. example:</p>
<p>FOR %%D in (SYSTEM, COMMAND, SHELLNEW, &#8220;Start Menu&#8221;) DO DIR &#8220;%windir%\%%D&#8221; /W</p>
<p class="MsoNormal">
<h3>More Information on These Commands</h3>
<p class="MsoNormal">Each of these options (START, IF, GOTO, FOR) is an actual DOS command. At a system prompt, type the command name followed by /? to get further help on these items.</p>
<p>Note that there may be particular capabilities that show up in one version of Windows, but not in another. For example, though DOS per se may well be dead in Windows XP, the commandline functions people most often associate with DOS are not dead at all! (We just don’t call them “DOS commands” anymore; we call them “command prompt commands”. But they’re the same thing.) In some cases, these commands have been made more powerful in Windows XP. In particular, if Win XP Command Extensions are enabled, each of these four has very greatly enhanced capabilities (see Win XP Help &amp; Support to learn about Command Extensions). Take advantage of the opportunity to explore each of them with the /? help flag.</p>
<p>SOME EXAMPLES (that don’t even require Command Extensions): START has new flags that let you set the priority (/LOW, /NORMAL, /HIGH, etc.) of the application you are launching. IF has an ELSE option than greatly expands its power, but which requires a somewhat complicated syntax sometimes (which the /? help text covers reasonably well).</p>
<p>Since these START, IF, GOTO, and FOR are actual OS commands, they can be used from a system prompt just like DIR, COPY, or any other DOS command. This means that they can be used outside of a batch file as well. There are small differences or issues that you can easily discover in use, and discussion of which would go beyond the purpose of the present page. For anyone comfortable working at a DOS system prompt, this should present no significant problem.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-1667992008851710";
/* 468x15,hrstrip-small */
google_ad_slot = "5038650752";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://computerzworld.com/something-about-batch-programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All about Telnet</title>
		<link>http://computerzworld.com/all-about-telnet/</link>
		<comments>http://computerzworld.com/all-about-telnet/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 16:45:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DOS]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Technology]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://computerzworld.com/?p=561</guid>
		<description><![CDATA[Introduction: Telnet is used to connect to remote machines through emulation. This means that it can connect to a server, any server instantly because of it&#8217;s ability to emulate (copy) remote computers. In Windows, Telnet can be found by going &#8230; <a href="http://computerzworld.com/all-about-telnet/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles> </xml><![endif]--> <!--[if gte mso 10]><br />
<mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --></p>
<p><!--[endif]--><!--[if gte mso 9]><xml> <o:shapedefaults v:ext="edit" spidmax="1026" /> </xml><![endif]--><!--[if gte mso 9]><xml> <o:shapelayout v:ext="edit"> <o:idmap v:ext="edit" data="1" /> </o:shapelayout></xml><![endif]--></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">Introduction:</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">Telnet is used to connect to remote machines through emulation. This means that it can connect to a server, any server instantly because of it&#8217;s ability to emulate (copy) remote computers.</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">In Windows, Telnet can be found by going to Start -&gt; Run and then typing telnet. The application should then pop up. If you don&#8217;t have Windows, there are many Telnet alternatives for mac, linux etc. Since I don&#8217;t know any,search the internet for Telnet for Linux or Telnet for Mac and you should find something instantly.</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">If you have a PC and are using Windows 98/95, 2000, Me, or XP continue&#8230;</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">As you can see, Telnet has 4 menu options. These are Connect, Edit, Terminal, and Help.</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">If you click Connect, you should see more options. Here they are.</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">Connect:</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">Remote System..</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">Disconnect</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">Exit</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">Names of servers you have been on.</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">To connect to a server, click Remote System&#8230;</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">This will then take you to a dialog box that has these fields:</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">Hostname:</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">Port:</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">TermType:</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">There should also be a Connect button and a Cancel Button.</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">Lets go over these &amp; what you should put in them.</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">-Hostname-</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">The Hostname can be the address of the website your going to be connecting to:</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">http://www.computerzworld.com</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">or it can be the IP address. Keep in mind that you can only connect to servers and not to clients (other PCs)</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">an IP Address looks like this:</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">100.101.102.103</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">-Port-</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">Port can bb either the port number you wanna connect to on the server (Port 80 is the Internet, Port 23 is Simple Mail Protocol then there are some more ports for different things.</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">or you can keep it Telnet and see what happens.</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">-TermType-</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">TermType is the type of Terminal telnet will be acting like.</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">This doesn&#8217;t matter most of the time, so you can keep it to default or try other ones if you want.</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">When you have all this set up, you can Click Connect &amp; see what happens.</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">Note: Sometimes many servers don&#8217;t like anon people just logging on, so be careful when logging onto servers, because sometimes it might be some big company that likes bullying people or just SOMEONE who likes bullying people and then they might want to find you or trace you or something and I know for a fact you don&#8217;t need that happening.</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">Another Note: When you go to a server and type something, such as a login name or a password, you might not see anything even though you are typing. this is a feature that telnet or the other server uses. It&#8217;s for some kind of safety measure.</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">Ok that&#8217;s all for the Connect Menu, lets go over the Terminal menu.</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">The terminal menu should have 3 options:</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">Prefernces</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">Start Logging</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">Stop Logging.</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">-Prefernces-</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">If you go to this, a dialog box will come up with various options. Here, you can change the text color &amp; background color of the program, and you can enable Local Echo, which shows you everything you&#8217;ve typed, Blinking cursor if you want the cursor to blink check it, if not uncheck, Block cursor if you want the cursor to be shown as a block, VT100 Arrows, don&#8217;t worry about these they are useless, Buffer Size, this allows you to set the number of lines of text you want to be shown before the screen starts to scroll, The Terminal emualtion type, always have this set on the default unless you know what the second one is and you know what your doing.</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">-Start Logging-</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">This logs everything you do on Telnet in a log file on your computer.</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">-Stop Logging-</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;"> </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="font-size: 10pt; font-family: Arial;">This will stop logging processes.</span></p>
<p class="MsoNormal" style="text-align: justify;">
<p><script type="text/javascript"><!--
google_ad_client = "pub-1667992008851710";
/* 468x15,hrstrip-small */
google_ad_slot = "5038650752";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://computerzworld.com/all-about-telnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert a parttion Fat32 to NTFS by CMD</title>
		<link>http://computerzworld.com/convert-a-parttion-fat32-to-ntfs-by-cmd/</link>
		<comments>http://computerzworld.com/convert-a-parttion-fat32-to-ntfs-by-cmd/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 16:56:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DOS]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://computerzworld.com/?p=547</guid>
		<description><![CDATA[To convert a partition FAT16 or FAT32 to NFTS is easy. Quit all applications you are running Go to Start &#8212; Run and then type cmd. Enter this to the command line MS-DOS. Type: convert X: / FS: NTFS (where &#8230; <a href="http://computerzworld.com/convert-a-parttion-fat32-to-ntfs-by-cmd/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>To convert a partition FAT16 or FAT32 to NFTS is easy.<br />
Quit all applications you are running</p>
<p>Go to Start &#8212; Run and then type cmd. Enter this to the command line MS-DOS.</p>
<p>Type: convert X: / FS: NTFS (where x is the drive letter to convert), and begin the process of conversion. this is done, reboot your system.</p>
<p>You should not make any other operation during conversion to avoid system problems.<br /><script type="text/javascript"><!--
google_ad_client = "pub-1667992008851710";
/* 468x15,hrstrip-small */
google_ad_slot = "5038650752";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://computerzworld.com/convert-a-parttion-fat32-to-ntfs-by-cmd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copying data from DOS / console mode program screens</title>
		<link>http://computerzworld.com/copying-data-from-dos-console-mode-program-screens/</link>
		<comments>http://computerzworld.com/copying-data-from-dos-console-mode-program-screens/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 16:22:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DOS]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://computerzworld.com/?p=545</guid>
		<description><![CDATA[If you&#8217;re still using DOS or console mode (also refereed to as character mode) programs that doesn&#8217;t provide a way to export data, you maybe looking for a way to capture what&#8217;s displayed on such programs. Try this: * Start &#8230; <a href="http://computerzworld.com/copying-data-from-dos-console-mode-program-screens/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re still using DOS or console mode (also refereed to as character mode) programs that doesn&#8217;t provide a way to export data, you maybe looking for a way to capture what&#8217;s displayed on such programs. Try this:</p>
<p>    * Start a DOS box or a Command Prompt (DOS box) inside Windows.</p>
<p>          &#8220;Start | Programs | Command Prompt / DOS&#8221; </p>
<p>    * Run the character mode program that you want to import data from, and go to the screen with the data you want to capture.<br />
    * Right click the title bar of the DOS box<br />
    * Select &#8220;Edit | Mark&#8221;<br />
    * Click and drag the mouse until you select the data area that you want to copy. Press ENTER when you&#8217;ve finished selecting.<br />
    * Switch to the Windows program that you want to import the just copied data to, and select its paste function.<br />
<br /><script type="text/javascript"><!--
google_ad_client = "pub-1667992008851710";
/* 468x15,hrstrip-small */
google_ad_slot = "5038650752";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://computerzworld.com/copying-data-from-dos-console-mode-program-screens/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft File Compare</title>
		<link>http://computerzworld.com/microsoft-file-compare/</link>
		<comments>http://computerzworld.com/microsoft-file-compare/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 18:06:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DOS]]></category>

		<guid isPermaLink="false">http://computerzworld.com/?p=368</guid>
		<description><![CDATA[In MS-DOS 3.30 and later and all versions of Microsoft Windows come with Microsoft File Compare as the command fc. Whenever fc encounters a difference between the two files it is presented in the following format: ***** old.txt deleted lines  ***** &#8230; <a href="http://computerzworld.com/microsoft-file-compare/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">In MS-DOS 3.30 and later and all versions of Microsoft Windows come with Microsoft File Compare as the command <b>fc</b>. Whenever <b>fc</b> encounters a difference between the two files it is presented in the following format:</p>
<pre style="text-align: justify;">***** old.txt deleted lines </pre>
<pre style="text-align: justify;">***** NEW.TXT inserted lines ***** </pre>
<p style="text-align: justify;">Note that <b>fc</b> capitalizes the filename of the second file. This format is not useful as input for other computer programs. Line notations are missing, but more problematic for an algorithm is the output of filenames by <b>fc</b> which is indistinguishable from an inserted or deleted line beginning with five asterisks and a space. Such a line may occur in a file that was produced by or discusses <b>fc</b> itself.</p>
<p style="text-align: justify;">This is obsoleted by WinDiff which first shipped as part of the NT Resource Kit Tools.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-1667992008851710";
/* 468x15,hrstrip-small */
google_ad_slot = "5038650752";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://computerzworld.com/microsoft-file-compare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DBase &#8211; DOS database management system</title>
		<link>http://computerzworld.com/dbase-dos-database-management-system/</link>
		<comments>http://computerzworld.com/dbase-dos-database-management-system/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 18:01:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DOS]]></category>

		<guid isPermaLink="false">http://computerzworld.com/?p=367</guid>
		<description><![CDATA[dBase was the first widely used database management system (DBMS) for microcomputers, published by Ashton-Tate for CP/M, and later on the Apple II, Apple Macintosh, UNIX, VMS, and IBM PC under DOS where it became one of the best-selling software &#8230; <a href="http://computerzworld.com/dbase-dos-database-management-system/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_8VmFe69jRiQ/R_e-105cRQI/AAAAAAAAAGw/AgoSXzcTMuw/s1600-h/250px-Dbaseshot.png"><img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://bp0.blogger.com/_8VmFe69jRiQ/R_e-105cRQI/AAAAAAAAAGw/AgoSXzcTMuw/s320/250px-Dbaseshot.png" border="0" alt="" id="BLOGGER_PHOTO_ID_5185823327882331394" /></a></p>
<div style="text-align: justify;">dBase was the first widely used database management system (DBMS) for microcomputers, published by Ashton-Tate for CP/M, and later on the Apple II, Apple Macintosh, UNIX, VMS, and IBM PC under DOS where it became one of the best-selling software titles for a number of years. dBase was slow to transition successfully to Microsoft Windows and gradually lost market share to competitors such as Paradox, Clipper, FoxPro, and Microsoft Access. Ashton-Tate was bought by Borland in 1991, which sold the rights to the product line in 1999 to the newly-formed dBase Inc. In 2004, dBase Inc. changed its name to dataBased Intelligence, Inc.</div>
<div style="text-align: justify;"> </div>
<div style="text-align: justify;">Starting in the mid 1980s many other companies produced their own dialects or variations on the product and language. These included FoxPro (now Visual FoxPro), Arago, Force, dbFast, dbXL, Quicksilver, Clipper, Xbase++, FlagShip, Recital, CodeBase, MultiBase and Harbour/xHarbour. Together these are informally referred to as xBase.</div>
<div style="text-align: justify;"> </div>
<div style="text-align: justify;">dBase&#8217;s underlying file format, the .dbf file, is widely used in many other applications needing a simple format to store structured data.</div>
<p><script type="text/javascript"><!--
google_ad_client = "pub-1667992008851710";
/* 468x15,hrstrip-small */
google_ad_slot = "5038650752";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://computerzworld.com/dbase-dos-database-management-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MP3 Player for DOS</title>
		<link>http://computerzworld.com/mp3-player-for-dos/</link>
		<comments>http://computerzworld.com/mp3-player-for-dos/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 17:45:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DOS]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://computerzworld.com/?p=366</guid>
		<description><![CDATA[Dosamp is a software audio MP3 player made by Nullsoft for DOS operating systems. The project got dropped soon in favor of WinAMP product, thus has only historical relevance by now. There is however an up-to-date DOS audio player called &#8230; <a href="http://computerzworld.com/mp3-player-for-dos/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_8VmFe69jRiQ/R_e7l05cRPI/AAAAAAAAAGo/nAZRDIEKAJo/s1600-h/250px-DOSAmp.JPG"><img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://bp0.blogger.com/_8VmFe69jRiQ/R_e7l05cRPI/AAAAAAAAAGo/nAZRDIEKAJo/s320/250px-DOSAmp.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5185819754469541106" /></a><span class="Apple-style-span" style="font-weight: bold;">
<div style="text-align: justify;"><span class="Apple-style-span" style="font-weight: normal; ">Dosamp is a software audio MP3 player made by Nullsoft for DOS operating systems. The project got dropped soon in favor of WinAMP product, thus has only historical relevance by now. There is however an up-to-date DOS audio player called MPXPLAY available, unrelated to DOSamp. For more info and download click <a href="http://www.rjamorim.com/rrw/dosamp.html">here</a>.</span>
</div>
<p></span><br /><script type="text/javascript"><!--
google_ad_client = "pub-1667992008851710";
/* 468x15,hrstrip-small */
google_ad_slot = "5038650752";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://computerzworld.com/mp3-player-for-dos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Novell NetWare</title>
		<link>http://computerzworld.com/novell-netware/</link>
		<comments>http://computerzworld.com/novell-netware/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 17:32:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DOS]]></category>
		<category><![CDATA[Novell Netware]]></category>

		<guid isPermaLink="false">http://computerzworld.com/?p=364</guid>
		<description><![CDATA[NetWare is a network operating system developed by Novell, Inc. It initially used cooperative multitasking to run various services on a PC, and the network protocols were based on the archetypal Xerox XNS stack. NetWare has been superseded by Open &#8230; <a href="http://computerzworld.com/novell-netware/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_8VmFe69jRiQ/R_e4LU5cRNI/AAAAAAAAAGY/dlb63Gtc9nM/s1600-h/250px-NetWare_console_screenshot.png"><img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://bp2.blogger.com/_8VmFe69jRiQ/R_e4LU5cRNI/AAAAAAAAAGY/dlb63Gtc9nM/s320/250px-NetWare_console_screenshot.png" border="0" alt="" id="BLOGGER_PHOTO_ID_5185816000668124370" /></a></p>
<div style="text-align: justify;">NetWare is a network operating system developed by Novell, Inc. It initially used cooperative multitasking to run various services on a PC, and the network protocols were based on the archetypal Xerox XNS stack.</div>
<div style="text-align: justify;"> </div>
<div style="text-align: justify;">NetWare has been superseded by Open Enterprise Server (OES). The latest version of NetWare is v6.5 Support Pack 7, which is identical to OES 2, NetWare Kernel.</div>
<p><script type="text/javascript"><!--
google_ad_client = "pub-1667992008851710";
/* 468x15,hrstrip-small */
google_ad_slot = "5038650752";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://computerzworld.com/novell-netware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Commandlines for IP &#8211; Windows / DOS</title>
		<link>http://computerzworld.com/commandlines-for-ip-windows-dos/</link>
		<comments>http://computerzworld.com/commandlines-for-ip-windows-dos/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 16:07:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DOS]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://computerzworld.com/?p=351</guid>
		<description><![CDATA[Display Connection Configuration: ipconfig /all Display DNS Cache Info Configuration: ipconfig /displaydns Clear DNS Cache: ipconfig /flushdns Release All IP Address Connections: ipconfig /release Renew All IP Address Connections: ipconfig /renew Re-Register the DNS connections: ipconfig /registerdns Change/Modify DHCP Class &#8230; <a href="http://computerzworld.com/commandlines-for-ip-windows-dos/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div align="justify">Display Connection Configuration: ipconfig /all</p>
<p>Display DNS Cache Info Configuration: ipconfig /displaydns</p>
<p>Clear DNS Cache: ipconfig /flushdns</p>
<p>Release All IP Address Connections: ipconfig /release</p>
<p>Renew All IP Address Connections: ipconfig /renew</p>
<p>Re-Register the DNS connections: ipconfig /registerdns</p>
<p>Change/Modify DHCP Class ID: ipconfig /setclassid</p>
<p>Network Connections: control netconnections</p>
<p>Network Setup Wizard: netsetup.cpl</p>
<p>Test Connectivity: ping computerzworld.blogspot.com</p>
<p>Trace IP address Route: tracert</p>
<p>Displays the TCP/IP protocol sessions: netstat</p>
<p>Display Local Route: route</p>
<p>Display Resolved MAC Addresses: arp</p>
<p>Display Name of Computer Currently on: hostname</p>
<p>Display DHCP Class Information:ipconfig /showclassid</p>
</div>
<p><script type="text/javascript"><!--
google_ad_client = "pub-1667992008851710";
/* 468x15,hrstrip-small */
google_ad_slot = "5038650752";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://computerzworld.com/commandlines-for-ip-windows-dos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Folder Lock without Software</title>
		<link>http://computerzworld.com/folder-lock-without-software/</link>
		<comments>http://computerzworld.com/folder-lock-without-software/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 16:19:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DOS]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://computerzworld.com/?p=318</guid>
		<description><![CDATA[* Open Notepad and Copy and Paste the below code and save as locker.bat. * Edit your Password in the code in the 23rd line. It&#8217;s written there &#8220;Type your Password here&#8221;. * Erase the Quotation Marks and erase &#8220;Type &#8230; <a href="http://computerzworld.com/folder-lock-without-software/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div align="justify">* Open Notepad and Copy and Paste the below code and save as locker.bat. </p>
<p>* Edit your Password in the code in the 23rd line. It&#8217;s written there &#8220;Type your Password here&#8221;.<br />
<br />
* Erase the Quotation Marks and erase &#8220;Type your Password here&#8221; and type a new Password. </p>
<p>* At first time when you click on locker.bat, it will create folder named Locker automatically for you. </p>
<p>* After creation of Locker folder, again click on the locker.bat. </p>
<p>* It will ask for locking the folder, Press Y. </p>
<p>* Locker folder will now be disappeared. </p>
<p>* Again to get it, click on locker.bat. It will ask for your Password. </p>
<p>* Type your Password and the folder will be back again. </p>
<p>* If you want to change the name of Locker, then edit the each and every Locker written in the Script. </p>
<p>cls </p>
<p>@ECHO OFF </p>
<p>title Folder Locker </p>
<p>if EXIST &#8220;Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}&#8221; goto UNLOCK </p>
<p>if NOT EXIST Locker goto MDLOCKER </p>
<p>:CONFIRM </p>
<p>echo Are you sure u want to Lock the folder(Y/N) </p>
<p>set/p &#8220;cho=>&#8221; </p>
<p>if %cho%==Y goto LOCK </p>
<p>if %cho%==y goto LOCK </p>
<p>if %cho%==n goto END<br />
<br />
if %cho%==N goto END </p>
<p>echo Invalid choice. </p>
<p>goto CONFIRM </p>
<p>:LOCK </p>
<p>ren Locker &#8220;Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}&#8221; </p>
<p>attrib +h +s &#8220;Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}&#8221; </p>
<p>echo Folder locked </p>
<p>goto End </p>
<p>:UNLOCK </p>
<p>echo Enter password to Unlock folder </p>
<p>set/p &#8220;pass=>&#8221; </p>
<p>if NOT %pass%==&#8221;Type your Password here&#8221; goto FAIL </p>
<p>attrib -h -s &#8220;Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}&#8221; </p>
<p>ren &#8220;Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}&#8221; Locker </p>
<p>echo Folder Unlocked successfully </p>
<p>goto End </p>
<p>:FAIL </p>
<p>echo Invalid password </p>
<p>goto end </p>
<p>:MDLOCKER </p>
<p>md Locker </p>
<p>echo Locker created successfully </p>
<p>goto End </p>
<p>:End</div>
<p><script type="text/javascript"><!--
google_ad_client = "pub-1667992008851710";
/* 468x15,hrstrip-small */
google_ad_slot = "5038650752";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://computerzworld.com/folder-lock-without-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>


