From d8f3f35dfe2383c21b2dafa518d17127419175df Mon Sep 17 00:00:00 2001 From: sidheshenator Date: Mon, 3 Aug 2015 14:46:11 -0400 Subject: [PATCH] silently ignore shellfolders registry datatype --- .../sleuthkit/autopsy/recentactivity/ExtractRegistry.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractRegistry.java b/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractRegistry.java index 63e9dcc406..4fde433420 100644 --- a/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractRegistry.java +++ b/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractRegistry.java @@ -648,6 +648,12 @@ class ExtractRegistry extends Extract { } break; + case "shellfolders": // NON-NLS + // The User Shell Folders subkey stores the paths to Windows Explorer folders for the current user of the computer + // (https://technet.microsoft.com/en-us/library/Cc962613.aspx). + // No useful information. Skip. + break; + default: logger.log(Level.WARNING, "Unrecognized node name: {0}", dataType); //NON-NLS break;