<?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; Internet World</title>
	<atom:link href="http://www.otakatik.com/category/internet-world/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>Get a Cheap &amp; High Quality Inkjet Printer Cartridge</title>
		<link>http://www.otakatik.com/get-a-cheap-high-quality-inkjet-printer-cartridge/</link>
		<comments>http://www.otakatik.com/get-a-cheap-high-quality-inkjet-printer-cartridge/#comments</comments>
		<pubDate>Sat, 24 May 2008 00:01:52 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Internet World]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/?p=102</guid>
		<description><![CDATA[Inkjet printers have great growth from a time to time. Inkjet printer manufacturers are never stop to develop it be better. They are researching so that inkjet printer can be faster to print, print in higher resolution, more efficient to use its ink, more silent when printing. Or in a word, they want to create [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin: 5px; float: left;" src="http://www.otakatik.com/wp-content/uploads/2008/05/cartridge.jpg" alt="" width="100" height="100" />Inkjet printers have great growth from a time to time. Inkjet printer manufacturers are never stop to develop it be better. They are researching so that inkjet printer can be faster to print, print in higher resolution, more efficient to use its ink, more silent when printing. Or in a word, they want to create a better inkjet printer. I still remember, 13 years ago I just could print in black and white color in 200 dpi resolutions. Today, you can to print a high quality photo with a home printer. How amazing…<span id="more-102"></span></p>
<p>As we know, you can to get a color inkjet printer with great price. But almost all of printer manufactures sell their cartridge at high price. And this makes your print cost be high. If you calculate the comparison between a printer price and its cartridge price, maybe you’ll get 1:5. It means if you buy five cartridges you can to buy a new printer. And if you like to print photos, it’s a bad news.</p>
<p>So, many 3rd party ink manufactures are thinking to create a cheap cartridge. With a cheap cartridge, you can save your print cost. Unfortunately, although you save your money, in so many times you can’t get a same quality cartridge with the original cartridge. And finally, your printer is getting many troubles. Usually, the trouble is cause by ink leak or ink can’t out because nozzle on head of cartridge is closed by dried ink. So, you have to smart to choose them. And there’re not only inkjet printer which have 3rd party cartridge, you can also find cheap <a href="http://www.carrotink.com/carrot/servlet/LaserView?langId=-1&amp;storeId=10001&amp;catalogId=10001" target="_blank">toner</a> for your laser printer.</p>
<p>I’ve written that you have to being smart to choose a cartridge for your printer. Carrot Ink, they are providing many cheap cartridges for your printers. You can to save your money between 30-70%! That’s lot money. Whereas you like print everything. You can to find such as <a href="http://www.carrotink.com/brand-Epson-inkjet--cartridges.htm" target="_blank">Epson ink cartridges</a>, <a href="http://www.carrotink.com/brand-Canon-inkjet-laser-cartridges.htm" target="_blank">Canon ink cartridges</a>, Dell ink cartridge, HP ink cartridges and more.</p>
<p>You don’t worry about Carrot Ink’s ink quality. They’ve got 10,000 BizRate. It means over 10,000 customers have rated them as a satisfied and good company. So, save your money and also don’t get troubles with your printer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/get-a-cheap-high-quality-inkjet-printer-cartridge/feed/</wfw:commentRss>
		<slash:comments>0</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>Are You Having Low Credit Rating?</title>
		<link>http://www.otakatik.com/are-you-having-low-credit-rating/</link>
		<comments>http://www.otakatik.com/are-you-having-low-credit-rating/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 22:21:12 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Internet World]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/?p=87</guid>
		<description><![CDATA[Are you having low credit rating? If the answer is yes, I think you’re not alone for this. In our lives, we can to getting some accident that make our cash flow doesn’t run smoothly. If you are having some loans at banks, it can add our misery. Beside you can’t pay your installment on [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.badcreditoffers.com/" target="_blank"><img src="https://members.smorty.com/members/advertiser/512/2008435037.jpg" alt="" width="228" height="45" /></a><br />
Are you having low credit rating? If the answer is yes, I think you’re not alone for this. In our lives, we can to getting some accident that make our cash flow doesn’t run smoothly. If you are having some loans at banks, it can add our misery. Beside you can’t pay your installment on time, it will influence your credit rating.<span id="more-87"></span></p>
<p>And unfortunately, if your credit rating/score is low, banks don’t approve your new loan. And it caused you can’t make some your financial adjustment.</p>
<p>Usually, if you’re have personal loan, a ‘trouble’ credit is <a href="http://www.badcreditoffers.com/" target="_blank">bad credit credit cards</a>. Fortunately, internet is providing so many information, including ways out to quit from the <a href="http://www.badcreditoffers.com/" target="_blank">bad credit loans</a> problem.</p>
<p>One of the solutions website is Bad Credit Offers, it provide some solutions to get loans from some lenders. You can get some comparisons from some lenders and give you some ways out. It will lead you to some website where contains solutions to a bad credit rating. The covered loans are credit card, home loans, personal loans, auto loans, and much more. It will give you some suggestion until you can get right loans for you.</p>
<p>So, with new loans, you can re-schedule your financial until it is being health.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/are-you-having-low-credit-rating/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build An Online Store</title>
		<link>http://www.otakatik.com/build-an-online-store/</link>
		<comments>http://www.otakatik.com/build-an-online-store/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 12:02:36 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Internet World]]></category>
		<category><![CDATA[Ecommerce]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/?p=51</guid>
		<description><![CDATA[Internet is a great way to communication to all peoples on earth this day. With internet you can exchange tons information between internet users, including sell goods. Now, you don’t need to open a store manually that will cost you so much. Just, sell your goods on internet. You can to get some benefits such [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ashopcommerce.com/g/11903/signup-free-trial.html"><img src="https://members.smorty.com/members/advertiser/14/2007924145846.jpg" border="0" alt="" /></a><br />
Internet is a great way to communication to all peoples on earth this day. With internet you can exchange tons information between internet users, including sell goods. Now, you don’t need to open a store manually that will cost you so much. Just, sell your goods on internet. You can to get some benefits such as, you don’t own a store building, just virtual it; you sell your stuffs for 24 hours a day, you can save to hire some employee and others benefit that I can’t write here.<span id="more-51"></span></p>
<p>Beside your stuffs, to sell them on internet you’ll need a <a href="http://www.ashopcommerce.com/g/11903/signup-free-trial.html" target="_blank">shopping cart</a> software, without it you can’t organize your store easily. Sure, you need a Shopping chart software which support to organize them, including customers <a href="http://www.ashopcommerce.com/g/11903/signup-free-trial.html" target="_blank">shopping cart</a>. You must make your customers like with your products, website design and don’t forget to make it easier as you can because your customers can leave your website easily if you don’t make it.</p>
<p>So, you need to choose a good Shopping chart software or <a href="http://www.ashopcommerce.com/" target="_blank">ecommerce software</a>. I want to suggest good ecommerce software with affordable price and you can <a href="http://www.ashopcommerce.com/g/11903/signup-free-trial.html">click here for a free trial</a>.</p>
<p>It calls Ashop Commerce; many American merchants have joined with it. It brings so many features, such as web based so there is no installation required, your merchant can accept credit card payment, fully customizable design and others interest feature.</p>
<p>Maybe you a good programmer in web programming but you can save much time with use it. So, you don’t necessary to delay to open your store, you can open it soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/build-an-online-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find A Best Web Hosting Service</title>
		<link>http://www.otakatik.com/find-a-best-web-hosting-service/</link>
		<comments>http://www.otakatik.com/find-a-best-web-hosting-service/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 12:27:34 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Internet World]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/?p=58</guid>
		<description><![CDATA[Web Hosting is an important part is you want to be a blogger. Without it, you can’t save you files anywhere. Find a high quality web hosting service is important point that you must focus on. So, if you’re looking for a good web hosting service, I want to give you some tips and guides [...]]]></description>
			<content:encoded><![CDATA[<p>Web Hosting is an important part is you want to be a blogger. Without it, you can’t save you files anywhere. Find a high quality web hosting service is important point that you must focus on.</p>
<p>So, if you’re looking for a good web hosting service, I want to give you some tips and guides to find <a href="http://www.kaushalsheth.com/best-web-hosting-company/" target="_blank">best web hosting</a>. Here are some points which must get your attention when looks a web hosting service:<span id="more-58"></span></p>
<p>1.	Get a reasonable price; usually they are set price from US$3.99 – US$9.99 for initial package.<br />
2.	Find some reviews about your favorite web hosting service.<br />
3.	Read the uptime rate.<br />
4.	Look their customer support contact available. If they are providing phone number, usually it indicates they have a good customer service. Don’t choose a web hosting which provides email address only.<br />
5.	Is you get free domain for at least one year subscription? You deserve to get it.<br />
6.	Read on many forums to get their experience using web hosting service. In forum peoples are talking honestly.</p>
<p>You may look on <a href="http://www.kaushalsheth.com/best-web-hosting-company/" target="_blank">kaushal sheth website</a> to look a good web hosting service list. They are providing some web hosting which have price for US$4.95 – US$5.95 on average. I think it can be a good start point to create your own blog website. Because he collected some web hosting services based on his observation. So, it can save your time to looking a web hosting service.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/find-a-best-web-hosting-service/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

