<?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; Networking</title>
	<atom:link href="http://www.otakatik.com/category/networking/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>Schedule Tasks with Command Prompt</title>
		<link>http://www.otakatik.com/schedule-tasks-with-command-prompt/</link>
		<comments>http://www.otakatik.com/schedule-tasks-with-command-prompt/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 05:13:10 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Internet World]]></category>
		<category><![CDATA[MS-DOS]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[Scheduler]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/?p=146</guid>
		<description><![CDATA[There&#8217;re so many available ways to create schedule tasks in Windows XP. From command line until GUI tools, you can choose one from them. And then I curious to try the command line schedule tasks tools which have bundled by Windows XP. The tools are at command and schtasks command. The at command is an [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0110/logo.png" alt="" align="left" />There&#8217;re so many available ways to create schedule tasks in Windows XP. From command line until GUI tools, you can choose one from them. And then I curious to try the command line schedule tasks tools which have bundled by Windows XP. The tools are <code>at</code> command and <code>schtasks</code> command.<span id="more-146"></span></p>
<p>The <code>at</code> command is an old command that avaiable since Windows 2000 (correct me if I wrong), you can create remote tasks with this command. And best part from <em>at</em> command is it has simple parameters. Just put some parameters with it and then a task will created. On other side with <code>schtasks</code> command you can create complex tasks but maybe you can confused with its parameters that so complicated.<br />
OK, first we will learn about at command.</p>
<ol>
<li>To use at command, open your command console first via <strong>Start</strong> -&gt; <strong>Run</strong> menu and then type <code>cmd</code> in textbox or via <strong>Start</strong> -&gt; <strong>All Programs</strong> -&gt; <strong>Accessories</strong> -&gt; <strong>Command Prompt</strong>.</li>
<li> At prompt type <code>at /?</code> if you want get some help from <code>at</code> command.</li>
<li> To create a remote task, just type <code>at \\server 6pm /every:sunday "winword.exe"</code>, we can learn from that command parameters, <strong><code>\\server</code></strong> is your remote computer, 6pm is the time that the task will ran, <strong><code>/every:sunday</code></strong> is day parameter and last &#8220;winword&#8221; is task will ran.<br />
<img title="AT Command" src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0110/at_1.jpg" alt="AT Command" /></li>
<li> If you want display all running tasks just type at on prompt.<br />
<img title="AT Command" src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0110/at_2.jpg" alt="AT Command" /></li>
<li> To delete a task, type <code>at 2 /delete</code>, number 2 is id task you can look it with typing at at your prompt (point 2), <code>/delete</code> is parameter to delete a task. To delete entire tasks, type <code>at /delete</code>.<br />
<img title="AT Command to delete task" src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0110/at_3.jpg" alt="AT Command to delete task" /></li>
<li> Almost forgeted, if you want create a local task, just type <code>at 6pm /every:sunday "test.bat"</code>, you can look the explaining in point 3.<br />
<img title="AT Command to create task on local computer" src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0110/at_4.jpg" alt="AT Command to create task on local computer" /></li>
</ol>
<p>Now, I want discuss about <strong><code>schtasks</code></strong> command.</p>
<ol>
<li> To create a task with <code>schktaks</code> command, type <code>schtasks /create /ru system /sc weekly /d fri /tn "Remain me to make report" /tr "excel.exe" /st 19:00:00</code>. And this is the explanation from that command; <code>/create</code> is parameter to create task, <code>/ru</code> is parameter to set user that run this task,  <code>/sc</code> is paremeter to defines frequency the task will ran you can choose MINUTE, HOURLY, DAILY, WEEKLY, MONTHLY, ONCE, ONSTART, ONLOGON, ONIDLE for parameter value, <code>/d</code> is day to run, <code>/tn</code> is parameter to task name, <code>/tr</code> is parameter to set task to run, <code>/st</code> is parameter to start to run.<br />
<img title="Schtaks command" src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0110/schtasks_5.jpg" alt="Schtaks command" /></li>
<li> To display all run tasks type <code>schtasks</code> at prompt.<br />
<img title="Schtaks command to view entire task" src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0110/schtasks_6.jpg" alt="Schtaks command to view entire task" /></li>
<li> To display all tasks that have been created with <code>at</code> command or <code>schtasks</code> command you can display it with Scheduled Tasks software that run in GUI mode. To open it click <strong>Start</strong> &#8211; <strong>All Programs</strong> &#8211; <strong>Accessories</strong> &#8211; <strong>System Tool</strong> - ,<br />
<img title="GUI Mode to view entire task" src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0110/sch_tasks_7.jpg" alt="GUI mode to view entire task" /><br />
and look what happend with your all tasks in there.<br />
<img title="GUI Mode to view entire task" src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0110/sched_task_8.jpg" alt="GUI mode to view entire task" /></li>
<li> And to delete task with <code>schtasks</code> command, type <code>schtasks /delete /tn "Remain me to make report" /F</code>, <code>/tn</code> fill with your task name, <code>/f</code> parameter is parameter to forces the utility to delete the task and suppress any warnings when the task is currently running.<br />
<img title="Command to delete a task" src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0110/sch_tasks_9.jpg" alt="Command to delete a task" /></li>
<li> To display all schtasks parameter type <code>schtasks /?</code> or if you want detail about <code>/delete</code> parameter or else, type <code>schtasks /delete /?</code> at your prompt.</li>
</ol>
<p>I hope your job to scheduling your task will be more easier.</p>
<p>note:<br />
Whaever the method you take to create scheduled tasks don&#8217;t forget to activate Task Scheduler Service (by default, Windows XP always activate it), to learn more about Activate Windows Service, look here.<br />
<img title="Taks Scheduler service" src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0110/task_service_10.jpg" alt="Task Service" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/schedule-tasks-with-command-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Block a Website Address using HOSTS file</title>
		<link>http://www.otakatik.com/block-a-website-address-using-hosts-file/</link>
		<comments>http://www.otakatik.com/block-a-website-address-using-hosts-file/#comments</comments>
		<pubDate>Sat, 31 May 2008 02:54:22 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[Internet Browser]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/?p=111</guid>
		<description><![CDATA[Actually, HOSTS file is using by Windows to mapping host name to an IP address. Windows has been giving us a sample. The sample is localhost name, by default that host name is mapping to IP address: 127.0.0.1. So, if you enter localhost at your browser address bar, Windows will map localhost to 127.0.0.1 address. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="margin: 5px; float: left;" src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0105/logo.png" alt="" />Actually, HOSTS file is using by Windows to mapping host name to an IP address.  Windows has been giving us a sample. The sample is <strong>localhost </strong>name, by default that host name is mapping to IP address: <strong>127.0.0.1</strong>. So, if you enter <strong>localhost </strong>at your browser address bar, Windows will map <strong>localhost</strong> to <strong>127.0.0.1</strong> address. And you can add your own host name to your chosen IP address.<span id="more-111"></span></p>
<p>So, look its feature, we can block a website or many websites addresses. Just simple, map your ‘hated’ website address to 127.0.0.1 address. As you know, 127.0.0.1 is localhost address, so if you map adxxx.com to 127.0.0.1, Windows will access 127.0.0.1 every your access adxxx.com. And here are the steps:</p>
<ol>
<li> Open folder: <strong>C:\Windows\System32\drivers\etc</strong>. <strong>C:\Windows</strong> is your Windows installation folder and you may change it if your Windows folder is different with mine. Or you can enter in <strong>Run</strong> box <code>%systemroot%\system32\drivers\etc</code> and then press <strong>Enter</strong>.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0105/browse_file_1.jpg" alt="" /></li>
<li>Then find hosts file, open that file by double click it. If it is not associate yet with text editor, Open With window will appear and then choose <strong>Notepad </strong>as default application.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0105/open_with_2.jpg" alt="" /></li>
<li>After hosts file is opened, you’ll see its description and localhost mapping.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0105/opened_hosts_3.jpg" alt="" /></li>
<li>To create new map address, just add to new line and map it to <code>127.0.0.1 host_name</code>. For example, if you want block domain name: typeyourdomainhere.com, just write at new line, <code>127.0.0.1 typeyourdomainhere.com</code> and then save it by press <strong>Ctrl + S</strong> keys or click <strong>File </strong>–&gt; <strong>Save</strong> menu.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0105/add_line_4.jpg" alt="" /></li>
<li>Now, try access your blocked website address.</li>
</ol>
<p><img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0105/not_auth_5.jpg" alt="" /></p>
<p>Then, just add other addresses to block the <em>naughty </em>website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/block-a-website-address-using-hosts-file/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hide Your Shared Folder</title>
		<link>http://www.otakatik.com/hide-your-shared-folder/</link>
		<comments>http://www.otakatik.com/hide-your-shared-folder/#comments</comments>
		<pubDate>Fri, 16 May 2008 03:36:19 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Internet World]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[sharing folder]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/?p=92</guid>
		<description><![CDATA[If we share our folder to other clients or friends in local network, it can to make a fun work. Because you can share your files or folders to your office partner so you don’t necessary to copy it via flask disk. But some times, you want to hide your shared folder from your all [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="margin: 5px; float: left;" src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0132/logo.jpg" alt="" width="98" height="116" />If we share our folder to other clients or friends in local network, it can to make a fun work. Because you can share your files or folders to your office partner so you don’t necessary to copy it via flask disk. But some times, you want to hide your shared folder from your all of your friends such as a data folder. You want to access your shared folder from other computer but it’s not exposed to public users.<span id="more-92"></span><br />
You can make it with a little trick.</p>
<ol>
<li> Set your folder to shared folder first by right click your folder, and then click <strong>Sharing and Security</strong><br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0132/sharing_menu_1.jpg" alt="" /></li>
<li>Click <strong>Sharing</strong> tab, click <strong>Share</strong> this folder option, and if you want to hide it, give it name and end it by <strong>$</strong> character. For example, if you want give it name ImageCD, add it with $ character so you must enter its name: ImageCD$. Then press Enter.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0132/sharing_tab_2.jpg" alt="" /></li>
<li>To access your folder from other computer, click <strong>Start</strong> –&gt; <strong>Run</strong> menu, enter <code>\\computer_name\shared_folder_name$</code> then press Enter. In my case, I enter <code>\\farrel\imagecd$</code>.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0132/run_3.jpg" alt="" /></li>
<li>Then your shared folder will open.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/hide-your-shared-folder/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Looking Our Network Configurations</title>
		<link>http://www.otakatik.com/looking-our-network-configurations/</link>
		<comments>http://www.otakatik.com/looking-our-network-configurations/#comments</comments>
		<pubDate>Wed, 09 Jan 2008 13:06:34 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/?p=67</guid>
		<description><![CDATA[Computer networking is an important facility in every computer today. Without it, you can’t to connect internet or to other computers. So, you need to know your network configurations that installed on your computer. What is the LAN Card, Wi-Fi card or the other network device that installed? To determine it, you can look it [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.otakatik.com/wp-content/uploads/general/ms-dos-logo.jpg" alt="" align="left" />Computer networking is an important facility in every computer today. Without it, you can’t to connect internet or to other computers. So, you need to know your network configurations that installed on your computer. What is the LAN Card, Wi-Fi card or the other network device that installed? To determine it, you can look it through Control Panel &#8211; Network Connections. But you can look it by shorter way.<span id="more-67"></span><br />
We’ll look them via MS-DOS prompt. Here it is:</p>
<p>1. Open your MS-DOS Console first by click <strong>Start – Run</strong> menu, type <code>cmd</code> in textbox and then press <strong>Enter</strong> key.</p>
<p><img title="Open Command Prompt" src="http://www.otakatik.com/wp-content/uploads/general/run-dialog-cmd.jpg" alt="Open Command Prompt" /></p>
<p>2. At prompt console, type <code>ipconfig/all</code> then press <strong>Enter</strong> key.</p>
<p><img title="IP Config result" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0011/picture-1.jpg" alt="IP Config result" /></p>
<p>Your entire network devices will displayed within its configurations clearly.</p>
<p><em>(article no:0011)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/looking-our-network-configurations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Access Windows Sharing Folder From Mac OS X</title>
		<link>http://www.otakatik.com/how-to-access-windows-sharing-folder-from-mac-os-x/</link>
		<comments>http://www.otakatik.com/how-to-access-windows-sharing-folder-from-mac-os-x/#comments</comments>
		<pubDate>Wed, 18 Jul 2007 02:54:40 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[sharing folder]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/how-to-access-windows-sharing-folder-from-mac-os-x/</guid>
		<description><![CDATA[If you&#8217;re a new Mac OS X user, maybe you confused when you&#8217;ll connect to your office network that using Windows Sharing system and want to open the shared folder. It&#8217;s maybe a small problem but for the new user maybe it&#8217;s their (including me) headache source OK, I&#8217;ll share how to access Windows sharing [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0077/logo.png" alt="Logo" title="Logo" /><br />
If you&#8217;re a new Mac OS X user, maybe you confused when you&#8217;ll connect to your office network that using Windows Sharing system and want to open the shared folder. It&#8217;s maybe a small problem but for the new user maybe it&#8217;s their (including me) headache source <img src='http://www.otakatik.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  OK, I&#8217;ll share how to access Windows sharing folder from your Mac OS X system&#8230;.<span id="more-27"></span><br />
Make sure your destination PC has been set the sharing folder, the mark the shared folder is you&#8217;ll see the hand icon in the shared folder.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0077/windows_sharing_1.jpg" alt="Windows sharing appearance" title="Windows sharing appearance" /></p>
<p>And how access it from your Mac OS X computer, just follow these:<br />
1. Click <strong>Go &#8211; Connect</strong> to Server on Finder menu.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0077/menu_connect_2.jpg" alt="Go - Connect menu" title="Go - Connect menu" /></p>
<p>2. And type <code>smb://destination_computer_name</code> or <code>smb://destination_computer_ip_address</code> on the <strong>Server Address</strong> input, for example : <code>smb://server-sql</code> or <code>smb://192.168.1.1</code>.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0077/connect_dialog_3.jpg" alt="Connect dialog" title="Connect dialog" /></p>
<p>3. You can add the address to your list with click the <strong>+</strong> button.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0077/add_address_4.jpg" alt="Add button" title="Add button" /></p>
<p>4. And it is connecting&#8230;<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0077/connecting_5.jpg" alt="Connecting..." title="Connecting..." /></p>
<p>5. If you&#8217;re access that folder for the first time you will confirm for the <strong>Workgroup</strong> name, <strong>User name</strong> and <strong>Password</strong> and just fill it with your office Workgroup name and user name/password fill with user name that registered in destination computer (Windows user name).<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0077/auhentication_6.jpg" alt="Authentication" title="Authentication window" /></p>
<p>7. And list folder that shared in the destination computer will show up.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0077/list_share_7.jpg" alt="Shared folder list" title="Shared folder list" /></p>
<p>8. Just choose it, and then click <strong>OK</strong> button.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0077/open_combo_8.jpg" alt="Select shared folder" title="Select shared folder" /></p>
<p>9. If it is connected, and then you can access it through the <strong>Finder</strong>.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0077/result_9.jpg" alt="Result" title="Result" /><br />
<em> (article no:0077)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/how-to-access-windows-sharing-folder-from-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>1</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>Repair Your Friend&#8217;s Computer Remotely</title>
		<link>http://www.otakatik.com/repair-your-friends-computer-remotely/</link>
		<comments>http://www.otakatik.com/repair-your-friends-computer-remotely/#comments</comments>
		<pubDate>Fri, 20 Apr 2007 15:58:36 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[remote desktop]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/repair-your-friends-computer-remotely/</guid>
		<description><![CDATA[This morning, my friend asked me to repair her computer but the problem is her computer at different floor with my office but still in the same local area network. So, I have tried to using Remote Desktop. Remote Desktop has included with Windows XP installation so you don&#8217;t need buy anything again. And I [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/logo.jpg" alt="logo" title="Logo" /><br />
This morning, my friend asked me to repair her computer but the problem is her computer at different floor with my office but still in the same local area network. So, I have tried to using Remote Desktop. Remote Desktop has included with Windows XP installation so you don&#8217;t need buy anything again. And I propose to share my experience using Remote Desktop here.<br />
<span id="more-15"></span>Just follow these steps:<br />
1. Open control panel window with <strong>Start &#8211; Control panel</strong> menu (picture:open control panel).<br />
<img src="http://www.otakatik.com/wp-content/uploads/general/start-cpanel.jpg" alt="Open Control Panel" title="Open Control Panel" /></p>
<p>2. Double click / open <strong>System</strong> icon.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-1.jpg" alt="Open System" title="Open System" /></p>
<p>3. Check <strong>Allow Remote Assistance invitations to be sent from this computer</strong> and <strong>Allow users to connect remotely to this computer</strong> radio box value.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-2.jpg" alt="Setting Remote Desktop" title="Setting Remote Desktop" /></p>
<p>4. You also set the Remote Assistance with click <strong>Advanced </strong>button, and you will get Remote Assistance Setting show up and you can make the setting there.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-3.jpg" alt="Setting Remote Desktop" title="Setting Remote Desktop" /></p>
<p>5. By default, the user that has a permission <strong>is Administrator </strong>but you can make another user has the ability to reach your computer, if you want to give them access to your computer just clicks <strong>Select Remote</strong> users button.</p>
<p>6. After Remote Desktop Users window show up, if you want add member users that will has given access to you computer just clicks <strong>Add</strong> button.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-4.jpg" alt="Add User" title="Add User" /></p>
<p>7. In <strong>Select Users</strong> window click <strong>Advanced</strong> button,<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-5.jpg" alt="Select User" title="Select User" /></p>
<p>and Select Users window will show up<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-6.jpg" alt="Select User" title="Select User" /></p>
<p>and just click <strong>Find Now</strong> button to show all users at your Windows.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-7.jpg" alt="Select User" title="Select User" /></p>
<p>8. And click user in user list that will has given access then click <strong>OK</strong> button.</p>
<p>9. Setting section has over, and you just call Remote Desktop connection program, you can execute it from <strong>Start &#8211; All Programs &#8211; Accessories &#8211; Communications &#8211; Remote Desktop Connection</strong> or <strong>Start Menu &#8211; Run</strong> menu then type <code>mstsc</code> in Run textbox and then click <strong>OK</strong> (just choose which ways that you think is easier way).<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-8.jpg" alt="Start Remote Desktop" title="Start Remote Desktop" /></p>
<p>10. After Remote Desktop Connection window appears you just type your friend&#8217;s computer name directly and click <strong>Connect</strong> button (picture-9).<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-9.jpg" alt="Connect" title="Connect" /></p>
<p>11. Or you want to modify its setting it first, just click <strong>Option</strong> button and Remote Desktop Connection window will be expanded. In <strong>General </strong>tab you can set the computer that will called and you can save your configuration with click <strong>Save As</strong> button.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-10.jpg" alt="Remote Desktop Options" title="Remote Desktop Options" /></p>
<p>12. <strong>Display</strong> tab, setting the display resolution that you want.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-11.jpg" alt="Display Options" title="Display Options" /></p>
<p>13. <strong>Local Resources</strong> tab, you can setting which remote client resource which will to used.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-12.jpg" alt="Local Resources Options" title="Local Resources Options" /></p>
<p>14. <strong>Program</strong> tab, this tab to setting the program that will execute after the connection was made.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-13.jpg" alt="Programs Options" title="Programs Options" /></p>
<p>15. <strong>Experience</strong> tab, to set your connection speed.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-14.jpg" alt="Experience Options" title="Experience Options" /><br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-15.jpg" alt="Experience Options" title="Experience Options" /></p>
<p>16. <strong>Security</strong> tab, I&#8217;ve decided to setting it to <strong>No Authentication</strong> value.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-16.jpg" alt="Experience Options" title="Experience Options" /></p>
<p>17. Now, click <strong>Connect</strong> button.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-17.jpg" alt="Connect Now" title="Connect Now" /></p>
<p>18. If you ask the user and password just type it.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-18.jpg" alt="Ask User name and Password" title="Confirm User and Password" /></p>
<p>19. You can control your friend&#8217;s computer now and time to fix it.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-19.jpg" alt="Connected" title="Connected" /></p>
<p>20. If you want disconnect it just close Remote Desktop window and click <strong>OK</strong> button when you get a Disconnect message.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0039/picture-20.jpg" alt="Disconnected" title="Disconnected" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/repair-your-friends-computer-remotely/feed/</wfw:commentRss>
		<slash:comments>0</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>Switch Simple to Advanced Mode Files Sharing</title>
		<link>http://www.otakatik.com/switch-simple-to-advanced-mode-files-sharing/</link>
		<comments>http://www.otakatik.com/switch-simple-to-advanced-mode-files-sharing/#comments</comments>
		<pubDate>Sun, 08 Apr 2007 15:56:20 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/switch-simple-to-advanced-mode-files-sharing/</guid>
		<description><![CDATA[By default, Windows XP is setting file sharing to simple mode, but for the advanced user, this mode make s them not satisfy because they can&#8217;t setting the permission user setting and others advance setting. But you can switch that easily from simple mode to advanced mode. Follow these steps : 1. Open Windows Explorer [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0020/logo.jpg" alt="logo" title="Logo" /><br />
By default, Windows XP is setting file sharing to simple mode, but for the advanced user, this mode make s them not satisfy because they can&#8217;t setting the permission user setting and others advance setting. But you can switch that easily from simple mode<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0020/picture-1.jpg" alt="Sharing mode" title="Sharing mode" /><br />
to advanced mode.<br />
<span id="more-9"></span><br />
Follow these steps :<br />
1. Open Windows Explorer and click <strong>Tools &#8211; Folder Options</strong> menu.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0020/picture-2.jpg" alt="Folder Options" title="Folder Options" /></p>
<p>2. Choose <strong>View</strong> tab and make sure <strong>Use simple file sharing</strong> is unchecked (picture-3), click <strong>OK</strong> button.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0020/picture-3.jpg" alt="Unchecked" title="Unchecked" /></p>
<p>3. And try to right click mouse button on your folders that will shared, and Files Sharing window has changed.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0020/picture-4.jpg" alt="Advanced Mode" title="Advanced Mode" /></p>
<p><em>(article no:0020)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/switch-simple-to-advanced-mode-files-sharing/feed/</wfw:commentRss>
		<slash:comments>0</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>

