Skip to content

Commit

Permalink
Fix: HKEY_CLASSES_ROOT support
Browse files Browse the repository at this point in the history
  • Loading branch information
rzander committed Jul 11, 2017
1 parent 522634a commit d2c8575
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Source/REG2CI/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.7.3.*")]
[assembly: AssemblyFileVersion("0.7.3.1")]
[assembly: AssemblyFileVersion("0.7.3.2")]
2 changes: 2 additions & 0 deletions Source/REG2CI/RegClass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,8 @@ public string PSHive
return "HKCU:";
case "HKEY_USERS":
return @"Registry::\HKEY_USERS";
case "HKEY_CLASSES_ROOT":
return "HKLM:\\SOFTWARE\\Classes";
default:
return "";
}
Expand Down
2 changes: 1 addition & 1 deletion Source/REG2PS/Default.Master
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
</asp:ScriptManager>
<div class="container">
<h1>Registry to PowerShell converter</h1>
<p class="text-muted"><sup>Version 1.0.2.0 (09.May.2017)</sup></p>
<p class="text-muted"><sup>Version 1.0.2.2 (1.July.2017)</sup></p>
</div>
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
Expand Down
4 changes: 2 additions & 2 deletions Source/REG2PS/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.2.1")]
[assembly: AssemblyFileVersion("1.0.2.1")]
[assembly: AssemblyVersion("1.0.2.2")]
[assembly: AssemblyFileVersion("1.0.2.2")]
2 changes: 2 additions & 0 deletions Source/REG2PS/RegClass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,8 @@ public string PSHive
return "HKCU:";
case "HKEY_USERS":
return @"Registry::\HKEY_USERS";
case "HKEY_CLASSES_ROOT":
return "HKLM:\\SOFTWARE\\Classes";
default:
return "";
}
Expand Down

0 comments on commit d2c8575

Please sign in to comment.