<?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; Windows Registry</title>
	<atom:link href="http://www.otakatik.com/category/windows-registry/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.otakatik.com</link>
	<description>Empowering Computer</description>
	<lastBuildDate>Wed, 13 Jan 2010 11:42:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Hide Run Menu With Visual Basic Script</title>
		<link>http://www.otakatik.com/hide-run-menu-with-visual-basic-script/</link>
		<comments>http://www.otakatik.com/hide-run-menu-with-visual-basic-script/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 06:26:03 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Windows Registry]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[Run menu]]></category>
		<category><![CDATA[Visual basic script]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/?p=265</guid>
		<description><![CDATA[ I&#8217;ve written an article about Manage Registry with Visual Basic Script and this time I want to modified the script to make it to manage Run menu. As you know Run menu is a great menu, with Run you may can go everywhere easier. So, I call it gateway. Yup it&#8217;s a gate to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0093/logo.png" alt="" align="left" /> I&#8217;ve written an article about <a href="http://www.otakatik.com/disable-registry-editor-using-vb-script/">Manage Registry with Visual Basic Script</a> and this time I want to modified the script to make it to manage Run menu. As you know Run menu is a great menu, with Run you may can go everywhere easier. So, I call it gateway. Yup it&#8217;s a gate to go every corner your computer.<span id="more-265"></span></p>
<p>So, if you want make your computer be more secure you can hide it when you leave your computer and show it again if you use the computer.</p>
<p>And if you edit it through Registry Editor, I think that&#8217;s not a efficient way. But if you want do to that just look here to get the trick. But if you want make it easier just write several script line but after write it you&#8217;ll get a shorter way to hide/show it.</p>
<ol>
<li>Open Notepad with click <strong>Start</strong> -&gt; <strong>Run</strong> and then type <code>notepad</code> in box.<br />
<img title="open notepad" src="http://www.otakatik.com/wp-content/uploads/general/start-run-notepad.jpg" alt="Open notepad" /></li>
<li> And type this script in notepad:<br />
<img title="write in notepad" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0093/notepad_1.jpg" alt="write in notepad" /></li>
<pre name="code" class="vb">
Dim otakatik
ShowHideRun()
Sub ShowHideRun()
Set otakatik=WScript.CreateObject("WScript.Shell")
describe="Type 0 or 1 : " &amp; VbCrLf &amp;_
"[0] -&gt; Show Run Menu." &amp; VbCrLf &amp;_
"[1] -&gt; Hide Run Menu."

question=InputBox(describe, "Manage Run Menu",0)

otakatik.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion" &amp;_
"\Policies\Explorer\NoRun",question,"REG_DWORD"

If question=1 Then
MsgBox "Run menu has hidden.",VbInformation, "Hide"
Else
If question=0 Then
Msgbox "Run menu has shown",VbInformation, "Show"
otakatik.RegDelete "HKCU\Software\Microsoft\Windows\CurrentVersion" &amp;_
"\Policies\Explorer\NoRun"
Else
Msgbox "Input 0 or 1 only !",VbInformation, "Wrong Input"
ShowHideRun()
End If
End If
End Sub</pre>
<li>Save it with click <strong>File</strong> -&gt; <strong>Save As</strong> menu and then give it file name: <code>managerun.vbs</code> (you may change it with your favorite name and don&#8217;t forget to change Save as type combo to All Files), choose your favorite folder then click <strong>OK</strong> button.<br />
<img title="save as" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0093/save_as_2.jpg" alt="save as" /></li>
<li>Open the folder where the managerun.vbs was put.<br />
<img title="open managerun.vbs" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0093/file_3.jpg" alt="open managerun.vbs" /></li>
<li>Double click the file, and Manage Run Menu window will opened.<br />
<img title="open managerun.vbs" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0093/file_3.jpg" alt="open managerun.vbs" /></li>
<li>Give it value 0 to show your Run menu.<br />
<img title="0 to show" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0093/manage_4.jpg" alt="0 to show" /><br />
<img title="0 to show" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0093/has_shown_5.jpg" alt="0 to show" /></li>
<li>Or give it value 1 to hide it.<br />
<img title="1 to show" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0093/has_hide_6.jpg" alt="1 to show" /></li>
<li>Restart your computer and try to click Start menu, if you was hid it so, Run menu will hid.<br />
<img title="Run has gone" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0093/run_has_gone_7.jpg" alt="Run has gone" /></li>
<li>And if you try to press Windows key + R to force open Run menu, you&#8217;ll get a noticed message box.<br />
<img title="error message" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0093/message_8.jpg" alt="error message" /></li>
<li>To show it again, just open your script and give it value 0.</li>
</ol>
<p><em>(article no:0093)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/hide-run-menu-with-visual-basic-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Preview BMP File as Its Icon</title>
		<link>http://www.otakatik.com/preview-bmp-file-as-its-icon/</link>
		<comments>http://www.otakatik.com/preview-bmp-file-as-its-icon/#comments</comments>
		<pubDate>Sat, 28 Jun 2008 10:08:48 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Windows Registry]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[BMP file]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/preview-bmp-file-as-its-icon/</guid>
		<description><![CDATA[By default, when you’re browsing your bitmap files (*.bmp), you’ll look their default icon. And the icon is the same for all of bitmap files. And that does not be a problem for common users, but if you often to seeking for a bitmap file, that could be a problem because you can’t see its [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0056/logo.png" alt="" align="left" />By default, when you’re browsing your bitmap files (*.bmp), you’ll look their default icon. And the icon is the same for all of bitmap files. And that does not be a problem for common users, but if you often to seeking for a bitmap file, that could be a problem because you can’t see its content. Fortunately, you can hack the registry to force system to preview the bitmap file content as its icon.<span id="more-133"></span></p>
<p>The default icon for bmp files are like this picture.<br />
<img title="Default bitmap files icon" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0056/default_view_1.jpg" alt="Default bitmap files icon" /><br />
And here is the way:</p>
<ol>
<li>Open Registry Editor by click <strong>Start</strong> -&gt; <strong>Run</strong> menu (or press Windows + R keys), enter <code>regedit</code> in box and then press <strong>Enter</strong> key.<br />
<img title="Registry path" src="http://www.otakatik.com/wp-content/uploads/general/run-dialog-regedit.jpg" alt="Registry path" /></li>
<li>Drive to this registry path: <strong>HKEY_CLASSES_ROOT \ Paint.Picture \ DefaultIcon</strong>.<br />
<img title="Registry path" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0056/registry_2.jpg" alt="Registry path" /><br />
<img title="Registry path" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0056/path_registry_3.jpg" alt="Registry path" /></li>
<li>The default value for <strong>Default</strong> value in <strong>DefaultIcon</strong> key is <strong>shimgvw.dll,1</strong>.<br />
<img title="Default value data" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0056/reg_value_4.jpg" alt="Default value data" /></li>
<li>We need to modify <strong>Default</strong> value by double click <strong>Default</strong> value, replace the original value<br />
<img title="Original value" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0056/default_value_5.jpg" alt="Original value" /><br />
to <strong>%1</strong> and then click <strong>OK</strong> button.<br />
<img title="New value data" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0056/replace_value_6.jpg" alt="New value data" /></li>
<li>Then you’ll get this appearance on <strong>DefaultIcon</strong> key.<br />
<img title="Modified appearance" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0056/result_view_7.jpg" alt="Modified appearance" /></li>
<li>Close Registry Editor and restart your computer.</li>
<li>Now, try to open your folder where contains bmp files, if you can see their icon that represent its icon, it means you did these steps right.<br />
<img title="Result" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0056/result_8.jpg" alt="Result" /></li>
</ol>
<p>To back to the original configuration, just give <strong>Default</strong> value to <strong>shimgvw.dll,1</strong>.<br />
<em>(Article no: 0056)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/preview-bmp-file-as-its-icon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Save Last Opened Folder</title>
		<link>http://www.otakatik.com/save-last-opened-folder/</link>
		<comments>http://www.otakatik.com/save-last-opened-folder/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 00:03:12 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Windows Registry]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[boot-up]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/?p=115</guid>
		<description><![CDATA[Windows will reset all opened windows every time you restart your computer. But some times, I am tired if I have to open my data folder every time Windows restarted. The good news is you can to make Windows save your last opened folder so that the folder will open automatically every time you restart [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="margin: 5px; float: left;" src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0141/logo.jpg" alt="" />Windows will reset all opened windows every time you restart your computer. But some times, I am tired if I have to open my data folder every time Windows restarted. The good news is you can to make Windows save your last opened folder so that the folder will open automatically every time you restart Windows XP.<span id="more-115"></span></p>
<p>And here is the way:</p>
<ol>
<li>Open Registry Editor first by click <strong>Start </strong>-&gt; <strong>Run </strong>menu, enter <code>regedit </code>in box and then press Enter key.<br />
<img src="http://www.otakatik.com/wp-content/uploads/general/run-dialog-regedit.jpg" alt="" /></li>
<li>Navigates to this registry path: <strong>HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Explorer \ Advanced</strong>.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0141/advanced_key_1.jpg" alt="" /></li>
<li>Find <strong>PersisBrowser </strong>value on right panel.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0141/persis_browsers_2.jpg" alt="" /></li>
<li><strong>PersistBrowser</strong> value has standard value <strong>0</strong>, to force Windows save your opened window, modify its value to <code>1</code> by double click it, and replace the original value with <code>1</code>.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0141/modify_value_3.jpg" alt="" /></li>
<li>Close Registry Editor, and then restart your computer.</li>
<li>After Windows is boot-up, you’ll look your last opened window is opening by Windows now.</li>
</ol>
<p>To make it back to original setting, just modify PersistBrowsers data to 0.<br />
<em>(Article no: 0141)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/save-last-opened-folder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hide Log Off Button on Start Menu</title>
		<link>http://www.otakatik.com/hide-log-off-button-on-start-menu/</link>
		<comments>http://www.otakatik.com/hide-log-off-button-on-start-menu/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 04:24:56 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Windows Registry]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[Log Off]]></category>
		<category><![CDATA[start menu]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/?p=114</guid>
		<description><![CDATA[By default, Windows XP puts Log Off button on Start Menu where located beside Turn Off Computer button. And if you don’t want the Log Off button on there, just hide it.
You can see the Log Off button on Start menu.

And here are the steps:

Open Registry Editor first by click Start -&#62; Run menu, enter [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0058/logo.png" alt="" /><br />
By default, Windows XP puts Log Off button on Start Menu where located beside Turn Off Computer button. And if you don’t want the Log Off button on there, just hide it.<span id="more-114"></span></p>
<p>You can see the Log Off button on Start menu.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0058/default_setting_1.jpg" alt="" /><br />
And here are the steps:</p>
<ol>
<li>Open Registry Editor first by click <strong>Start</strong> -&gt; <strong>Run</strong> menu, enter <code>regedit</code> in box and then press Enter key.<br />
<img src="http://www.otakatik.com/wp-content/uploads/general/run-dialog-regedit.jpg" alt="" /></li>
<li>After Registry Editor is opened,<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0058/regedit_open_2.jpg " alt="" /><br />
navigates to path: <strong>HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Policies \ Explorer</strong>.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0058/registry_path_3.jpg" alt="" /></li>
<li>Create a DWORD value in <strong>Explorer</strong> key, by right click on <strong>Explorer </strong>key or on right panel empty space, and then choose <strong>New </strong>-&gt; <strong>DWORD value</strong> menu.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0058/right_click_4.jpg" alt="" /></li>
<li>Replace the original value with <strong>StartMenuLogOff</strong> value.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0058/new_value_5.jpg" alt="" /></li>
<li>Double click <strong>StartMenuLogOff </strong>value; replace the original data (0)<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0058/edit_dword_6.jpg " alt="" /><br />
to (<strong>1</strong>).<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0058/edit_string_7.jpg" alt="" /></li>
<li>And the value data has been changed.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0058/result_value_8.jpg" alt="" /></li>
<li>Close Registry Editor and then restart your computer.</li>
<li>After the computer is restarted, try to look the Start Menu and your Log Off button has been hidden.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0058/result_9.jpg" alt="" /></li>
</ol>
<p>To bring it back, just remove <strong>StartMenuLogOff </strong>value or give it value data 0.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/hide-log-off-button-on-start-menu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hide an Account from Welcome Screen</title>
		<link>http://www.otakatik.com/hide-an-account-from-welcome-screen/</link>
		<comments>http://www.otakatik.com/hide-an-account-from-welcome-screen/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 04:07:23 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Windows Registry]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[registry editor]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/?p=113</guid>
		<description><![CDATA[Welcome screen always appear as first screen on Windows XP. You can look all created accounts on your computer. To login, just click an account on there. That’s it, it’s so easy. By default, Windows XP will show all of created accounts in system. Unfortunately, maybe you don’t want this. Maybe you have a ‘secret’ [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="margin: 5px; float: left;" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0060/logo.png" alt="" width="350" height="154" />Welcome screen always appear as first screen on Windows XP. You can look all created accounts on your computer. To login, just click an account on there. That’s it, it’s so easy. By default, Windows XP will show all of created accounts in system. Unfortunately, maybe you don’t want this. Maybe you have a ‘secret’ account which want to hidden. Because Windows XP doesn’t provide a tool to hide it from Welcome Screen, you must tweak the registry.<span id="more-113"></span></p>
<p>For example I have three accounts on my Welcome Screen. They are Administrator, Farrel, and Listi. And I want to hide Listi account from Welcome Screen.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0060/account_list_1.jpg" alt="" /></p>
<p>Here are the steps:</p>
<ol>
<li> To play with registry, open Registry Editor first by click <strong>Start</strong> -&gt; <strong>Run</strong> menu, enter <code>regedit</code> in box and then press Enter.<br />
<img src="http://www.otakatik.com/wp-content/uploads/general/run-dialog-regedit.jpg" alt="" /></li>
<li>In Registry Editor,<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0060/regedit_2.jpg" alt="" /><br />
navigate to this path: <code>HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows NT \ CurrentVersion \ Winlogon \ SpecialAccounts \ UserList</code>.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0060/reg_path_3.jpg" alt="" /></li>
<li>On right panel, you’ll see the list that contains all accounts which hidden from Welcome Screen. To hide an account, create a new DWORD value by right click on empty space, click <strong>New</strong> -&gt; <strong>DWORD value</strong> menu<br />
<img src="http://www.otakatik.com/wp-content/uploads/general/new_DWORD_value.jpg " alt="" /><br />
and replace the value with your account name (in my case, I wrote Listi)<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0060/new_key_4.jpg" alt="" /></li>
<li>Now, you have a new entry with your account name on registry.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0060/final_screen_5.jpg" alt="" /></li>
<li>Try to restart your computer, and look on your Welcome Screen, if you did all steps correctly, your ‘secret’ account has been hidden.</li>
</ol>
<p><img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0060/result_6.jpg" alt="" /><br />
<em>(article no: 0060)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/hide-an-account-from-welcome-screen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup Entire of Registry</title>
		<link>http://www.otakatik.com/backup-entire-of-registry/</link>
		<comments>http://www.otakatik.com/backup-entire-of-registry/#comments</comments>
		<pubDate>Tue, 20 May 2008 05:53:25 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Windows Registry]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[Backup]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/backup-entire-of-registry/</guid>
		<description><![CDATA[As you know, Windows Registry is one of important Windows component. So, if your registry is damage, your Windows won’t run properly or even Windows won’t boot up. Because registry is very important, you need to keep it. One of ways to keep it is to backup it. There are so many ways to backup [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="margin: 5px; float: left;" src="http://www.otakatik.com/wp-content/uploads/general/registry_icon.jpg" alt="" width="102" height="102" />As you know, Windows Registry is one of important Windows component. So, if your registry is damage, your Windows won’t run properly or even Windows won’t boot up. Because registry is very important, you need to keep it. One of ways to keep it is to backup it. There are so many ways to backup registry and in this article I want to show you how to backup it easily.<span id="more-96"></span></p>
<p>To backup Windows Registry, just click <strong>Start</strong> -&gt; <strong>Run</strong> menu, type <code>regedit /e your_drive:\your_folder\reg_backup_name.reg</code> and then press <strong>Enter</strong>. For example I want to backup it to Drive C, folder: Data and I want to give it name: edi.reg, just enter in box: <code>regedit /e c:\data\edi.reg</code> then press <strong>Enter</strong>. That’s it!<br />
<img title="Enter command in run box" src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0133/enter_in_box_1.jpg" alt="Enter command in run box" /></p>
<p>As my experience, the file size is about 80-90 MB per backup file. And because there is no progress bar shown, just be patience to wait it for 5-10 minutes. And how do to restore it? Just double click it and click Yes in confirmation message box.<br />
<img title="file result" src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0133/result_file_2.jpg" alt="file result" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/backup-entire-of-registry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hide Clock By Registry</title>
		<link>http://www.otakatik.com/hide-clock-by-registry/</link>
		<comments>http://www.otakatik.com/hide-clock-by-registry/#comments</comments>
		<pubDate>Mon, 17 Dec 2007 06:04:34 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Windows Registry]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[clock]]></category>
		<category><![CDATA[registry]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/hide-clock-by-registry/</guid>
		<description><![CDATA[I have been writing article about hide clock at sys tray through taskbar properties. And that’s an easy way to hide or show it, so do the other users. So if you want to make it safer, hide it through Windows registry.
Like usual, if you want to change the registry value, you’ll need to open [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0119/logo.jpg" alt="Logo" title="Logo" align="left" />I have been writing article about hide clock at sys tray through taskbar properties. And that’s an easy way to hide or show it, so do the other users. So if you want to make it safer, hide it through Windows registry.<span id="more-35"></span><br />
Like usual, if you want to change the registry value, you’ll need to open Registry Editor first.<br />
1. To open Registry Editor, click <strong>Start – Run</strong> menu, type <code>regedit</code> in text box and then press Enter key.<br />
<img src="http://www.otakatik.com/wp-content/uploads/general/run-dialog-regedit.jpg" alt="Open Registry Editor" title="Open Registry Editor" /></p>
<p>2. In Registry Editor, drive to <code>HKEY_CURRENT_USER | Software | Microsoft | Windows | CurrentVersion | Policies | Explorer</code> path.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0119/policies_explorer_1.jpg" alt="Policies folder" title="Policies folder" /></p>
<p>3. In that path, find key: <code>HideClock</code> if you don’t find it. To create <code>HideClock</code> key, right click on right panel, choose <strong>New – DWORD</strong> value menu and then change the new value name to HideClock. Then change its value to 1 by double click it and then in Value data: box to 1 and then click <strong>OK </strong>button.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0119/change_value_2.jpg" alt="Change value" title="Change value" /></p>
<p>then your Registry Editor will be like picture below.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0119/hide_clock_3.jpg" alt="Registry result" title="Registry result" /></p>
<p>4. Restart your computer and then look at your systray. Your clock is gone.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptrick101/0119/result_4.jpg" alt="Result" title="Result" /></p>
<p>You can&#8217;t reactivate clock through taskbar properties because its radio check is disabled.<br />
To show it again, just change the <code>HideClock</code> value to 0 or delete that key.<br />
<em>(article no:0119)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/hide-clock-by-registry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Date Created Information in Info tip text</title>
		<link>http://www.otakatik.com/add-date-created-information-in-info-tip-text/</link>
		<comments>http://www.otakatik.com/add-date-created-information-in-info-tip-text/#comments</comments>
		<pubDate>Fri, 06 Jul 2007 09:22:15 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Windows Registry]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[image file]]></category>
		<category><![CDATA[meta data]]></category>
		<category><![CDATA[registry]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/add-date-created-information-in-info-tip-text/</guid>
		<description><![CDATA[If you&#8217;re hovering your mouse on image file you will see the info tip that contained Dimension, Date Picture Taken, Camera Model, Type and Size information, but I want to add the Date Created information because I want to know when the file was copied in my hard drive and I found how do to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0075/logo.png" alt="Logo" title="Logo" align="left" />If you&#8217;re hovering your mouse on image file you will see the info tip that contained Dimension, Date Picture Taken, Camera Model, Type and Size information, but I want to add the Date Created information because I want to know when the file was copied in my hard drive and I found how do to do it, I&#8217;ll share it&#8230;<br />
<span id="more-26"></span>By default the information on info tip is like picture at below.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0075/default_1.png" alt="Default information" title="Default information" /></p>
<p>And if you want to add the Date Created information, follow these steps:<br />
1. Open the Registry Editor via <strong>Start &#8211; Run</strong> dialog and then type <code>regedit</code> in textbox and then press Enter.<br />
<img src="http://www.otakatik.com/wp-content/uploads/general/run-dialog-regedit.jpg" alt="Typing regedit in textbox" title="Type Regedit" /></p>
<p>2. Pointing to path registry: <code>HKEY_CLASSES_ROOT | SystemFileAssociations | image</code>, look at three picture below to get visual.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0075/path_reg_2.jpg" alt="Registry path" title="Registry path" /></p>
<p><img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0075/system_ass_3.jpg" alt="File associations" title="File Associations folder" /></p>
<p><img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0075/image_4.jpg" alt="image folder" title="Image folder" /></p>
<p>3. OK, now look at right panel and find the <code>Infotip</code> key.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0075/value_5.jpg" alt="registry value" title="Registry value" /></p>
<p>4. Double click on it and add the value <code>;Create</code> string, click <strong>OK</strong> button.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0075/fill_value_6.jpg" alt="Add registry value" title="Add Registry value" /></p>
<p>5. And you will get the result like picture at below.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0075/result_reg_7.jpg" alt="Registry result" title="Registry result" /></p>
<p>6. Close your Registry Editor and retry to hover your mouse on image file, and if your do it right, so your will see the result like below this.<br />
<img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0075/result_8.jpg" alt="Result" title="Result" /></p>
<p>(article no:0075)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/add-date-created-information-in-info-tip-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Your Memory Space</title>
		<link>http://www.otakatik.com/free-your-memory-space/</link>
		<comments>http://www.otakatik.com/free-your-memory-space/#comments</comments>
		<pubDate>Fri, 08 Jun 2007 02:17:56 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Windows Registry]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[memory free]]></category>
		<category><![CDATA[registry]]></category>
		<category><![CDATA[registry editor]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/free-your-memory-space/</guid>
		<description><![CDATA[
Every time we&#8217;re opening program, the program doesn&#8217;t load the .exe file only, it calls its all library files to memory as well. Unfortunately, by default Windows XP doesn&#8217;t always unload the library file from memory when we close the program that using that .dll file. So, I will share a little trick to unload [...]]]></description>
			<content:encoded><![CDATA[<p><img title="Logo" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0059/logo.png" alt="Logo" /><br />
Every time we&#8217;re opening program, the program doesn&#8217;t load the .exe file only, it calls its all library files to memory as well. Unfortunately, by default Windows XP doesn&#8217;t always unload the library file from memory when we close the program that using that .dll file. So, I will share a little trick to unload the library files from memory when the programs don&#8217;t need them anymore.<br />
<span id="more-22"></span><br />
OK, we will change our registry value for it, just follow these steps:<br />
1. Open your Registry Editor, click <strong>Start &#8211; Run</strong> menu and then type <code>regedit</code> in the textbox.<br />
<img title="Regedit in textbox" src="http://www.otakatik.com/wp-content/uploads/general/run-dialog-regedit.jpg" alt="Regedit" /></p>
<p>2. After Registry Editor has opened,<br />
<img title="Registry Editor is open" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0059/open_regedit_1.jpg" alt="Opened Registry Editor" /></p>
<p>point your cursor to registry path : <code>HKEY_LOCAL_MACHINE | SOFTWARE | Microsoft | Windows | CurrentVersion | Explorer</code>.<br />
<img title="Registry path" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0059/registry_path_2.jpg" alt="Registry path" /></p>
<p>3. Find the <code>AlwaysUnloadDLL</code> key, if you can&#8217;t find it just create it by right click on empty space on right panel Registry Editor and the click <strong>New &#8211; DWORD value</strong>.<br />
<img title="New DWORD value" src="http://www.otakatik.com/wp-content/uploads/general/new_dword_value.jpg" alt="New DWORD value" /></p>
<p>4. Type <code>AlwaysUnloadDLL</code> for new key and then press ENTER key.<br />
<img title="A new key" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0059/new_key_3.jpg" alt="New key" /></p>
<p>5. Double click on <code>AlwaysUnloadDLL</code> to change its value.</p>
<p>6. After Edit DWORD value window appear<br />
<img title="Edit DWORD value" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0059/edit_dword_4.jpg" alt="Edit key" /></p>
<p>replace the original value 0 with 1 and then click OK button.<br />
<img title="Replace value" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0059/replace_value_5.jpg" alt="Replace value" /></p>
<p>7. The value of <code>AlwaysUnloadDLL</code> key will change.<br />
<img title="Changed value" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0059/result_window_6.jpg" alt="Changed value" /></p>
<p>8. Close your Registry Editor and then restart your computer.</p>
<p>9. Your memory can breathe again now.</p>
<p>10. To restore the original state / setting just replace value 1 to 0 for <code>AlwaysUnloadDLL</code> key or delete it.<br />
<em> (article no:0059)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/free-your-memory-space/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
