<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://aznot.com/index.php?action=history&amp;feed=atom&amp;title=Microsoft%2Fregedit</id>
	<title>Microsoft/regedit - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://aznot.com/index.php?action=history&amp;feed=atom&amp;title=Microsoft%2Fregedit"/>
	<link rel="alternate" type="text/html" href="https://aznot.com/index.php?title=Microsoft/regedit&amp;action=history"/>
	<updated>2026-05-06T11:11:59Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://aznot.com/index.php?title=Microsoft/regedit&amp;diff=5263&amp;oldid=prev</id>
		<title>Kenneth: /* Windows Regedit */</title>
		<link rel="alternate" type="text/html" href="https://aznot.com/index.php?title=Microsoft/regedit&amp;diff=5263&amp;oldid=prev"/>
		<updated>2019-12-29T18:08:56Z</updated>

		<summary type="html">&lt;p&gt;&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;Windows Regedit&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Windows Regedit ==&lt;br /&gt;
&lt;br /&gt;
To export the registry:&lt;br /&gt;
 regedit /ea putty.reg HKEY_CURRENT_USER\Software\SimonTatham\PuTTY&lt;br /&gt;
&lt;br /&gt;
[http://support.microsoft.com/kb/310516 How to add, modify, or delete registry subkeys and values by using a registration entries (.reg) file]&lt;br /&gt;
&lt;br /&gt;
Silently add reg file:&lt;br /&gt;
 regedit.exe /s [file.reg]&lt;br /&gt;
NOTE: This will silently fail if there are issues!&lt;br /&gt;
&lt;br /&gt;
Adding Registry Subkeys or Adding and Changing Registry Values&lt;br /&gt;
&lt;br /&gt;
To add a registry subkey or add or change a registry value, make the appropriate changes in the registry, and then export the appropriate subkey or subkeys. Exported registry subkeys are automatically saved as .reg files.&lt;br /&gt;
&lt;br /&gt;
=== Deleting Registry Keys and Values ===&lt;br /&gt;
&lt;br /&gt;
To delete a key:&lt;br /&gt;
 [-HKEY_LOCAL_MACHINE\Software\Test]&lt;br /&gt;
&lt;br /&gt;
To delete a registry value with a .reg file, put a hyphen (-) after the equals sign following the DataItemName in the .reg file. For example, to delete the TestValue registry value from the following registry key:&lt;br /&gt;
 HKEY_LOCAL_MACHINE\Software\Test&lt;br /&gt;
&lt;br /&gt;
put a hyphen after the &amp;quot;TestValue&amp;quot;= in the .reg file. The following example has a .reg file that can perform this task.&lt;br /&gt;
 HKEY_LOCAL_MACHINE\Software\Test&lt;br /&gt;
 &amp;quot;TestValue&amp;quot;=- &lt;br /&gt;
&lt;br /&gt;
Export:&lt;br /&gt;
 /e - export&lt;br /&gt;
 regedit.exe /e myfile.reg HKEY_LOCAL_MACHINE\SOFTWARE&lt;br /&gt;
&lt;br /&gt;
== Registry Keys ==&lt;br /&gt;
&lt;br /&gt;
=== Run and Runonce ===&lt;br /&gt;
&lt;br /&gt;
 HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run&lt;br /&gt;
 HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnce&lt;br /&gt;
 HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunServices&lt;br /&gt;
 HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunServicesOnce&lt;br /&gt;
&lt;br /&gt;
 HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run&lt;br /&gt;
 HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnce&lt;br /&gt;
 HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnceEx&lt;br /&gt;
&lt;br /&gt;
Source: [http://vlaurie.com/computers2/Articles/startupreg.htm]&lt;br /&gt;
&lt;br /&gt;
=== System Registration ===&lt;br /&gt;
&lt;br /&gt;
 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion&lt;br /&gt;
   ProductId&lt;br /&gt;
   RegisteredOrganization&lt;br /&gt;
   RegisteredOwner&lt;br /&gt;
&lt;br /&gt;
=== Services ===&lt;br /&gt;
&lt;br /&gt;
 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services&lt;br /&gt;
&lt;br /&gt;
=== Run History ===&lt;br /&gt;
&lt;br /&gt;
 HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU&lt;br /&gt;
&lt;br /&gt;
=== Uninstall ===&lt;br /&gt;
&lt;br /&gt;
 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall&lt;br /&gt;
&lt;br /&gt;
=== Hide Desktop ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Windows Registry Editor Version 5.00&lt;br /&gt;
&lt;br /&gt;
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]&lt;br /&gt;
&amp;quot;NoDesktop&amp;quot;=dword:00000001&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Disable Auto Run ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Windows Registry Editor Version 5.00&lt;br /&gt;
&lt;br /&gt;
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]&lt;br /&gt;
&amp;quot;NoDriveTypeAutoRun&amp;quot;=dword:00000095&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== keywords ==&lt;br /&gt;
&lt;br /&gt;
registry regedit microsoft windows&lt;br /&gt;
&lt;br /&gt;
[[Category:Microsoft]]&lt;/div&gt;</summary>
		<author><name>Kenneth</name></author>
	</entry>
</feed>