<?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>Otak Atik [dot] Com &#187; DOS Command</title>
	<atom:link href="http://www.otakatik.com/tag/dos-command/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.otakatik.com</link>
	<description>Empowering Computer</description>
	<lastBuildDate>Wed, 25 Jan 2012 09:06:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Obtain Detail of Installed Drivers</title>
		<link>http://www.otakatik.com/obtain-detail-of-installed-drivers/</link>
		<comments>http://www.otakatik.com/obtain-detail-of-installed-drivers/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 02:19:03 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[MS-DOS]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[DOS Command]]></category>
		<category><![CDATA[driver]]></category>
		<category><![CDATA[driverquery]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/obtain-detail-of-installed-drivers/</guid>
		<description><![CDATA[To obtain of your all installed drivers on computer, you can browse them with Device Manager. You can find Device Manager in Control Panel –System, click Hardware tab, and then click Device Manager button. You can get your entire devices there including the troubled drivers. But the negative sides are you’re can’t get drivers information [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/logo.jpg" alt="Logo" title="Logo" align="left" />To obtain of your all installed drivers on computer, you can browse them with Device Manager. You can find Device Manager in <strong>Control Panel –System</strong>, click <strong>Hardware </strong>tab, and then click <strong>Device Manager</strong> button. You can get your entire devices there including the troubled drivers. But the negative sides are you’re can’t get drivers information enough with Device Manager. Thanks to Microsoft who has been provide a great tool to create detail information of entire device drivers.<span id="more-33"></span><br />
This tool calls <code>DriverQuery</code>, it is a command prompt tool. So, you need open your DOS console first before using it.<br />
Follow this tutorial:<br />
1. Click <strong>Start – Run</strong> menu (or press Windows + R keys), in Run textbox type <code>cmd</code>, and then click OK button or press Enter key.<br />
<img src="http://www.otakatik.com/wp-content/uploads/general/run-dialog-cmd.jpg" alt="Type cmd in textbox" title="Type cmd in textbox" /></p>
<p>2. Types at prompt <em>driverquery</em> then press Enter key to display entire your installed drivers.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/driver_1.jpg" alt="Driverquery" title="Driverquery command" /></p>
<p>3. And the power of <code>driverquery</code> is not only display result like that. You can use the parameter to optimize it. And this is driverquery parameters list:</p>
<pre name="code" class="html">
- /s Computer [Specifies the name or IP address of the computer.]- /u Domain\User [Specifies the domain and user account name to be used to run the command.]
- /p Password [Specifies the password for the user specified with the /s Computer parameter.]
- /fo {Table | List | CSV} [Used to specify the format of the output. You can choose to display the output in Table, List, or CSV format.]
- /nh [Used to suppress the display of column headers in the output.]
- /v [Used to obtain detailed information about all device drivers installed on the specified computer].
- /si [Used to obtain information about signed and unsigned device drivers.]</pre>
<p>4. For examples; type <code>driverquery /nh</code> to get result without columns header; type <code>driverquery /v</code> to get detail drivers information; <code>type driveryquery /si</code> to display the status of drivers are signed or unsigned; type <code>driverquery \\server_mysql /u office_1\farrel /p **** /fo List</code> to get drivers information from remote computer server_mysql where located in <strong>office_1</strong> domain and using <strong>farrel </strong>account and my password.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/driver_2.jpg" alt="Driverquery" title="Driverquery command" /></p>
<p>5. Then, I focus on <code>/v</code> and <code>/fo</code> parameters to help us exporting the result to spreadsheet application so that you can read it easily. OK, first step is export the drivers list and its information to a csv file by type <code>driverquery /v /fo csv &gt; your_own_file_result.csv</code> then Enter. Change your_own_file_result.csv name with yours. For example; if you want save the csv file into C:\Data folder and give it name: my_drivers.csv, type <code>driverquery /v /fo csv &gt; c:\data\my_drivers.csv</code> then press Enter.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/export_command_3.jpg" alt="Export command" title="Export command" /></p>
<p>6. Now, you’ve had my_drivers.csv file which contains information of entire drivers in C:\Data folder.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/my_driver_4.jpg" alt="The csv file" title="The csv file" /></p>
<p>7. Then I want to export it to Microsoft Excel. Open Microsoft Excel, click <strong>Data – Import External Data – Import Data</strong> menu,<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/import_data_menu_5.jpg" alt="Import csv file" title="Import csv file" /></p>
<p>in <strong>Select Data Source</strong> dialog pointing to your csv file, change <strong>Files of type</strong> to <strong>Text file</strong> to display your csv files (in my case I was pointing it to C:\Data folder and choose my_drivers.csv file), and click <strong>Open </strong>button.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/select_source_6.jpg" alt="Select source" title="Select source" /></p>
<p>8. In <strong>Text Import Wizard – Step 1 of 3</strong> dialog, leave <strong>Delimited </strong>is chosen, click <strong>Next </strong>button,<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/tiw_7.jpg" alt="Select delimited" title="Select delimited" /></p>
<p>click <strong>Comma</strong> check box as Delimiters,<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/tiw_8.jpg" alt="Select delimited" title="Select delimited" /></p>
<p>click <strong>Next</strong> button You can set columns type data in third step but I leave it as their default type, and then click <strong>Finish</strong> button.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/tiw_9.jpg" alt="Select delimited" title="Select delimited" /></p>
<p>9. If you ask the location to put the data, locate it where you want (I suggest to put it to <strong>New Worksheet</strong>), and then click <strong>OK</strong> button.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/import_data_10.jpg" alt="Select result location" title="Select result location" /></p>
<p>10. Now you can read them one by one easily. And the most important is you can analyze them, which are drivers have big size and use your resource by significance. If you&#8217;re already know, you can take the next action to optimize your computer.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0121/result_11.jpg" alt="Result" title="Result" /><br />
<em>(article no:0121)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/obtain-detail-of-installed-drivers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Comparison Between MS-DOS and BASH Commands</title>
		<link>http://www.otakatik.com/comparison-between-ms-dos-and-bash-commands/</link>
		<comments>http://www.otakatik.com/comparison-between-ms-dos-and-bash-commands/#comments</comments>
		<pubDate>Sun, 29 Jul 2007 04:57:46 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[MS-DOS]]></category>
		<category><![CDATA[BASH]]></category>
		<category><![CDATA[DOS Command]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/comparison-between-ms-dos-and-bash-commands/</guid>
		<description><![CDATA[If you a MS-DOS user (I know maybe you are a Windows XP user but maybe you still using a MS-DOS in you everyday life) and if you&#8217;re migrated to Ubuntu or MacOS X system someday you will forced to use Terminal that using BASH command within it (if you still like using command line). [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://otakatik.com/wp-content/uploads/tiptricks/0080/logo.jpg" alt="Logo" title="Logo" border="0" /><br />
If you a MS-DOS user (I know maybe you are a Windows XP user but maybe you still using a MS-DOS in you everyday life) and if you&#8217;re migrated to Ubuntu or MacOS X system someday you will forced to use Terminal that using BASH command within it (if you still like using command line). I want to share the comparison between MS-DOS syntax and BASH commands; hopefully it can help you&#8230;.<span id="more-31"></span><br />
Actually, I use it on Ubuntu 7.04 but I had try it with my Macbook and using MacOS X Terminal and I found that almost all commands that I had wrote here are worked too in MacOS X Terminal.<br />
Here are comparison between BASH commands and MS-DOS commands:</p>
<table style="border-collapse: collapse" border="1" bordercolor="#000000" cellpadding="1" cellspacing="0" height="54" width="100%">
<tr>
<td valign="top" width="5%"></td>
<td style="font-weight: bold" valign="top" width="25%">Command</td>
<td style="font-weight: bold" valign="top">MS-DOS Command</td>
<td style="font-weight: bold" valign="top" width="25%">Linux Shell Command (BASH Command)</td>
<td style="font-weight: bold" valign="top">Usage</td>
</tr>
<tr>
<td valign="top" width="5%">1</td>
<td valign="top" width="25%">Copy Files</td>
<td valign="top">COPY</td>
<td valign="top" width="25%"> cp</td>
<td style="font-family: courier new,courier,monospace" valign="top">cp &lt;filename&gt; &lt;new location&gt;</td>
</tr>
<tr>
<td valign="top">2</td>
<td valign="top">Move files</td>
<td valign="top">MOVE</td>
<td valign="top">mv</td>
<td style="font-family: courier new,courier,monospace" valign="top">mv &lt;filename&gt; &lt;new location&gt;</td>
</tr>
<tr>
<td style="vertical-align: top">3</td>
<td style="vertical-align: top">Rename files</td>
<td style="vertical-align: top">RENAME</td>
<td style="vertical-align: top">mv</td>
<td style="vertical-align: top; font-family: courier new,courier,monospace">mv &lt;old filename&gt; &lt;new filename&gt;</td>
</tr>
<tr>
<td style="vertical-align: top">4</td>
<td style="vertical-align: top">Delete files</td>
<td style="vertical-align: top">DEL</td>
<td style="vertical-align: top">rm</td>
<td style="vertical-align: top; font-family: courier new,courier,monospace">rm &lt;filename&gt;</td>
</tr>
<tr>
<td style="vertical-align: top">5</td>
<td style="vertical-align: top">Create directories</td>
<td style="vertical-align: top">MKDIR</td>
<td style="vertical-align: top">mkdir</td>
<td style="vertical-align: top; font-family: courier new,courier,monospace">mkdir &lt;directory name&gt;</td>
</tr>
<tr>
<td style="vertical-align: top">6</td>
<td style="vertical-align: top">Delete directories</td>
<td style="vertical-align: top">DELTREE/RMDIR</td>
<td style="vertical-align: top">rm</td>
<td style="vertical-align: top; font-family: courier new,courier,monospace">rm –rf &lt;directory name&gt;</td>
</tr>
<tr>
<td style="vertical-align: top">7</td>
<td style="vertical-align: top">Change directory</td>
<td style="vertical-align: top">CD</td>
<td style="vertical-align: top">cd</td>
<td style="vertical-align: top; font-family: courier new,courier,monospace">cd &lt;directory name&gt;</td>
</tr>
<tr>
<td style="vertical-align: top">8</td>
<td style="vertical-align: top">Edit text files</td>
<td style="vertical-align: top">EDIT</td>
<td style="vertical-align: top">vi</td>
<td style="vertical-align: top; font-family: courier new,courier,monospace">vi &lt;filename&gt;</td>
</tr>
<tr>
<td style="vertical-align: top">9</td>
<td style="vertical-align: top">View text files</td>
<td style="vertical-align: top">TYPE</td>
<td style="vertical-align: top">less</td>
<td style="vertical-align: top; font-family: courier new,courier,monospace">less &lt;filename&gt;</td>
</tr>
<tr>
<td style="vertical-align: top">10</td>
<td style="vertical-align: top">Print text files</td>
<td style="vertical-align: top">PRINT</td>
<td style="vertical-align: top">lpr</td>
<td style="vertical-align: top; font-family: courier new,courier,monospace">lpr &lt;filename&gt;</td>
</tr>
<tr>
<td style="vertical-align: top">11</td>
<td style="vertical-align: top">Compare files</td>
<td style="vertical-align: top">FC</td>
<td style="vertical-align: top">diff</td>
<td style="vertical-align: top; font-family: courier new,courier,monospace">diff &lt;file1&gt; &lt;file2&gt;</td>
</tr>
<tr>
<td style="vertical-align: top">12</td>
<td style="vertical-align: top">Find files</td>
<td style="vertical-align: top">FIND</td>
<td style="vertical-align: top">find</td>
<td style="vertical-align: top; font-family: courier new,courier,monospace">find –name &lt;filename&gt;</td>
</tr>
<tr>
<td style="vertical-align: top">13</td>
<td style="vertical-align: top">Check disk integrity</td>
<td style="vertical-align: top">SCANDISK</td>
<td style="vertical-align: top">fsck</td>
<td style="vertical-align: top; font-family: courier new,courier,monospace">fsck</td>
</tr>
<tr>
<td style="vertical-align: top">14</td>
<td style="vertical-align: top">View network settings</td>
<td style="vertical-align: top">IPCONFIG</td>
<td style="vertical-align: top">ifconfig</td>
<td style="vertical-align: top; font-family: courier new,courier,monospace">ifconfig</td>
</tr>
<tr>
<td style="vertical-align: top">15</td>
<td style="vertical-align: top">Check a network connection</td>
<td style="vertical-align: top">PING</td>
<td style="vertical-align: top">ping</td>
<td style="vertical-align: top; font-family: courier new,courier,monospace">ping &lt;ip address&gt;</td>
</tr>
<tr>
<td style="vertical-align: top">16</td>
<td style="vertical-align: top">View a network route</td>
<td style="vertical-align: top">TRACERT</td>
<td style="vertical-align: top">tracepath</td>
<td style="vertical-align: top; font-family: courier new,courier,monospace">tracepath &lt;address&gt;</td>
</tr>
<tr>
<td style="vertical-align: top">17</td>
<td style="vertical-align: top">Clear screen</td>
<td style="vertical-align: top">CLS</td>
<td style="vertical-align: top">clear</td>
<td style="vertical-align: top; font-family: courier new,courier,monospace">clear</td>
</tr>
<tr>
<td style="vertical-align: top">18</td>
<td style="vertical-align: top">Get help</td>
<td style="vertical-align: top">HELP</td>
<td style="vertical-align: top">man</td>
<td style="vertical-align: top; font-family: courier new,courier,monospace">man &lt;command&gt;</td>
</tr>
<tr>
<td style="vertical-align: top">19</td>
<td style="vertical-align: top">Quit</td>
<td style="vertical-align: top">EXIT</td>
<td style="vertical-align: top">exit</td>
<td style="vertical-align: top; font-family: courier new,courier,monospace">exit</td>
</tr>
<tr>
<td style="vertical-align: top">20</td>
<td style="vertical-align: top">Browse files</td>
<td style="vertical-align: top">DIR</td>
<td style="vertical-align: top">ls</td>
<td style="vertical-align: top"><span style="font-family: courier new,courier,monospace">ls</span></td>
</tr>
</table>
<p>You can subtitute command <span style="font-family: courier new,courier,monospace">man </span>(number 18) with <span style="font-family: courier new,courier,monospace">info &lt;command&gt;</span>, for example <span style="font-family: courier new,courier,monospace">info fsck.<br />
<span style="font-family: arial,helvetica,sans-serif">The BASH shell also offers a <span style="font-family: courier new,courier,monospace">rename</span> command, but this is usually used to rename many files at once, so I think <span style="font-family: courier new,courier,monospace">mv </span>command is more efficiently.</span><br />
</span>Hopefully, it can help you&#8230;..</p>
<p><em> (article no:0080)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/comparison-between-ms-dos-and-bash-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shut Down Many Computers From A Computer</title>
		<link>http://www.otakatik.com/shut-down-many-computers-from-a-computer/</link>
		<comments>http://www.otakatik.com/shut-down-many-computers-from-a-computer/#comments</comments>
		<pubDate>Sat, 05 May 2007 06:22:29 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[DOS Command]]></category>
		<category><![CDATA[shut down]]></category>
		<category><![CDATA[shutdown]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/shut-down-many-computers-from-a-computer/</guid>
		<description><![CDATA[If you are a network administrator at your office/company, you may ever be have an experience (or your daily job ) to shut down many computers that connected into your local area network. If you have to shut down it one by one computer, sure that job that annoy and tire. I have a trick [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0044/logo.jpg" alt="Logo" title="Logo" /><br />
If you are a network administrator at your office/company, you may ever be have an experience (or your daily job <img src='http://www.otakatik.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ) to shut down many computers that connected into your local area network. If you have to shut down it one by one computer, sure that job that annoy and tire. I have a trick to make your life as a network administrator be easier, I will share it for you&#8230;.<span id="more-17"></span>Windows XP has a tool that has included inside there, it calls <strong>shutdown </strong>tool. Shutdown tool is a tool which let you to shut down other computers from a computer.<br />
Follow these steps to use it:<br />
1. That tool is a DOS tool so you can call it from <strong>Start &#8211; Run</strong> menu and type <code>cmd</code> (open command prompt picture) and you may type <code>shutdown</code> at DOS prompt, but I suggest you just use the GUI option to make it easier. To call the GUI version of shut down tool you may type at <strong>Start &#8211; Run</strong> menu with <code>shutdown -i</code> and press Enter key.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0044/picture-1.jpg" alt="Shutdown -i" title="Type shutdown -i" /></p>
<p>2. If you doing it right so you will see a Remote Shutdown dialog window.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0044/picture-2.jpg" alt="Shutdown dialog" title="Type shutdown dialog" /></p>
<p>3. So, begin from adding a computer name that will turned it off with click <strong>Add</strong> button and then just type computer name on <strong>Add Computers</strong> window and if you&#8217;ve finished just click <strong>OK</strong> button.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0044/picture-3.jpg" alt="Add target computer name" title="Add target computer name" /><br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0044/picture-4.jpg" alt="Add target computer name" title="Add target computer name" /></p>
<p>4. Select your action at What do you want these computers to do combo box (<strong>Shutdown, Restart or Log off</strong> those computers), you may also set the warning time for user to prepare, set it with adjust value at <strong>Display warning for</strong> textbox (make sure <strong>Warn user of the action</strong> has checked).<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0044/picture-5.jpg" alt="Setting shut down" title="Setting shut down" /><br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0044/picture-6.jpg" alt="Setting shut down" title="Setting shut down" /></p>
<p>5. Don&#8217;t forget to choose your reason what the reason to shut down those computers, with select from <strong>Select the option that best describes, why you want to shutdown the computers</strong> combo box and also type your own comment at comment textbox.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0044/picture-7.jpg" alt="Type comment" title="Type comment" /></p>
<p>6. After you click the <strong>OK</strong> button so the other users will see the <strong>System Shutdown</strong> window and they also can look the time and comment that you&#8217;ve set.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0044/picture-8.jpg" alt="Shut down message" title="Shut down message" /></p>
<p>7. The users may cancel the shut down command with type at Run textbox with <code>shutdown -a</code> (also can type it at Command Prompt console).<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0044/picture-9.jpg" alt="Cancel command" title="Cancel command" /></p>
<p><em>note :<br />
(a) You can explore the shutdown option with just type <code>shutdown</code> at Command prompt console (for example : You also make the other computers shut down with command : <code>shutdown -r -m \\computername -c "Want apply new driver, sorry...."</code><br />
(b) Make sure you have an Administrator access to your client computers.</em></p>
<p><em>(article no:0044)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/shut-down-many-computers-from-a-computer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Send message with NET SEND</title>
		<link>http://www.otakatik.com/send-message-with-net-send/</link>
		<comments>http://www.otakatik.com/send-message-with-net-send/#comments</comments>
		<pubDate>Tue, 10 Apr 2007 04:55:26 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[DOS Command]]></category>
		<category><![CDATA[LAN]]></category>
		<category><![CDATA[net command]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/send-message-with-net-send/</guid>
		<description><![CDATA[If you want send a message to other user in the same local network but you don&#8217;t have a 3rd party software to making LAN chat happened. Don&#8217;t worry, Windows has a emergency tool for you&#8230; You can use net command (This tool has included at Windows 9x, Windows ME, Windows XP.) by DOS Console, [...]]]></description>
			<content:encoded><![CDATA[<p><img title="Logo" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0025/logo.jpg" alt="Logo" /><br />
If you want send a message to other user in the same local network but you don&#8217;t have a 3rd party software to making LAN chat happened. Don&#8217;t worry, Windows has a emergency tool for you&#8230;<br />
<span id="more-10"></span>You can use <code>net</code> command (This tool has included at Windows 9x, Windows ME, Windows XP.) by DOS Console, here it are the steps:<br />
1. Click <strong>Start &#8211; Run</strong> menu, type <code>cmd</code> in its textbox and then press Enter<br />
<img title="Type cmd in textbox" src="http://www.otakatik.com/wp-content/uploads/general/run-dialog-cmd.jpg" alt="CMD in textbox" /></p>
<p>or by <strong>Start Menu &#8211; Programs &#8211; Accessories &#8211; Command Prompt</strong>.<br />
<img title="Open command prompt" src="http://www.otakatik.com/wp-content/uploads/general/call-commandprompt.jpg" alt="Open command prompt" /></p>
<p>2. Type <code>net send destination_computer_name message</code>, for example : <code>net send server "Just Test"</code> (you can add double quote or not).<br />
<img title="Execute net send command" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0025/picture-1.jpg" alt="Execute net send command" /></p>
<p>4. At your destination computer the dialog box that contain your message will show up.<br />
<img title="Message box" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0025/picture-2.jpg" alt="Message box" /></p>
<p>note : If you fail try this trick, you must activate the <strong>Messenger</strong> Windows Service first. <a href="http://www.otakatik.com/manage-windows-services/">Read my article about how to activate the Windows Service</a>.<br />
<em>(article no:0025)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/send-message-with-net-send/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Cek a Network Address or URL</title>
		<link>http://www.otakatik.com/cek-a-network-address-or-url/</link>
		<comments>http://www.otakatik.com/cek-a-network-address-or-url/#comments</comments>
		<pubDate>Sat, 07 Apr 2007 02:04:59 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[command prompt]]></category>
		<category><![CDATA[DOS Command]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[ping]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/cek-a-network-address-or-url/</guid>
		<description><![CDATA[Sometimes, if you want to check how long your data take time to a Network address from your computer, you can use small application that run on DOS Console. Just follow these steps: 1. Click on Start menu &#8211; Run and OK. 2. Type cmd at Run textbox then click OK button or you can [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0010/picture-1.jpg" alt="Ping Command" title="Ping command" /><br />
Sometimes, if you want to check how long your data take time to a Network address from your computer, you can use small application that run on DOS Console.<br />
<span id="more-6"></span><br />
Just follow these steps:<br />
1. Click on <strong>Start menu &#8211; Run</strong> and <strong>OK</strong>.<br />
<img src="http://www.otakatik.com/wp-content/uploads/general/start-run.jpg" alt="Start-Run" title="Start - Run" /></p>
<p>2. Type <code>cmd</code> at Run textbox then click OK button<br />
<img src="http://www.otakatik.com/wp-content/uploads/general/run-dialog-cmd.jpg" alt="Type cmd" title="Type cmd" /></p>
<p>or you can execute it from <strong>Start &#8211; All Programs &#8211; Accessories &#8211; Command Prompt</strong>.<br />
<img src="http://www.otakatik.com/wp-content/uploads/general/call-commandprompt.jpg" alt="Call Command Prompt" title="Call Command Prompt" /></p>
<p>3. After DOS Console appear then type <code>PING your_address or IP</code> press ENTER key. Destination address can in domain name or ip number, for example : <code>PING abzsdfdfd.com</code> or <code>PING 202.155.x.x</code>.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0010/picture-1.jpg" alt="Ping Command" title="Ping command" /></p>
<p>4. If the result is time out you can retry it with a parameter <code>-w value_time</code> the bigger value it&#8217;s mean PING will give more &#8216;time tolerance&#8217;. For examples <code>PING abzsdsdsd.com -w 1000</code>. And see the result if time value is small it&#8217;s mean you get a better result.<br />
<em>(article no:0010)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/cek-a-network-address-or-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

