From ebc65b3f3118153d561f4bbe7204f6cc0bf0476a Mon Sep 17 00:00:00 2001 From: Andrew Rathbun Date: Mon, 25 Nov 2024 17:09:59 -0500 Subject: [PATCH 1/2] added 7 more hives to HiveType enum --- RECmd/ReBatch.cs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/RECmd/ReBatch.cs b/RECmd/ReBatch.cs index cd22ac0..d3df418 100644 --- a/RECmd/ReBatch.cs +++ b/RECmd/ReBatch.cs @@ -43,10 +43,16 @@ public enum HiveType_ [Description("SYSTEM")] System = 5, [Description("USRCLASS")] UsrClass = 6, [Description("COMPONENTS")] Components = 7, - [Description("BCD")] Bcd = 8, [Description("DRIVERS")] Drivers = 8, [Description("AMCACHE")] Amcache = 9, - [Description("SYSCACHE")] Syscache = 10 + [Description("SYSCACHE")] Syscache = 10, + [Description("BCD")] Bcd = 11, + [Description("BCD-Template")] BcdTemplate = 12, + [Description("ELAM")] Elam = 13, + [Description("userdiff")] userdiff = 14, + [Description("BBI")] Bbi = 15, + [Description("VSMIDK")] Vsmidk = 16, + [Description("DEFAULT")] Default = 17, } public string Description { get; set; } From f514d1736b38f1a0385d7ed6dd5d8657ab9bcd79 Mon Sep 17 00:00:00 2001 From: Andrew Rathbun Date: Tue, 26 Nov 2024 14:08:17 -0500 Subject: [PATCH 2/2] remove errant comma at end of enum --- RECmd/ReBatch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RECmd/ReBatch.cs b/RECmd/ReBatch.cs index d3df418..f8e3e88 100644 --- a/RECmd/ReBatch.cs +++ b/RECmd/ReBatch.cs @@ -52,7 +52,7 @@ public enum HiveType_ [Description("userdiff")] userdiff = 14, [Description("BBI")] Bbi = 15, [Description("VSMIDK")] Vsmidk = 16, - [Description("DEFAULT")] Default = 17, + [Description("DEFAULT")] Default = 17 } public string Description { get; set; }