<?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>gHacks Technology News &#124; Latest Tech News, Software And Tutorials &#187; registry hives</title> <atom:link href="http://www.ghacks.net/tag/registry-hives/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Fri, 10 Feb 2012 20:51:26 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>Registry Analyzer</title><link>http://www.ghacks.net/2009/01/25/registry-analyzer/</link> <comments>http://www.ghacks.net/2009/01/25/registry-analyzer/#comments</comments> <pubDate>Sun, 25 Jan 2009 17:17:28 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[portable software]]></category> <category><![CDATA[registry]]></category> <category><![CDATA[registry analyzer]]></category> <category><![CDATA[registry hives]]></category> <category><![CDATA[registry ripper]]></category> <category><![CDATA[windows registry]]></category> <category><![CDATA[windows software]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=10133</guid> <description><![CDATA[Registry Ripper is a portable software program to automatically analyze Registry Hives. It will analyze a selected Registry hive and export the findings into a selected text document. Registry Hives are locked by the Windows operating system which means that it is necessary to copy or access them before the operating system is running. This [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://regripper.net/">Registry Ripper</a> is a portable software program to automatically analyze Registry Hives. It will analyze a selected Registry hive and export the findings into a selected text document. Registry Hives are locked by the Windows operating system which means that it is necessary to copy or access them before the operating system is running. This can be done with a Live CD or by booting into another operating system that can access the Windows partition.</p><p>Most of the Registry hives are located in the \Windows\system32\config directory but some in other locations like Document and Settings. To analyze the NTuser hive one would load the file NTUSER.DAT which is located in the \Documents and Settings\username\ directory, select a name for the text document in the second step, select ntuser from the plugin list and click the Rip It button.</p><p>The analysis will save various system information in the text document which depend on the analyzed Registry hive. The analysis of the NTuser hive will for example reveal information about the logon username, installed applications, system and remote drives, various recent files lists, the programs that have been accessed recently and software that will start with the computer system.</p><p><span
id="more-10133"></span><img
src="http://www.ghacks.net/wp-content/uploads/2009/01/registry_analyzer.jpg" alt="registry analyzer" title="registry analyzer" width="500" height="420" class="alignnone size-full wp-image-10134" /></p><p>Registry Ripper is a Registry analyzer that requires some knowledge about the locations of the various Registry hives on the computer system. It clearly aims at more advanced users and can provide the user with all kinds of useful information about a computer system and its users.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/01/25/registry-analyzer/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Prevent Windows Registry from remembering last key viewed</title><link>http://www.ghacks.net/2008/10/21/prevent-windows-registry-from-remembering-last-key-viewed/</link> <comments>http://www.ghacks.net/2008/10/21/prevent-windows-registry-from-remembering-last-key-viewed/#comments</comments> <pubDate>Tue, 21 Oct 2008 08:54:00 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Knowledge]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[registry]]></category> <category><![CDATA[registry hives]]></category> <category><![CDATA[registry tips]]></category> <category><![CDATA[windows registry]]></category> <category><![CDATA[windows script]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=7765</guid> <description><![CDATA[One of the things that bothers me the most is when I open the Windows Registry to edit a key and it loads up showing me the last key I had viewed. I normally go into the Registry to make one change and that’s it. I never go back and edit the same key. Wouldn’t it be great if you could open the registry and all the hives would load up collapsed like you opened it for the first time ever?]]></description> <content:encoded><![CDATA[<p>“This is a guest post by Aseem Kishore, the lead blogger for <a
href="http://HelpDeskGeek.com">HelpDeskGeek.com</a>, which focuses on providing Help Desk tips to IT Professionals.”</p><p>One of the things that bothers me the most is when I open the Windows Registry to edit a key and it loads up showing me the last key I had viewed. I normally go into the Registry to make one change and that’s it. I never go back and edit the same key. Wouldn’t it be great if you could open the registry and all the hives would load up collapsed like you opened it for the first time ever?</p><p>Luckily, there’s a little shortcut you can create to the registry that will get rid of that annoying little feature. It’s actually a script with a few lines of code. Just open Notepad and paste in the following lines of code:</p><p><span
id="more-7765"></span><code>Dim objShell, RegKey, Q</p><p>Set objShell = CreateObject("WScript.Shell")</p><p>strQuote = chr(34)</p><p>RegKey = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Regedit"</p><p>RegKey = RegKey &#038; "\LastKey"</p><p>objShell.RegWrite RegKey, ""</p><p>objShell.Run "regedit"</code></p><p>Save the file with a .VBS extension, which stands for Visual Basic Script. To do this in Notepad, choose All Files for the Save as type combo box and name the file “Registry.vbs” without the quotes.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2008/10/registry.png" alt="registry" title="registry" width="458" height="94" class="alignnone size-medium wp-image-7766" /></p><p>So now instead of opening the Registry and getting something that looks like this:</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2008/10/registry_windows.png" alt="registry windows" title="registry windows" width="271" height="322" class="alignnone size-medium wp-image-7767" /></p><p>You can easily start from the very top of the Registry hives like normal!</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2008/10/registry_hives.png" alt="registry hives" title="registry hives" width="243" height="161" class="alignnone size-medium wp-image-7768" /></p><p>If you want to make if more official, you can change the icon for the VBS script file to the Registry icon. In order to do this, you have to create a shortcut to the script. Just right-click on Registry.vbs, click on Send To, and then click on Desktop (create shortcut).</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2008/10/send_to_desktop.png" alt="send to desktop" title="send to desktop" width="388" height="164" class="alignnone size-medium wp-image-7769" /></p><p>Now right-click on the shortcut icon and click on Rename. Name the shortcut Registry. Next right-click again and go to Properties. Click on the Change Icon button.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2008/10/change_icon.png" alt="change icon" title="change icon" width="357" height="364" class="alignnone size-medium wp-image-7770" /></p><p>Choose the Registry icon from the list of icons. Finally you can copy your shortcut to the Start Menu for easy acce</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2008/10/21/prevent-windows-registry-from-remembering-last-key-viewed/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> </channel> </rss>
