diff --git a/CoreLibs/build.xml b/CoreLibs/build.xml
index 6188d5a60a5165cc3ea728a1c9f9038987c1af65..da8f72846ebdd05c3e0b354f8444276940909c9f 100644
--- a/CoreLibs/build.xml
+++ b/CoreLibs/build.xml
@@ -5,19 +5,11 @@
 <project name="org.sleuthkit.autopsy.corelibs" default="netbeans" basedir="." xmlns:ivy="antlib:org.apache.ivy.ant">
     <description>Builds, tests, and runs the project org.sleuthkit.autopsy.corelibs.</description>
     <import file="nbproject/build-impl.xml"/>
+    <import file="../BootstrapIvy.xml"/>
     
     <property name="thirdparty.dir" value="${basedir}/../thirdparty" />
     <property name="lib.dir" value="release/modules/lib" />
     
-    
-    <property name="ivy.install.version" value="2.3.0-rc2" />
-    <condition property="ivy.home" value="${env.IVY_HOME}">
-        <isset property="env.IVY_HOME" />
-    </condition>
-    <property name="ivy.home" value="${user.home}/.ant" />
-    <property name="ivy.jar.dir" value="${ivy.home}/lib" />
-    <property name="ivy.jar.file" value="${ivy.jar.dir}/ivy.jar" />
-    
     <condition property="os.family" value="unix">  
         <os family="unix"/>  
     </condition> 
@@ -29,25 +21,6 @@
     </condition>  
     <import file="build-${os.family}.xml"/> 
 
-    <target name="download-ivy" unless="offline">
-        <available file="${ivy.jar.file}" property="ivy.available"/>
-        <antcall target="-download-ivy" />
-    </target>
-    
-    <target name="-download-ivy" unless="ivy.available">
-        <mkdir dir="${ivy.jar.dir}"/>
-        <get src="http://repo2.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar" 
-             dest="${ivy.jar.file}" usetimestamp="true"/>
-    </target>
-
-    <!-- init-ivy will bootstrap Ivy if the user doesn't have it already -->
-    <target name="init-ivy" depends="download-ivy" unless="ivy.lib.path">
-        <path id="ivy.lib.path">
-            <fileset dir="${ivy.jar.dir}" includes="*.jar"/>
-        </path>
-        <taskdef resource="org/apache/ivy/ant/antlib.xml"
-                 uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path"/>
-    </target>
         
     <target name="retrieve-deps" description="retrieve dependencies using ivy" depends="init-ivy,build-native-libs">
         <ivy:settings file="ivysettings.xml" />
@@ -55,7 +28,7 @@
         <ivy:retrieve sync="false" pattern="release/modules/ext/[artifact]-[revision](-[classifier]).[ext]" />    
     </target>
     
-    <target name="init" depends="basic-init,files-init,build-init,-javac-init,init-ivy,retrieve-deps">
+    <target name="init" depends="basic-init,files-init,build-init,-javac-init,retrieve-deps">
         <!-- overrode depends attribute -->
         
     </target>
diff --git a/RecentActivity/build.xml b/RecentActivity/build.xml
index 3cfe76ae336717fba208dc47bee8f9129afba682..e0423691ab366952daf5f3d4d1711b65d3a1286d 100644
--- a/RecentActivity/build.xml
+++ b/RecentActivity/build.xml
@@ -5,40 +5,27 @@
 <project name="org.sleuthkit.autopsy.recentactivity" default="netbeans" basedir="." xmlns:ivy="antlib:org.apache.ivy.ant">
     <description>Builds, tests, and runs the project org.sleuthkit.autopsy.recentactivity.</description>
     <import file="nbproject/build-impl.xml"/>
+    <import file="../BootstrapIvy.xml"/>
     
+    <property name="release.dir" value="${basedir}/release"/>
     
-    <property name="ivy.install.version" value="2.3.0-rc2" />
-    <condition property="ivy.home" value="${env.IVY_HOME}">
-        <isset property="env.IVY_HOME" />
-    </condition>
-    <property name="ivy.home" value="${user.home}/.ant" />
-    <property name="ivy.jar.dir" value="${ivy.home}/lib" />
-    <property name="ivy.jar.file" value="${ivy.jar.dir}/ivy.jar" />
-
-    <target name="download-ivy" unless="offline">
-        <available file="${ivy.jar.file}" property="ivy.available"/>
-        <antcall target="-download-ivy" />
+    <target name="get-thirdparty-tools" >
+        <copy todir="${basedir}/release/pasco2">
+            <fileset dir="${basedir}/../thirdparty/pasco2/lib/" />
+        </copy>
+        <copy todir="${basedir}/release/rr">
+            <fileset dir="${basedir}/../thirdparty/rr/" />
+        </copy>
+        <copy todir="${basedir}/release/rr-full" >
+            <fileset dir="${basedir}/../thirdparty/rr-full/" />
+        </copy>
     </target>
     
-    <target name="-download-ivy" unless="ivy.available">
-        <mkdir dir="${ivy.jar.dir}"/>
-        <get src="http://repo2.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar" 
-             dest="${ivy.jar.file}" usetimestamp="true"/>
-    </target>
-
-    <!-- init-ivy will bootstrap Ivy if the user doesn't have it already -->
-    <target name="init-ivy" depends="download-ivy" unless="ivy.lib.path">
-        <path id="ivy.lib.path">
-            <fileset dir="${ivy.jar.dir}" includes="*.jar"/>
-        </path>
-        <taskdef resource="org/apache/ivy/ant/antlib.xml"
-                 uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path"/>
-    </target>
-    <property name="release.dir" value="${basedir}/release"/>
     <target name="init" depends="basic-init,files-init,build-init,-javac-init,init-ivy">
         <!-- fetch all the dependencies from Ivy and stick them in the right places -->
         <ivy:resolve/>
         <ivy:retrieve conf="recent-activity" sync="true" pattern="${release.dir}/modules/ext/[artifact]-[revision](-[classifier]).[ext]" />
+        <antcall target="get-thirdparty-tools"/>
     </target>
     
     <target name="clean" depends="projectized-common.clean">
diff --git a/RecentActivity/release/modules/ext/gson-2.1.jar b/RecentActivity/release/modules/ext/gson-2.1.jar
deleted file mode 100644
index b85f091a0d2e76b75babc21bdbe05ef118089910..0000000000000000000000000000000000000000
Binary files a/RecentActivity/release/modules/ext/gson-2.1.jar and /dev/null differ
diff --git a/RecentActivity/release/pasco2/commons-cli-1.0.jar b/RecentActivity/release/pasco2/commons-cli-1.0.jar
deleted file mode 100644
index 22a004e14e16720cae9af97d4d1475b12d2388aa..0000000000000000000000000000000000000000
Binary files a/RecentActivity/release/pasco2/commons-cli-1.0.jar and /dev/null differ
diff --git a/RecentActivity/release/pasco2/commons-collections-3.1.jar b/RecentActivity/release/pasco2/commons-collections-3.1.jar
deleted file mode 100644
index 41e230feeaa53618b6ac5f8d11792c2eecf4d4fd..0000000000000000000000000000000000000000
Binary files a/RecentActivity/release/pasco2/commons-collections-3.1.jar and /dev/null differ
diff --git a/RecentActivity/release/pasco2/ctypes4j.dll b/RecentActivity/release/pasco2/ctypes4j.dll
deleted file mode 100644
index 3455ad1771c222ac7181c4849ce52bf61f9365d2..0000000000000000000000000000000000000000
Binary files a/RecentActivity/release/pasco2/ctypes4j.dll and /dev/null differ
diff --git a/RecentActivity/release/pasco2/ctypes4j.jar b/RecentActivity/release/pasco2/ctypes4j.jar
deleted file mode 100644
index a6c6f3c3b0e1db8e5d7e9214fc0a5ad839f70282..0000000000000000000000000000000000000000
Binary files a/RecentActivity/release/pasco2/ctypes4j.jar and /dev/null differ
diff --git a/RecentActivity/release/pasco2/ctypes4j.zip b/RecentActivity/release/pasco2/ctypes4j.zip
deleted file mode 100644
index 84d28c2dbaeb508642386804b2f7916029070a9a..0000000000000000000000000000000000000000
Binary files a/RecentActivity/release/pasco2/ctypes4j.zip and /dev/null differ
diff --git a/RecentActivity/release/pasco2/pasco2.jar b/RecentActivity/release/pasco2/pasco2.jar
deleted file mode 100644
index 1f07a5e960e13be471f0eaabe6dae4b9d5f4261a..0000000000000000000000000000000000000000
Binary files a/RecentActivity/release/pasco2/pasco2.jar and /dev/null differ
diff --git a/RecentActivity/release/pasco2/trove-1.0.2.jar b/RecentActivity/release/pasco2/trove-1.0.2.jar
deleted file mode 100644
index ac62eb35cdb4904289d49b6d322c6b0ebc97a2b4..0000000000000000000000000000000000000000
Binary files a/RecentActivity/release/pasco2/trove-1.0.2.jar and /dev/null differ
diff --git a/RecentActivity/release/pasco2/trove-3.0.2.jar b/RecentActivity/release/pasco2/trove-3.0.2.jar
deleted file mode 100644
index 12fb57681f8ca343350c8f43f1a8c007045936ec..0000000000000000000000000000000000000000
Binary files a/RecentActivity/release/pasco2/trove-3.0.2.jar and /dev/null differ
diff --git a/RecentActivity/release/rr-full/license.txt b/thirdparty/rr-full/license.txt
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/license.txt
rename to thirdparty/rr-full/license.txt
diff --git a/RecentActivity/release/rr-full/p2x5124.dll b/thirdparty/rr-full/p2x5124.dll
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/p2x5124.dll
rename to thirdparty/rr-full/p2x5124.dll
diff --git a/RecentActivity/release/rr-full/plugins/acmru.pl b/thirdparty/rr-full/plugins/acmru.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/acmru.pl
rename to thirdparty/rr-full/plugins/acmru.pl
diff --git a/RecentActivity/release/rr-full/plugins/adoberdr.pl b/thirdparty/rr-full/plugins/adoberdr.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/adoberdr.pl
rename to thirdparty/rr-full/plugins/adoberdr.pl
diff --git a/RecentActivity/release/rr-full/plugins/ahaha.pl b/thirdparty/rr-full/plugins/ahaha.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/ahaha.pl
rename to thirdparty/rr-full/plugins/ahaha.pl
diff --git a/RecentActivity/release/rr-full/plugins/aim.pl b/thirdparty/rr-full/plugins/aim.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/aim.pl
rename to thirdparty/rr-full/plugins/aim.pl
diff --git a/RecentActivity/release/rr-full/plugins/all b/thirdparty/rr-full/plugins/all
old mode 100755
new mode 100644
similarity index 95%
rename from RecentActivity/release/rr-full/plugins/all
rename to thirdparty/rr-full/plugins/all
index 137dd3039c7735d409d43e56134875ce5bd05693..c9312edbf720671f42e07ae89def355f0d5c1d4c
--- a/RecentActivity/release/rr-full/plugins/all
+++ b/thirdparty/rr-full/plugins/all
@@ -1,6 +1,6 @@
-# 20120528 *ALL* Plugins that apply on any HIVES, alphabetical order
-baseline
-findexes
-regtime
-rlo
+# 20120528 *ALL* Plugins that apply on any HIVES, alphabetical order
+baseline
+findexes
+regtime
+rlo
 del
\ No newline at end of file
diff --git a/RecentActivity/release/rr-full/plugins/amcache.pl b/thirdparty/rr-full/plugins/amcache.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/amcache.pl
rename to thirdparty/rr-full/plugins/amcache.pl
diff --git a/RecentActivity/release/rr-full/plugins/aports.pl b/thirdparty/rr-full/plugins/aports.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/aports.pl
rename to thirdparty/rr-full/plugins/aports.pl
diff --git a/RecentActivity/release/rr-full/plugins/appcertdlls.pl b/thirdparty/rr-full/plugins/appcertdlls.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/appcertdlls.pl
rename to thirdparty/rr-full/plugins/appcertdlls.pl
diff --git a/RecentActivity/release/rr-full/plugins/appcompatcache.pl b/thirdparty/rr-full/plugins/appcompatcache.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/appcompatcache.pl
rename to thirdparty/rr-full/plugins/appcompatcache.pl
diff --git a/RecentActivity/release/rr-full/plugins/appcompatcache_tln.pl b/thirdparty/rr-full/plugins/appcompatcache_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/appcompatcache_tln.pl
rename to thirdparty/rr-full/plugins/appcompatcache_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/appcompatflags.pl b/thirdparty/rr-full/plugins/appcompatflags.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/appcompatflags.pl
rename to thirdparty/rr-full/plugins/appcompatflags.pl
diff --git a/RecentActivity/release/rr-full/plugins/appinitdlls.pl b/thirdparty/rr-full/plugins/appinitdlls.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/appinitdlls.pl
rename to thirdparty/rr-full/plugins/appinitdlls.pl
diff --git a/RecentActivity/release/rr-full/plugins/applets.pl b/thirdparty/rr-full/plugins/applets.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/applets.pl
rename to thirdparty/rr-full/plugins/applets.pl
diff --git a/RecentActivity/release/rr-full/plugins/applets_tln.pl b/thirdparty/rr-full/plugins/applets_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/applets_tln.pl
rename to thirdparty/rr-full/plugins/applets_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/apppaths.pl b/thirdparty/rr-full/plugins/apppaths.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/apppaths.pl
rename to thirdparty/rr-full/plugins/apppaths.pl
diff --git a/RecentActivity/release/rr-full/plugins/apppaths_tln.pl b/thirdparty/rr-full/plugins/apppaths_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/apppaths_tln.pl
rename to thirdparty/rr-full/plugins/apppaths_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/appspecific.pl b/thirdparty/rr-full/plugins/appspecific.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/appspecific.pl
rename to thirdparty/rr-full/plugins/appspecific.pl
diff --git a/RecentActivity/release/rr-full/plugins/ares.pl b/thirdparty/rr-full/plugins/ares.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/ares.pl
rename to thirdparty/rr-full/plugins/ares.pl
diff --git a/RecentActivity/release/rr-full/plugins/arpcache.pl b/thirdparty/rr-full/plugins/arpcache.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/arpcache.pl
rename to thirdparty/rr-full/plugins/arpcache.pl
diff --git a/RecentActivity/release/rr-full/plugins/assoc.pl b/thirdparty/rr-full/plugins/assoc.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/assoc.pl
rename to thirdparty/rr-full/plugins/assoc.pl
diff --git a/RecentActivity/release/rr-full/plugins/at.pl b/thirdparty/rr-full/plugins/at.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/at.pl
rename to thirdparty/rr-full/plugins/at.pl
diff --git a/RecentActivity/release/rr-full/plugins/at_tln.pl b/thirdparty/rr-full/plugins/at_tln.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/at_tln.pl
rename to thirdparty/rr-full/plugins/at_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/attachmgr.pl b/thirdparty/rr-full/plugins/attachmgr.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/attachmgr.pl
rename to thirdparty/rr-full/plugins/attachmgr.pl
diff --git a/RecentActivity/release/rr-full/plugins/attachmgr_tln.pl b/thirdparty/rr-full/plugins/attachmgr_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/attachmgr_tln.pl
rename to thirdparty/rr-full/plugins/attachmgr_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/audiodev.pl b/thirdparty/rr-full/plugins/audiodev.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/audiodev.pl
rename to thirdparty/rr-full/plugins/audiodev.pl
diff --git a/RecentActivity/release/rr-full/plugins/auditfail.pl b/thirdparty/rr-full/plugins/auditfail.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/auditfail.pl
rename to thirdparty/rr-full/plugins/auditfail.pl
diff --git a/RecentActivity/release/rr-full/plugins/auditpol.pl b/thirdparty/rr-full/plugins/auditpol.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/auditpol.pl
rename to thirdparty/rr-full/plugins/auditpol.pl
diff --git a/RecentActivity/release/rr-full/plugins/autoendtasks.pl b/thirdparty/rr-full/plugins/autoendtasks.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/autoendtasks.pl
rename to thirdparty/rr-full/plugins/autoendtasks.pl
diff --git a/RecentActivity/release/rr-full/plugins/autorun.pl b/thirdparty/rr-full/plugins/autorun.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/autorun.pl
rename to thirdparty/rr-full/plugins/autorun.pl
diff --git a/RecentActivity/release/rr-full/plugins/backuprestore.pl b/thirdparty/rr-full/plugins/backuprestore.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/backuprestore.pl
rename to thirdparty/rr-full/plugins/backuprestore.pl
diff --git a/RecentActivity/release/rr-full/plugins/banner.pl b/thirdparty/rr-full/plugins/banner.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/banner.pl
rename to thirdparty/rr-full/plugins/banner.pl
diff --git a/RecentActivity/release/rr-full/plugins/baseline.pl b/thirdparty/rr-full/plugins/baseline.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/baseline.pl
rename to thirdparty/rr-full/plugins/baseline.pl
diff --git a/RecentActivity/release/rr-full/plugins/bho.pl b/thirdparty/rr-full/plugins/bho.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/bho.pl
rename to thirdparty/rr-full/plugins/bho.pl
diff --git a/RecentActivity/release/rr-full/plugins/bitbucket.pl b/thirdparty/rr-full/plugins/bitbucket.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/bitbucket.pl
rename to thirdparty/rr-full/plugins/bitbucket.pl
diff --git a/RecentActivity/release/rr-full/plugins/bitbucket_user.pl b/thirdparty/rr-full/plugins/bitbucket_user.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/bitbucket_user.pl
rename to thirdparty/rr-full/plugins/bitbucket_user.pl
diff --git a/RecentActivity/release/rr-full/plugins/brisv.pl b/thirdparty/rr-full/plugins/brisv.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/brisv.pl
rename to thirdparty/rr-full/plugins/brisv.pl
diff --git a/RecentActivity/release/rr-full/plugins/btconfig.pl b/thirdparty/rr-full/plugins/btconfig.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/btconfig.pl
rename to thirdparty/rr-full/plugins/btconfig.pl
diff --git a/RecentActivity/release/rr-full/plugins/bthport.pl b/thirdparty/rr-full/plugins/bthport.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/bthport.pl
rename to thirdparty/rr-full/plugins/bthport.pl
diff --git a/RecentActivity/release/rr-full/plugins/cain.pl b/thirdparty/rr-full/plugins/cain.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/cain.pl
rename to thirdparty/rr-full/plugins/cain.pl
diff --git a/RecentActivity/release/rr-full/plugins/ccleaner.pl b/thirdparty/rr-full/plugins/ccleaner.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/ccleaner.pl
rename to thirdparty/rr-full/plugins/ccleaner.pl
diff --git a/RecentActivity/release/rr-full/plugins/cdstaginginfo.pl b/thirdparty/rr-full/plugins/cdstaginginfo.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/cdstaginginfo.pl
rename to thirdparty/rr-full/plugins/cdstaginginfo.pl
diff --git a/RecentActivity/release/rr-full/plugins/clampi.pl b/thirdparty/rr-full/plugins/clampi.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/clampi.pl
rename to thirdparty/rr-full/plugins/clampi.pl
diff --git a/RecentActivity/release/rr-full/plugins/clampitm.pl b/thirdparty/rr-full/plugins/clampitm.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/clampitm.pl
rename to thirdparty/rr-full/plugins/clampitm.pl
diff --git a/RecentActivity/release/rr-full/plugins/clsid.pl b/thirdparty/rr-full/plugins/clsid.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/clsid.pl
rename to thirdparty/rr-full/plugins/clsid.pl
diff --git a/RecentActivity/release/rr-full/plugins/cmd_shell.pl b/thirdparty/rr-full/plugins/cmd_shell.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/cmd_shell.pl
rename to thirdparty/rr-full/plugins/cmd_shell.pl
diff --git a/RecentActivity/release/rr-full/plugins/cmd_shell_tln.pl b/thirdparty/rr-full/plugins/cmd_shell_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/cmd_shell_tln.pl
rename to thirdparty/rr-full/plugins/cmd_shell_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/cmd_shell_u.pl b/thirdparty/rr-full/plugins/cmd_shell_u.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/cmd_shell_u.pl
rename to thirdparty/rr-full/plugins/cmd_shell_u.pl
diff --git a/RecentActivity/release/rr-full/plugins/cmdproc.pl b/thirdparty/rr-full/plugins/cmdproc.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/cmdproc.pl
rename to thirdparty/rr-full/plugins/cmdproc.pl
diff --git a/RecentActivity/release/rr-full/plugins/cmdproc_tln.pl b/thirdparty/rr-full/plugins/cmdproc_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/cmdproc_tln.pl
rename to thirdparty/rr-full/plugins/cmdproc_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/codeid.pl b/thirdparty/rr-full/plugins/codeid.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/codeid.pl
rename to thirdparty/rr-full/plugins/codeid.pl
diff --git a/RecentActivity/release/rr-full/plugins/comdlg32.pl b/thirdparty/rr-full/plugins/comdlg32.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/comdlg32.pl
rename to thirdparty/rr-full/plugins/comdlg32.pl
diff --git a/RecentActivity/release/rr-full/plugins/comfoo.pl b/thirdparty/rr-full/plugins/comfoo.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/comfoo.pl
rename to thirdparty/rr-full/plugins/comfoo.pl
diff --git a/RecentActivity/release/rr-full/plugins/compdesc.pl b/thirdparty/rr-full/plugins/compdesc.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/compdesc.pl
rename to thirdparty/rr-full/plugins/compdesc.pl
diff --git a/RecentActivity/release/rr-full/plugins/compname.pl b/thirdparty/rr-full/plugins/compname.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/compname.pl
rename to thirdparty/rr-full/plugins/compname.pl
diff --git a/RecentActivity/release/rr-full/plugins/controlpanel.pl b/thirdparty/rr-full/plugins/controlpanel.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/controlpanel.pl
rename to thirdparty/rr-full/plugins/controlpanel.pl
diff --git a/RecentActivity/release/rr-full/plugins/cpldontload.pl b/thirdparty/rr-full/plugins/cpldontload.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/cpldontload.pl
rename to thirdparty/rr-full/plugins/cpldontload.pl
diff --git a/RecentActivity/release/rr-full/plugins/crashcontrol.pl b/thirdparty/rr-full/plugins/crashcontrol.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/crashcontrol.pl
rename to thirdparty/rr-full/plugins/crashcontrol.pl
diff --git a/RecentActivity/release/rr-full/plugins/ctrlpnl.pl b/thirdparty/rr-full/plugins/ctrlpnl.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/ctrlpnl.pl
rename to thirdparty/rr-full/plugins/ctrlpnl.pl
diff --git a/RecentActivity/release/rr-full/plugins/ddm.pl b/thirdparty/rr-full/plugins/ddm.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/ddm.pl
rename to thirdparty/rr-full/plugins/ddm.pl
diff --git a/RecentActivity/release/rr-full/plugins/ddo.pl b/thirdparty/rr-full/plugins/ddo.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/ddo.pl
rename to thirdparty/rr-full/plugins/ddo.pl
diff --git a/RecentActivity/release/rr-full/plugins/decaf.pl b/thirdparty/rr-full/plugins/decaf.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/decaf.pl
rename to thirdparty/rr-full/plugins/decaf.pl
diff --git a/RecentActivity/release/rr-full/plugins/defbrowser.pl b/thirdparty/rr-full/plugins/defbrowser.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/defbrowser.pl
rename to thirdparty/rr-full/plugins/defbrowser.pl
diff --git a/RecentActivity/release/rr-full/plugins/del.pl b/thirdparty/rr-full/plugins/del.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/del.pl
rename to thirdparty/rr-full/plugins/del.pl
diff --git a/RecentActivity/release/rr-full/plugins/del_tln.pl b/thirdparty/rr-full/plugins/del_tln.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/del_tln.pl
rename to thirdparty/rr-full/plugins/del_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/dependency_walker.pl b/thirdparty/rr-full/plugins/dependency_walker.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/dependency_walker.pl
rename to thirdparty/rr-full/plugins/dependency_walker.pl
diff --git a/RecentActivity/release/rr-full/plugins/devclass.pl b/thirdparty/rr-full/plugins/devclass.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/devclass.pl
rename to thirdparty/rr-full/plugins/devclass.pl
diff --git a/RecentActivity/release/rr-full/plugins/dfrg.pl b/thirdparty/rr-full/plugins/dfrg.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/dfrg.pl
rename to thirdparty/rr-full/plugins/dfrg.pl
diff --git a/RecentActivity/release/rr-full/plugins/diag_sr.pl b/thirdparty/rr-full/plugins/diag_sr.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/diag_sr.pl
rename to thirdparty/rr-full/plugins/diag_sr.pl
diff --git a/RecentActivity/release/rr-full/plugins/direct.pl b/thirdparty/rr-full/plugins/direct.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/direct.pl
rename to thirdparty/rr-full/plugins/direct.pl
diff --git a/RecentActivity/release/rr-full/plugins/direct_tln.pl b/thirdparty/rr-full/plugins/direct_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/direct_tln.pl
rename to thirdparty/rr-full/plugins/direct_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/disablelastaccess.pl b/thirdparty/rr-full/plugins/disablelastaccess.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/disablelastaccess.pl
rename to thirdparty/rr-full/plugins/disablelastaccess.pl
diff --git a/RecentActivity/release/rr-full/plugins/disablesr.pl b/thirdparty/rr-full/plugins/disablesr.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/disablesr.pl
rename to thirdparty/rr-full/plugins/disablesr.pl
diff --git a/RecentActivity/release/rr-full/plugins/dllsearch.pl b/thirdparty/rr-full/plugins/dllsearch.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/dllsearch.pl
rename to thirdparty/rr-full/plugins/dllsearch.pl
diff --git a/RecentActivity/release/rr-full/plugins/dnschanger.pl b/thirdparty/rr-full/plugins/dnschanger.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/dnschanger.pl
rename to thirdparty/rr-full/plugins/dnschanger.pl
diff --git a/RecentActivity/release/rr-full/plugins/domains.pl b/thirdparty/rr-full/plugins/domains.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/domains.pl
rename to thirdparty/rr-full/plugins/domains.pl
diff --git a/RecentActivity/release/rr-full/plugins/drivers32.pl b/thirdparty/rr-full/plugins/drivers32.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/drivers32.pl
rename to thirdparty/rr-full/plugins/drivers32.pl
diff --git a/RecentActivity/release/rr-full/plugins/drwatson.pl b/thirdparty/rr-full/plugins/drwatson.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/drwatson.pl
rename to thirdparty/rr-full/plugins/drwatson.pl
diff --git a/RecentActivity/release/rr-full/plugins/emdmgmt.pl b/thirdparty/rr-full/plugins/emdmgmt.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/emdmgmt.pl
rename to thirdparty/rr-full/plugins/emdmgmt.pl
diff --git a/RecentActivity/release/rr-full/plugins/environment.pl b/thirdparty/rr-full/plugins/environment.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/environment.pl
rename to thirdparty/rr-full/plugins/environment.pl
diff --git a/RecentActivity/release/rr-full/plugins/esent.pl b/thirdparty/rr-full/plugins/esent.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/esent.pl
rename to thirdparty/rr-full/plugins/esent.pl
diff --git a/RecentActivity/release/rr-full/plugins/eventlog.pl b/thirdparty/rr-full/plugins/eventlog.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/eventlog.pl
rename to thirdparty/rr-full/plugins/eventlog.pl
diff --git a/RecentActivity/release/rr-full/plugins/eventlogs.pl b/thirdparty/rr-full/plugins/eventlogs.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/eventlogs.pl
rename to thirdparty/rr-full/plugins/eventlogs.pl
diff --git a/RecentActivity/release/rr-full/plugins/fileexts.pl b/thirdparty/rr-full/plugins/fileexts.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/fileexts.pl
rename to thirdparty/rr-full/plugins/fileexts.pl
diff --git a/RecentActivity/release/rr-full/plugins/filehistory.pl b/thirdparty/rr-full/plugins/filehistory.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/filehistory.pl
rename to thirdparty/rr-full/plugins/filehistory.pl
diff --git a/RecentActivity/release/rr-full/plugins/findexes.pl b/thirdparty/rr-full/plugins/findexes.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/findexes.pl
rename to thirdparty/rr-full/plugins/findexes.pl
diff --git a/RecentActivity/release/rr-full/plugins/fw_config.pl b/thirdparty/rr-full/plugins/fw_config.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/fw_config.pl
rename to thirdparty/rr-full/plugins/fw_config.pl
diff --git a/RecentActivity/release/rr-full/plugins/gauss.pl b/thirdparty/rr-full/plugins/gauss.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/gauss.pl
rename to thirdparty/rr-full/plugins/gauss.pl
diff --git a/RecentActivity/release/rr-full/plugins/gthist.pl b/thirdparty/rr-full/plugins/gthist.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/gthist.pl
rename to thirdparty/rr-full/plugins/gthist.pl
diff --git a/RecentActivity/release/rr-full/plugins/gtwhitelist.pl b/thirdparty/rr-full/plugins/gtwhitelist.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/gtwhitelist.pl
rename to thirdparty/rr-full/plugins/gtwhitelist.pl
diff --git a/RecentActivity/release/rr-full/plugins/haven_and_hearth.pl b/thirdparty/rr-full/plugins/haven_and_hearth.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/haven_and_hearth.pl
rename to thirdparty/rr-full/plugins/haven_and_hearth.pl
diff --git a/RecentActivity/release/rr-full/plugins/hibernate.pl b/thirdparty/rr-full/plugins/hibernate.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/hibernate.pl
rename to thirdparty/rr-full/plugins/hibernate.pl
diff --git a/RecentActivity/release/rr-full/plugins/ide.pl b/thirdparty/rr-full/plugins/ide.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/ide.pl
rename to thirdparty/rr-full/plugins/ide.pl
diff --git a/RecentActivity/release/rr-full/plugins/ie_main.pl b/thirdparty/rr-full/plugins/ie_main.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/ie_main.pl
rename to thirdparty/rr-full/plugins/ie_main.pl
diff --git a/RecentActivity/release/rr-full/plugins/ie_settings.pl b/thirdparty/rr-full/plugins/ie_settings.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/ie_settings.pl
rename to thirdparty/rr-full/plugins/ie_settings.pl
diff --git a/RecentActivity/release/rr-full/plugins/ie_version.pl b/thirdparty/rr-full/plugins/ie_version.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/ie_version.pl
rename to thirdparty/rr-full/plugins/ie_version.pl
diff --git a/RecentActivity/release/rr-full/plugins/ie_zones.pl b/thirdparty/rr-full/plugins/ie_zones.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/ie_zones.pl
rename to thirdparty/rr-full/plugins/ie_zones.pl
diff --git a/RecentActivity/release/rr-full/plugins/iejava.pl b/thirdparty/rr-full/plugins/iejava.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/iejava.pl
rename to thirdparty/rr-full/plugins/iejava.pl
diff --git a/RecentActivity/release/rr-full/plugins/imagedev.pl b/thirdparty/rr-full/plugins/imagedev.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/imagedev.pl
rename to thirdparty/rr-full/plugins/imagedev.pl
diff --git a/RecentActivity/release/rr-full/plugins/imagefile.pl b/thirdparty/rr-full/plugins/imagefile.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/imagefile.pl
rename to thirdparty/rr-full/plugins/imagefile.pl
diff --git a/RecentActivity/release/rr-full/plugins/init_dlls.pl b/thirdparty/rr-full/plugins/init_dlls.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/init_dlls.pl
rename to thirdparty/rr-full/plugins/init_dlls.pl
diff --git a/RecentActivity/release/rr-full/plugins/inprocserver.pl b/thirdparty/rr-full/plugins/inprocserver.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/inprocserver.pl
rename to thirdparty/rr-full/plugins/inprocserver.pl
diff --git a/RecentActivity/release/rr-full/plugins/installedcomp.pl b/thirdparty/rr-full/plugins/installedcomp.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/installedcomp.pl
rename to thirdparty/rr-full/plugins/installedcomp.pl
diff --git a/RecentActivity/release/rr-full/plugins/installer.pl b/thirdparty/rr-full/plugins/installer.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/installer.pl
rename to thirdparty/rr-full/plugins/installer.pl
diff --git a/RecentActivity/release/rr-full/plugins/internet_explorer_cu.pl b/thirdparty/rr-full/plugins/internet_explorer_cu.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/internet_explorer_cu.pl
rename to thirdparty/rr-full/plugins/internet_explorer_cu.pl
diff --git a/RecentActivity/release/rr-full/plugins/internet_settings_cu.pl b/thirdparty/rr-full/plugins/internet_settings_cu.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/internet_settings_cu.pl
rename to thirdparty/rr-full/plugins/internet_settings_cu.pl
diff --git a/RecentActivity/release/rr-full/plugins/itempos.pl b/thirdparty/rr-full/plugins/itempos.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/itempos.pl
rename to thirdparty/rr-full/plugins/itempos.pl
diff --git a/RecentActivity/release/rr-full/plugins/javafx.pl b/thirdparty/rr-full/plugins/javafx.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/javafx.pl
rename to thirdparty/rr-full/plugins/javafx.pl
diff --git a/RecentActivity/release/rr-full/plugins/javasoft.pl b/thirdparty/rr-full/plugins/javasoft.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/javasoft.pl
rename to thirdparty/rr-full/plugins/javasoft.pl
diff --git a/RecentActivity/release/rr-full/plugins/kankan.pl b/thirdparty/rr-full/plugins/kankan.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/kankan.pl
rename to thirdparty/rr-full/plugins/kankan.pl
diff --git a/RecentActivity/release/rr-full/plugins/kb950582.pl b/thirdparty/rr-full/plugins/kb950582.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/kb950582.pl
rename to thirdparty/rr-full/plugins/kb950582.pl
diff --git a/RecentActivity/release/rr-full/plugins/kbdcrash.pl b/thirdparty/rr-full/plugins/kbdcrash.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/kbdcrash.pl
rename to thirdparty/rr-full/plugins/kbdcrash.pl
diff --git a/RecentActivity/release/rr-full/plugins/knowndev.pl b/thirdparty/rr-full/plugins/knowndev.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/knowndev.pl
rename to thirdparty/rr-full/plugins/knowndev.pl
diff --git a/RecentActivity/release/rr-full/plugins/landesk.pl b/thirdparty/rr-full/plugins/landesk.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/landesk.pl
rename to thirdparty/rr-full/plugins/landesk.pl
diff --git a/RecentActivity/release/rr-full/plugins/landesk_tln.pl b/thirdparty/rr-full/plugins/landesk_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/landesk_tln.pl
rename to thirdparty/rr-full/plugins/landesk_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/lazyshell.pl b/thirdparty/rr-full/plugins/lazyshell.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/lazyshell.pl
rename to thirdparty/rr-full/plugins/lazyshell.pl
diff --git a/RecentActivity/release/rr-full/plugins/legacy.pl b/thirdparty/rr-full/plugins/legacy.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/legacy.pl
rename to thirdparty/rr-full/plugins/legacy.pl
diff --git a/RecentActivity/release/rr-full/plugins/legacy_tln.pl b/thirdparty/rr-full/plugins/legacy_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/legacy_tln.pl
rename to thirdparty/rr-full/plugins/legacy_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/licenses.pl b/thirdparty/rr-full/plugins/licenses.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/licenses.pl
rename to thirdparty/rr-full/plugins/licenses.pl
diff --git a/RecentActivity/release/rr-full/plugins/listsoft.pl b/thirdparty/rr-full/plugins/listsoft.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/listsoft.pl
rename to thirdparty/rr-full/plugins/listsoft.pl
diff --git a/RecentActivity/release/rr-full/plugins/liveContactsGUID.pl b/thirdparty/rr-full/plugins/liveContactsGUID.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/liveContactsGUID.pl
rename to thirdparty/rr-full/plugins/liveContactsGUID.pl
diff --git a/RecentActivity/release/rr-full/plugins/load.pl b/thirdparty/rr-full/plugins/load.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/load.pl
rename to thirdparty/rr-full/plugins/load.pl
diff --git a/RecentActivity/release/rr-full/plugins/logonusername.pl b/thirdparty/rr-full/plugins/logonusername.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/logonusername.pl
rename to thirdparty/rr-full/plugins/logonusername.pl
diff --git a/RecentActivity/release/rr-full/plugins/lsa_packages.pl b/thirdparty/rr-full/plugins/lsa_packages.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/lsa_packages.pl
rename to thirdparty/rr-full/plugins/lsa_packages.pl
diff --git a/RecentActivity/release/rr-full/plugins/lsasecrets.pl b/thirdparty/rr-full/plugins/lsasecrets.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/lsasecrets.pl
rename to thirdparty/rr-full/plugins/lsasecrets.pl
diff --git a/RecentActivity/release/rr-full/plugins/macaddr.pl b/thirdparty/rr-full/plugins/macaddr.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/macaddr.pl
rename to thirdparty/rr-full/plugins/macaddr.pl
diff --git a/RecentActivity/release/rr-full/plugins/menuorder.pl b/thirdparty/rr-full/plugins/menuorder.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/menuorder.pl
rename to thirdparty/rr-full/plugins/menuorder.pl
diff --git a/RecentActivity/release/rr-full/plugins/mixer.pl b/thirdparty/rr-full/plugins/mixer.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/mixer.pl
rename to thirdparty/rr-full/plugins/mixer.pl
diff --git a/RecentActivity/release/rr-full/plugins/mixer_tln.pl b/thirdparty/rr-full/plugins/mixer_tln.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/mixer_tln.pl
rename to thirdparty/rr-full/plugins/mixer_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/mmc.pl b/thirdparty/rr-full/plugins/mmc.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/mmc.pl
rename to thirdparty/rr-full/plugins/mmc.pl
diff --git a/RecentActivity/release/rr-full/plugins/mmc_tln.pl b/thirdparty/rr-full/plugins/mmc_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/mmc_tln.pl
rename to thirdparty/rr-full/plugins/mmc_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/mmo.pl b/thirdparty/rr-full/plugins/mmo.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/mmo.pl
rename to thirdparty/rr-full/plugins/mmo.pl
diff --git a/RecentActivity/release/rr-full/plugins/mndmru.pl b/thirdparty/rr-full/plugins/mndmru.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/mndmru.pl
rename to thirdparty/rr-full/plugins/mndmru.pl
diff --git a/RecentActivity/release/rr-full/plugins/mndmru_tln.pl b/thirdparty/rr-full/plugins/mndmru_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/mndmru_tln.pl
rename to thirdparty/rr-full/plugins/mndmru_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/mountdev.pl b/thirdparty/rr-full/plugins/mountdev.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/mountdev.pl
rename to thirdparty/rr-full/plugins/mountdev.pl
diff --git a/RecentActivity/release/rr-full/plugins/mountdev2.pl b/thirdparty/rr-full/plugins/mountdev2.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/mountdev2.pl
rename to thirdparty/rr-full/plugins/mountdev2.pl
diff --git a/RecentActivity/release/rr-full/plugins/mountdev2.pl.old b/thirdparty/rr-full/plugins/mountdev2.pl.old
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/mountdev2.pl.old
rename to thirdparty/rr-full/plugins/mountdev2.pl.old
diff --git a/RecentActivity/release/rr-full/plugins/mp2.pl b/thirdparty/rr-full/plugins/mp2.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/mp2.pl
rename to thirdparty/rr-full/plugins/mp2.pl
diff --git a/RecentActivity/release/rr-full/plugins/mp3.pl b/thirdparty/rr-full/plugins/mp3.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/mp3.pl
rename to thirdparty/rr-full/plugins/mp3.pl
diff --git a/RecentActivity/release/rr-full/plugins/mpmru.pl b/thirdparty/rr-full/plugins/mpmru.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/mpmru.pl
rename to thirdparty/rr-full/plugins/mpmru.pl
diff --git a/RecentActivity/release/rr-full/plugins/mrt.pl b/thirdparty/rr-full/plugins/mrt.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/mrt.pl
rename to thirdparty/rr-full/plugins/mrt.pl
diff --git a/RecentActivity/release/rr-full/plugins/msis.pl b/thirdparty/rr-full/plugins/msis.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/msis.pl
rename to thirdparty/rr-full/plugins/msis.pl
diff --git a/RecentActivity/release/rr-full/plugins/mspaper.pl b/thirdparty/rr-full/plugins/mspaper.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/mspaper.pl
rename to thirdparty/rr-full/plugins/mspaper.pl
diff --git a/RecentActivity/release/rr-full/plugins/muicache.pl b/thirdparty/rr-full/plugins/muicache.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/muicache.pl
rename to thirdparty/rr-full/plugins/muicache.pl
diff --git a/RecentActivity/release/rr-full/plugins/muicache_tln.pl b/thirdparty/rr-full/plugins/muicache_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/muicache_tln.pl
rename to thirdparty/rr-full/plugins/muicache_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/nero.pl b/thirdparty/rr-full/plugins/nero.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/nero.pl
rename to thirdparty/rr-full/plugins/nero.pl
diff --git a/RecentActivity/release/rr-full/plugins/netassist.pl b/thirdparty/rr-full/plugins/netassist.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/netassist.pl
rename to thirdparty/rr-full/plugins/netassist.pl
diff --git a/RecentActivity/release/rr-full/plugins/netsvcs.pl b/thirdparty/rr-full/plugins/netsvcs.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/netsvcs.pl
rename to thirdparty/rr-full/plugins/netsvcs.pl
diff --git a/RecentActivity/release/rr-full/plugins/network.pl b/thirdparty/rr-full/plugins/network.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/network.pl
rename to thirdparty/rr-full/plugins/network.pl
diff --git a/RecentActivity/release/rr-full/plugins/networkcards.pl b/thirdparty/rr-full/plugins/networkcards.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/networkcards.pl
rename to thirdparty/rr-full/plugins/networkcards.pl
diff --git a/RecentActivity/release/rr-full/plugins/networklist.pl b/thirdparty/rr-full/plugins/networklist.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/networklist.pl
rename to thirdparty/rr-full/plugins/networklist.pl
diff --git a/RecentActivity/release/rr-full/plugins/networklist_tln.pl b/thirdparty/rr-full/plugins/networklist_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/networklist_tln.pl
rename to thirdparty/rr-full/plugins/networklist_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/networkuid.pl b/thirdparty/rr-full/plugins/networkuid.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/networkuid.pl
rename to thirdparty/rr-full/plugins/networkuid.pl
diff --git a/RecentActivity/release/rr-full/plugins/nic.pl b/thirdparty/rr-full/plugins/nic.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/nic.pl
rename to thirdparty/rr-full/plugins/nic.pl
diff --git a/RecentActivity/release/rr-full/plugins/nic2.pl b/thirdparty/rr-full/plugins/nic2.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/nic2.pl
rename to thirdparty/rr-full/plugins/nic2.pl
diff --git a/RecentActivity/release/rr-full/plugins/nic_mst2.pl b/thirdparty/rr-full/plugins/nic_mst2.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/nic_mst2.pl
rename to thirdparty/rr-full/plugins/nic_mst2.pl
diff --git a/RecentActivity/release/rr-full/plugins/nolmhash.pl b/thirdparty/rr-full/plugins/nolmhash.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/nolmhash.pl
rename to thirdparty/rr-full/plugins/nolmhash.pl
diff --git a/RecentActivity/release/rr-full/plugins/ntuser b/thirdparty/rr-full/plugins/ntuser
old mode 100755
new mode 100644
similarity index 91%
rename from RecentActivity/release/rr-full/plugins/ntuser
rename to thirdparty/rr-full/plugins/ntuser
index 83eff2a1f13e79d6dc6c646d74e27d40e3b57a48..4d724f2cb3ce0b04a1da96337a088b9925a3cfc2
--- a/RecentActivity/release/rr-full/plugins/ntuser
+++ b/thirdparty/rr-full/plugins/ntuser
@@ -1,103 +1,103 @@
-# 20120528 *ALL* Plugins that apply on NTUSER hive, alphabetical order
-acmru
-adoberdr
-aim
-aports
-appcompatflags
-applets
-appspecific
-ares
-arpcache
-autoendtasks
-autorun
-bitbucket_user
-brisv
-cain
-ccleaner
-clampi
-clampitm
-comdlg32
-compatassist
-compdesc
-controlpanel
-cpldontload
-decaf
-dependency_walker
-domains
-environment
-fileexts
-filehistory
-gthist
-gtwhitelist
-haven_and_hearth
-ie_settings
-internet_explorer_cu
-internet_settings_cu
-javafx
-listsoft
-liveContactsGUID
-load
-logonusername
-mmc
-mndmru
-mp2
-mpmru
-mspaper
-muicache
-nero
-netassist
-odysseus
-officedocs
-officedocs2010
-oisc
-osversion
-outlook
-policies_u
-printermru
-printers
-privoxy
-proxysettings
-publishingwizard
-putty
-rdphint
-realplayer6
-realvnc
-recentdocs
-rootkit_revealer
-runmru
-sevenzip
-shellfolders
-skype
-snapshot_viewer
-ssh_host_keys
-startmenuinternetapps_cu
-startpage
-streammru
-streams
-sysinternals
-trustrecords
-tsclient
-typedpaths
-typedurls
-typedurlstime
-unreadmail
-user_run
-user_win
-userassist
-userinfo
-userlocsvc
-vista_bitbucket
-vmplayer
-vmware_vsphere_client
-vnchooksapplicationprefs
-vncviewer
-wallpaper
-warcraft3
-winlivemail
-winlogon_u
-winrar
-winscp_sessions
-winvnc
-winzip
-wordwheelquery
+# 20120528 *ALL* Plugins that apply on NTUSER hive, alphabetical order
+acmru
+adoberdr
+aim
+aports
+appcompatflags
+applets
+appspecific
+ares
+arpcache
+autoendtasks
+autorun
+bitbucket_user
+brisv
+cain
+ccleaner
+clampi
+clampitm
+comdlg32
+compatassist
+compdesc
+controlpanel
+cpldontload
+decaf
+dependency_walker
+domains
+environment
+fileexts
+filehistory
+gthist
+gtwhitelist
+haven_and_hearth
+ie_settings
+internet_explorer_cu
+internet_settings_cu
+javafx
+listsoft
+liveContactsGUID
+load
+logonusername
+mmc
+mndmru
+mp2
+mpmru
+mspaper
+muicache
+nero
+netassist
+odysseus
+officedocs
+officedocs2010
+oisc
+osversion
+outlook
+policies_u
+printermru
+printers
+privoxy
+proxysettings
+publishingwizard
+putty
+rdphint
+realplayer6
+realvnc
+recentdocs
+rootkit_revealer
+runmru
+sevenzip
+shellfolders
+skype
+snapshot_viewer
+ssh_host_keys
+startmenuinternetapps_cu
+startpage
+streammru
+streams
+sysinternals
+trustrecords
+tsclient
+typedpaths
+typedurls
+typedurlstime
+unreadmail
+user_run
+user_win
+userassist
+userinfo
+userlocsvc
+vista_bitbucket
+vmplayer
+vmware_vsphere_client
+vnchooksapplicationprefs
+vncviewer
+wallpaper
+warcraft3
+winlivemail
+winlogon_u
+winrar
+winscp_sessions
+winvnc
+winzip
+wordwheelquery
 yahoo_cu
\ No newline at end of file
diff --git a/RecentActivity/release/rr-full/plugins/ntusernetwork.pl b/thirdparty/rr-full/plugins/ntusernetwork.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/ntusernetwork.pl
rename to thirdparty/rr-full/plugins/ntusernetwork.pl
diff --git a/RecentActivity/release/rr-full/plugins/odysseus.pl b/thirdparty/rr-full/plugins/odysseus.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/odysseus.pl
rename to thirdparty/rr-full/plugins/odysseus.pl
diff --git a/RecentActivity/release/rr-full/plugins/officedocs.pl b/thirdparty/rr-full/plugins/officedocs.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/officedocs.pl
rename to thirdparty/rr-full/plugins/officedocs.pl
diff --git a/RecentActivity/release/rr-full/plugins/officedocs2010.pl b/thirdparty/rr-full/plugins/officedocs2010.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/officedocs2010.pl
rename to thirdparty/rr-full/plugins/officedocs2010.pl
diff --git a/RecentActivity/release/rr-full/plugins/officedocs2010_tln.pl b/thirdparty/rr-full/plugins/officedocs2010_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/officedocs2010_tln.pl
rename to thirdparty/rr-full/plugins/officedocs2010_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/oisc.pl b/thirdparty/rr-full/plugins/oisc.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/oisc.pl
rename to thirdparty/rr-full/plugins/oisc.pl
diff --git a/RecentActivity/release/rr-full/plugins/olsearch.pl b/thirdparty/rr-full/plugins/olsearch.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/olsearch.pl
rename to thirdparty/rr-full/plugins/olsearch.pl
diff --git a/RecentActivity/release/rr-full/plugins/opencandy.pl b/thirdparty/rr-full/plugins/opencandy.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/opencandy.pl
rename to thirdparty/rr-full/plugins/opencandy.pl
diff --git a/RecentActivity/release/rr-full/plugins/osversion.pl b/thirdparty/rr-full/plugins/osversion.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/osversion.pl
rename to thirdparty/rr-full/plugins/osversion.pl
diff --git a/RecentActivity/release/rr-full/plugins/osversion_tln.pl b/thirdparty/rr-full/plugins/osversion_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/osversion_tln.pl
rename to thirdparty/rr-full/plugins/osversion_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/outlook.pl b/thirdparty/rr-full/plugins/outlook.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/outlook.pl
rename to thirdparty/rr-full/plugins/outlook.pl
diff --git a/RecentActivity/release/rr-full/plugins/outlook2.pl b/thirdparty/rr-full/plugins/outlook2.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/outlook2.pl
rename to thirdparty/rr-full/plugins/outlook2.pl
diff --git a/RecentActivity/release/rr-full/plugins/pagefile.pl b/thirdparty/rr-full/plugins/pagefile.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/pagefile.pl
rename to thirdparty/rr-full/plugins/pagefile.pl
diff --git a/RecentActivity/release/rr-full/plugins/pending.pl b/thirdparty/rr-full/plugins/pending.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/pending.pl
rename to thirdparty/rr-full/plugins/pending.pl
diff --git a/RecentActivity/release/rr-full/plugins/phdet.pl b/thirdparty/rr-full/plugins/phdet.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/phdet.pl
rename to thirdparty/rr-full/plugins/phdet.pl
diff --git a/RecentActivity/release/rr-full/plugins/photos.pl b/thirdparty/rr-full/plugins/photos.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/photos.pl
rename to thirdparty/rr-full/plugins/photos.pl
diff --git a/RecentActivity/release/rr-full/plugins/polacdms.pl b/thirdparty/rr-full/plugins/polacdms.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/polacdms.pl
rename to thirdparty/rr-full/plugins/polacdms.pl
diff --git a/RecentActivity/release/rr-full/plugins/policies_u.pl b/thirdparty/rr-full/plugins/policies_u.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/policies_u.pl
rename to thirdparty/rr-full/plugins/policies_u.pl
diff --git a/RecentActivity/release/rr-full/plugins/port_dev.pl b/thirdparty/rr-full/plugins/port_dev.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/port_dev.pl
rename to thirdparty/rr-full/plugins/port_dev.pl
diff --git a/RecentActivity/release/rr-full/plugins/prefetch.pl b/thirdparty/rr-full/plugins/prefetch.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/prefetch.pl
rename to thirdparty/rr-full/plugins/prefetch.pl
diff --git a/RecentActivity/release/rr-full/plugins/printermru.pl b/thirdparty/rr-full/plugins/printermru.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/printermru.pl
rename to thirdparty/rr-full/plugins/printermru.pl
diff --git a/RecentActivity/release/rr-full/plugins/printers.pl b/thirdparty/rr-full/plugins/printers.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/printers.pl
rename to thirdparty/rr-full/plugins/printers.pl
diff --git a/RecentActivity/release/rr-full/plugins/privoxy.pl b/thirdparty/rr-full/plugins/privoxy.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/privoxy.pl
rename to thirdparty/rr-full/plugins/privoxy.pl
diff --git a/RecentActivity/release/rr-full/plugins/processor_architecture.pl b/thirdparty/rr-full/plugins/processor_architecture.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/processor_architecture.pl
rename to thirdparty/rr-full/plugins/processor_architecture.pl
diff --git a/RecentActivity/release/rr-full/plugins/product.pl b/thirdparty/rr-full/plugins/product.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/product.pl
rename to thirdparty/rr-full/plugins/product.pl
diff --git a/RecentActivity/release/rr-full/plugins/productpolicy.pl b/thirdparty/rr-full/plugins/productpolicy.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/productpolicy.pl
rename to thirdparty/rr-full/plugins/productpolicy.pl
diff --git a/RecentActivity/release/rr-full/plugins/producttype.pl b/thirdparty/rr-full/plugins/producttype.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/producttype.pl
rename to thirdparty/rr-full/plugins/producttype.pl
diff --git a/RecentActivity/release/rr-full/plugins/profilelist.pl b/thirdparty/rr-full/plugins/profilelist.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/profilelist.pl
rename to thirdparty/rr-full/plugins/profilelist.pl
diff --git a/RecentActivity/release/rr-full/plugins/profiler.pl b/thirdparty/rr-full/plugins/profiler.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/profiler.pl
rename to thirdparty/rr-full/plugins/profiler.pl
diff --git a/RecentActivity/release/rr-full/plugins/proxysettings.pl b/thirdparty/rr-full/plugins/proxysettings.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/proxysettings.pl
rename to thirdparty/rr-full/plugins/proxysettings.pl
diff --git a/RecentActivity/release/rr-full/plugins/publishingwizard.pl b/thirdparty/rr-full/plugins/publishingwizard.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/publishingwizard.pl
rename to thirdparty/rr-full/plugins/publishingwizard.pl
diff --git a/RecentActivity/release/rr-full/plugins/putty.pl b/thirdparty/rr-full/plugins/putty.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/putty.pl
rename to thirdparty/rr-full/plugins/putty.pl
diff --git a/RecentActivity/release/rr-full/plugins/rdphint.pl b/thirdparty/rr-full/plugins/rdphint.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/rdphint.pl
rename to thirdparty/rr-full/plugins/rdphint.pl
diff --git a/RecentActivity/release/rr-full/plugins/rdpport.pl b/thirdparty/rr-full/plugins/rdpport.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/rdpport.pl
rename to thirdparty/rr-full/plugins/rdpport.pl
diff --git a/RecentActivity/release/rr-full/plugins/reading_locations.pl b/thirdparty/rr-full/plugins/reading_locations.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/reading_locations.pl
rename to thirdparty/rr-full/plugins/reading_locations.pl
diff --git a/RecentActivity/release/rr-full/plugins/real_profilelist.pl b/thirdparty/rr-full/plugins/real_profilelist.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/real_profilelist.pl
rename to thirdparty/rr-full/plugins/real_profilelist.pl
diff --git a/RecentActivity/release/rr-full/plugins/realplayer6.pl b/thirdparty/rr-full/plugins/realplayer6.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/realplayer6.pl
rename to thirdparty/rr-full/plugins/realplayer6.pl
diff --git a/RecentActivity/release/rr-full/plugins/realvnc.pl b/thirdparty/rr-full/plugins/realvnc.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/realvnc.pl
rename to thirdparty/rr-full/plugins/realvnc.pl
diff --git a/RecentActivity/release/rr-full/plugins/recentdocs.pl b/thirdparty/rr-full/plugins/recentdocs.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/recentdocs.pl
rename to thirdparty/rr-full/plugins/recentdocs.pl
diff --git a/RecentActivity/release/rr-full/plugins/recentdocs_tln.pl b/thirdparty/rr-full/plugins/recentdocs_tln.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/recentdocs_tln.pl
rename to thirdparty/rr-full/plugins/recentdocs_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/regback.pl b/thirdparty/rr-full/plugins/regback.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/regback.pl
rename to thirdparty/rr-full/plugins/regback.pl
diff --git a/RecentActivity/release/rr-full/plugins/regtime.pl b/thirdparty/rr-full/plugins/regtime.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/regtime.pl
rename to thirdparty/rr-full/plugins/regtime.pl
diff --git a/RecentActivity/release/rr-full/plugins/regtime_tln.pl b/thirdparty/rr-full/plugins/regtime_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/regtime_tln.pl
rename to thirdparty/rr-full/plugins/regtime_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/removdev.pl b/thirdparty/rr-full/plugins/removdev.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/removdev.pl
rename to thirdparty/rr-full/plugins/removdev.pl
diff --git a/RecentActivity/release/rr-full/plugins/renocide.pl b/thirdparty/rr-full/plugins/renocide.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/renocide.pl
rename to thirdparty/rr-full/plugins/renocide.pl
diff --git a/RecentActivity/release/rr-full/plugins/reveton.pl b/thirdparty/rr-full/plugins/reveton.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/reveton.pl
rename to thirdparty/rr-full/plugins/reveton.pl
diff --git a/RecentActivity/release/rr-full/plugins/rlo.pl b/thirdparty/rr-full/plugins/rlo.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/rlo.pl
rename to thirdparty/rr-full/plugins/rlo.pl
diff --git a/RecentActivity/release/rr-full/plugins/rootkit_revealer.pl b/thirdparty/rr-full/plugins/rootkit_revealer.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/rootkit_revealer.pl
rename to thirdparty/rr-full/plugins/rootkit_revealer.pl
diff --git a/RecentActivity/release/rr-full/plugins/routes.pl b/thirdparty/rr-full/plugins/routes.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/routes.pl
rename to thirdparty/rr-full/plugins/routes.pl
diff --git a/RecentActivity/release/rr-full/plugins/runmru.pl b/thirdparty/rr-full/plugins/runmru.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/runmru.pl
rename to thirdparty/rr-full/plugins/runmru.pl
diff --git a/RecentActivity/release/rr-full/plugins/runmru_tln.pl b/thirdparty/rr-full/plugins/runmru_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/runmru_tln.pl
rename to thirdparty/rr-full/plugins/runmru_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/safeboot.pl b/thirdparty/rr-full/plugins/safeboot.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/safeboot.pl
rename to thirdparty/rr-full/plugins/safeboot.pl
diff --git a/RecentActivity/release/rr-full/plugins/sam b/thirdparty/rr-full/plugins/sam
old mode 100755
new mode 100644
similarity index 98%
rename from RecentActivity/release/rr-full/plugins/sam
rename to thirdparty/rr-full/plugins/sam
index 5a42c8bbb4c13462f68983aa2dd24d426ba48d1b..31712a88c905f83dfec0a70cebeed1b6c318b62b
--- a/RecentActivity/release/rr-full/plugins/sam
+++ b/thirdparty/rr-full/plugins/sam
@@ -1,2 +1,2 @@
-# 20120528 *ALL* Plugins that apply on SAM hive, alphabetical order
+# 20120528 *ALL* Plugins that apply on SAM hive, alphabetical order
 samparse
\ No newline at end of file
diff --git a/RecentActivity/release/rr-full/plugins/samparse.pl b/thirdparty/rr-full/plugins/samparse.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/samparse.pl
rename to thirdparty/rr-full/plugins/samparse.pl
diff --git a/RecentActivity/release/rr-full/plugins/samparse_tln.pl b/thirdparty/rr-full/plugins/samparse_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/samparse_tln.pl
rename to thirdparty/rr-full/plugins/samparse_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/schedagent.pl b/thirdparty/rr-full/plugins/schedagent.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/schedagent.pl
rename to thirdparty/rr-full/plugins/schedagent.pl
diff --git a/RecentActivity/release/rr-full/plugins/secctr.pl b/thirdparty/rr-full/plugins/secctr.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/secctr.pl
rename to thirdparty/rr-full/plugins/secctr.pl
diff --git a/RecentActivity/release/rr-full/plugins/secrets.pl b/thirdparty/rr-full/plugins/secrets.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/secrets.pl
rename to thirdparty/rr-full/plugins/secrets.pl
diff --git a/RecentActivity/release/rr-full/plugins/secrets_tln.pl b/thirdparty/rr-full/plugins/secrets_tln.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/secrets_tln.pl
rename to thirdparty/rr-full/plugins/secrets_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/security b/thirdparty/rr-full/plugins/security
old mode 100755
new mode 100644
similarity index 97%
rename from RecentActivity/release/rr-full/plugins/security
rename to thirdparty/rr-full/plugins/security
index 57e2f96cfca2eab75053831b0d843629e9115e79..12841a87ca5c1708b9b2d7446f2a914ac2b96f79
--- a/RecentActivity/release/rr-full/plugins/security
+++ b/thirdparty/rr-full/plugins/security
@@ -1,4 +1,4 @@
-# 20120528 *ALL* Plugins that apply on SECURITY hive, alphabetical order
-auditpol
-lsasecrets
+# 20120528 *ALL* Plugins that apply on SECURITY hive, alphabetical order
+auditpol
+lsasecrets
 polacdms
\ No newline at end of file
diff --git a/RecentActivity/release/rr-full/plugins/securityproviders.pl b/thirdparty/rr-full/plugins/securityproviders.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/securityproviders.pl
rename to thirdparty/rr-full/plugins/securityproviders.pl
diff --git a/RecentActivity/release/rr-full/plugins/services.pl b/thirdparty/rr-full/plugins/services.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/services.pl
rename to thirdparty/rr-full/plugins/services.pl
diff --git a/RecentActivity/release/rr-full/plugins/sevenzip.pl b/thirdparty/rr-full/plugins/sevenzip.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/sevenzip.pl
rename to thirdparty/rr-full/plugins/sevenzip.pl
diff --git a/RecentActivity/release/rr-full/plugins/sfc.pl b/thirdparty/rr-full/plugins/sfc.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/sfc.pl
rename to thirdparty/rr-full/plugins/sfc.pl
diff --git a/RecentActivity/release/rr-full/plugins/shares.pl b/thirdparty/rr-full/plugins/shares.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/shares.pl
rename to thirdparty/rr-full/plugins/shares.pl
diff --git a/RecentActivity/release/rr-full/plugins/shc.pl b/thirdparty/rr-full/plugins/shc.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/shc.pl
rename to thirdparty/rr-full/plugins/shc.pl
diff --git a/RecentActivity/release/rr-full/plugins/shellbags.pl b/thirdparty/rr-full/plugins/shellbags.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/shellbags.pl
rename to thirdparty/rr-full/plugins/shellbags.pl
diff --git a/RecentActivity/release/rr-full/plugins/shellbags_test.pl b/thirdparty/rr-full/plugins/shellbags_test.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/shellbags_test.pl
rename to thirdparty/rr-full/plugins/shellbags_test.pl
diff --git a/RecentActivity/release/rr-full/plugins/shellbags_tln.pl b/thirdparty/rr-full/plugins/shellbags_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/shellbags_tln.pl
rename to thirdparty/rr-full/plugins/shellbags_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/shellbags_xp.pl b/thirdparty/rr-full/plugins/shellbags_xp.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/shellbags_xp.pl
rename to thirdparty/rr-full/plugins/shellbags_xp.pl
diff --git a/RecentActivity/release/rr-full/plugins/shellexec.pl b/thirdparty/rr-full/plugins/shellexec.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/shellexec.pl
rename to thirdparty/rr-full/plugins/shellexec.pl
diff --git a/RecentActivity/release/rr-full/plugins/shellext.pl b/thirdparty/rr-full/plugins/shellext.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/shellext.pl
rename to thirdparty/rr-full/plugins/shellext.pl
diff --git a/RecentActivity/release/rr-full/plugins/shellfolders.pl b/thirdparty/rr-full/plugins/shellfolders.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/shellfolders.pl
rename to thirdparty/rr-full/plugins/shellfolders.pl
diff --git a/RecentActivity/release/rr-full/plugins/shelloverlay.pl b/thirdparty/rr-full/plugins/shelloverlay.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/shelloverlay.pl
rename to thirdparty/rr-full/plugins/shelloverlay.pl
diff --git a/RecentActivity/release/rr-full/plugins/shutdown.pl b/thirdparty/rr-full/plugins/shutdown.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/shutdown.pl
rename to thirdparty/rr-full/plugins/shutdown.pl
diff --git a/RecentActivity/release/rr-full/plugins/shutdowncount.pl b/thirdparty/rr-full/plugins/shutdowncount.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/shutdowncount.pl
rename to thirdparty/rr-full/plugins/shutdowncount.pl
diff --git a/RecentActivity/release/rr-full/plugins/skype.pl b/thirdparty/rr-full/plugins/skype.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/skype.pl
rename to thirdparty/rr-full/plugins/skype.pl
diff --git a/RecentActivity/release/rr-full/plugins/snapshot.pl b/thirdparty/rr-full/plugins/snapshot.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/snapshot.pl
rename to thirdparty/rr-full/plugins/snapshot.pl
diff --git a/RecentActivity/release/rr-full/plugins/snapshot_viewer.pl b/thirdparty/rr-full/plugins/snapshot_viewer.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/snapshot_viewer.pl
rename to thirdparty/rr-full/plugins/snapshot_viewer.pl
diff --git a/RecentActivity/release/rr-full/plugins/soft_run.pl b/thirdparty/rr-full/plugins/soft_run.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/soft_run.pl
rename to thirdparty/rr-full/plugins/soft_run.pl
diff --git a/RecentActivity/release/rr-full/plugins/software b/thirdparty/rr-full/plugins/software
old mode 100755
new mode 100644
similarity index 91%
rename from RecentActivity/release/rr-full/plugins/software
rename to thirdparty/rr-full/plugins/software
index 9b99b757d2505c557a3f30ddbf972caf87347b9f..24d62ad19ea4d465132861d94fbadb5e1a7488fc
--- a/RecentActivity/release/rr-full/plugins/software
+++ b/thirdparty/rr-full/plugins/software
@@ -1,59 +1,59 @@
-# 20120528 *ALL* Plugins that apply on SOFTWARE hive, alphabetical order
-appinitdlls
-apppaths
-assoc
-banner
-bho
-bitbucket
-clsid
-cmd_shell
-codeid
-ctrlpnl
-defbrowser
-direct
-disablesr
-drivers32
-drwatson
-emdmgmt
-ie_version
-imagefile
-init_dlls
-installedcomp
-installer
-kb950582
-landesk
-macaddr
-mrt
-msis
-networkcards
-networklist
-networkuid
-product
-profilelist
-regback
-removdev
-renocide
-schedagent
-secctr
-sfc
-shellexec
-shellext
-shelloverlay
-snapshot
-soft_run
-spp_clients
-sql_lastconnect
-ssid
-startmenuinternetapps_lm
-svchost
-tracing
-uninstall
-urlzone
-uac
-virut
-win_cv
-winbackup
-winlogon
-winnt_cv
-winver
+# 20120528 *ALL* Plugins that apply on SOFTWARE hive, alphabetical order
+appinitdlls
+apppaths
+assoc
+banner
+bho
+bitbucket
+clsid
+cmd_shell
+codeid
+ctrlpnl
+defbrowser
+direct
+disablesr
+drivers32
+drwatson
+emdmgmt
+ie_version
+imagefile
+init_dlls
+installedcomp
+installer
+kb950582
+landesk
+macaddr
+mrt
+msis
+networkcards
+networklist
+networkuid
+product
+profilelist
+regback
+removdev
+renocide
+schedagent
+secctr
+sfc
+shellexec
+shellext
+shelloverlay
+snapshot
+soft_run
+spp_clients
+sql_lastconnect
+ssid
+startmenuinternetapps_lm
+svchost
+tracing
+uninstall
+urlzone
+uac
+virut
+win_cv
+winbackup
+winlogon
+winnt_cv
+winver
 yahoo_lm
\ No newline at end of file
diff --git a/RecentActivity/release/rr-full/plugins/spp_clients.pl b/thirdparty/rr-full/plugins/spp_clients.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/spp_clients.pl
rename to thirdparty/rr-full/plugins/spp_clients.pl
diff --git a/RecentActivity/release/rr-full/plugins/sql_lastconnect.pl b/thirdparty/rr-full/plugins/sql_lastconnect.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/sql_lastconnect.pl
rename to thirdparty/rr-full/plugins/sql_lastconnect.pl
diff --git a/RecentActivity/release/rr-full/plugins/srun_tln.pl b/thirdparty/rr-full/plugins/srun_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/srun_tln.pl
rename to thirdparty/rr-full/plugins/srun_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/ssh_host_keys.pl b/thirdparty/rr-full/plugins/ssh_host_keys.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/ssh_host_keys.pl
rename to thirdparty/rr-full/plugins/ssh_host_keys.pl
diff --git a/RecentActivity/release/rr-full/plugins/ssid.pl b/thirdparty/rr-full/plugins/ssid.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/ssid.pl
rename to thirdparty/rr-full/plugins/ssid.pl
diff --git a/RecentActivity/release/rr-full/plugins/startmenuinternetapps_cu.pl b/thirdparty/rr-full/plugins/startmenuinternetapps_cu.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/startmenuinternetapps_cu.pl
rename to thirdparty/rr-full/plugins/startmenuinternetapps_cu.pl
diff --git a/RecentActivity/release/rr-full/plugins/startmenuinternetapps_lm.pl b/thirdparty/rr-full/plugins/startmenuinternetapps_lm.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/startmenuinternetapps_lm.pl
rename to thirdparty/rr-full/plugins/startmenuinternetapps_lm.pl
diff --git a/RecentActivity/release/rr-full/plugins/startpage.pl b/thirdparty/rr-full/plugins/startpage.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/startpage.pl
rename to thirdparty/rr-full/plugins/startpage.pl
diff --git a/RecentActivity/release/rr-full/plugins/startup.pl b/thirdparty/rr-full/plugins/startup.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/startup.pl
rename to thirdparty/rr-full/plugins/startup.pl
diff --git a/RecentActivity/release/rr-full/plugins/stillimage.pl b/thirdparty/rr-full/plugins/stillimage.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/stillimage.pl
rename to thirdparty/rr-full/plugins/stillimage.pl
diff --git a/RecentActivity/release/rr-full/plugins/susclient.pl b/thirdparty/rr-full/plugins/susclient.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/susclient.pl
rename to thirdparty/rr-full/plugins/susclient.pl
diff --git a/RecentActivity/release/rr-full/plugins/svc.pl b/thirdparty/rr-full/plugins/svc.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/svc.pl
rename to thirdparty/rr-full/plugins/svc.pl
diff --git a/RecentActivity/release/rr-full/plugins/svc_plus.pl b/thirdparty/rr-full/plugins/svc_plus.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/svc_plus.pl
rename to thirdparty/rr-full/plugins/svc_plus.pl
diff --git a/RecentActivity/release/rr-full/plugins/svc_tln.pl b/thirdparty/rr-full/plugins/svc_tln.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/svc_tln.pl
rename to thirdparty/rr-full/plugins/svc_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/svcdll.pl b/thirdparty/rr-full/plugins/svcdll.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/svcdll.pl
rename to thirdparty/rr-full/plugins/svcdll.pl
diff --git a/RecentActivity/release/rr-full/plugins/svchost.pl b/thirdparty/rr-full/plugins/svchost.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/svchost.pl
rename to thirdparty/rr-full/plugins/svchost.pl
diff --git a/RecentActivity/release/rr-full/plugins/sysinternals.pl b/thirdparty/rr-full/plugins/sysinternals.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/sysinternals.pl
rename to thirdparty/rr-full/plugins/sysinternals.pl
diff --git a/RecentActivity/release/rr-full/plugins/sysinternals_tln.pl b/thirdparty/rr-full/plugins/sysinternals_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/sysinternals_tln.pl
rename to thirdparty/rr-full/plugins/sysinternals_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/system b/thirdparty/rr-full/plugins/system
old mode 100755
new mode 100644
similarity index 91%
rename from RecentActivity/release/rr-full/plugins/system
rename to thirdparty/rr-full/plugins/system
index dedd2843789437f707139f440f6fb34a8a07fb18..2b0807cd78b23c806212ccd86828c19687230a1f
--- a/RecentActivity/release/rr-full/plugins/system
+++ b/thirdparty/rr-full/plugins/system
@@ -1,51 +1,51 @@
-# 20120528 *ALL* Plugins that apply on SYSTEM hive, alphabetical order
-appcertdlls
-appcompatcache
-auditfail
-backuprestore
-compname
-crashcontrol
-ddm
-devclass
-disablelastaccess
-dllsearch
-eventlog
-eventlogs
-fw_config
-hibernate
-ide
-imagedev
-kbdcrash
-legacy
-mountdev
-network
-nic
-nic_mst2
-nic2
-nolmhash
-pagefile
-prefetch
-#This currently gets stuck in an infinite loop
-#productpolicy
-producttype
-rdpport
-routes
-safeboot
-services
-shares
-shutdown
-shutdowncount
-stillimage
-svc
-svc2
-svc_plus
-svcdll
-termserv
-timezone
-usb
-usbdevices
-usbstor
-usbstor2
-usbstor3
-xpedition
-wpdbusenum
+# 20120528 *ALL* Plugins that apply on SYSTEM hive, alphabetical order
+appcertdlls
+appcompatcache
+auditfail
+backuprestore
+compname
+crashcontrol
+ddm
+devclass
+disablelastaccess
+dllsearch
+eventlog
+eventlogs
+fw_config
+hibernate
+ide
+imagedev
+kbdcrash
+legacy
+mountdev
+network
+nic
+nic_mst2
+nic2
+nolmhash
+pagefile
+prefetch
+#This currently gets stuck in an infinite loop
+#productpolicy
+producttype
+rdpport
+routes
+safeboot
+services
+shares
+shutdown
+shutdowncount
+stillimage
+svc
+svc2
+svc_plus
+svcdll
+termserv
+timezone
+usb
+usbdevices
+usbstor
+usbstor2
+usbstor3
+xpedition
+wpdbusenum
diff --git a/RecentActivity/release/rr-full/plugins/systemindex.pl b/thirdparty/rr-full/plugins/systemindex.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/systemindex.pl
rename to thirdparty/rr-full/plugins/systemindex.pl
diff --git a/RecentActivity/release/rr-full/plugins/termcert.pl b/thirdparty/rr-full/plugins/termcert.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/termcert.pl
rename to thirdparty/rr-full/plugins/termcert.pl
diff --git a/RecentActivity/release/rr-full/plugins/termserv.pl b/thirdparty/rr-full/plugins/termserv.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/termserv.pl
rename to thirdparty/rr-full/plugins/termserv.pl
diff --git a/RecentActivity/release/rr-full/plugins/timezone.pl b/thirdparty/rr-full/plugins/timezone.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/timezone.pl
rename to thirdparty/rr-full/plugins/timezone.pl
diff --git a/RecentActivity/release/rr-full/plugins/tracing.pl b/thirdparty/rr-full/plugins/tracing.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/tracing.pl
rename to thirdparty/rr-full/plugins/tracing.pl
diff --git a/RecentActivity/release/rr-full/plugins/tracing_tln.pl b/thirdparty/rr-full/plugins/tracing_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/tracing_tln.pl
rename to thirdparty/rr-full/plugins/tracing_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/trappoll.pl b/thirdparty/rr-full/plugins/trappoll.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/trappoll.pl
rename to thirdparty/rr-full/plugins/trappoll.pl
diff --git a/RecentActivity/release/rr-full/plugins/trustrecords.pl b/thirdparty/rr-full/plugins/trustrecords.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/trustrecords.pl
rename to thirdparty/rr-full/plugins/trustrecords.pl
diff --git a/RecentActivity/release/rr-full/plugins/trustrecords_tln.pl b/thirdparty/rr-full/plugins/trustrecords_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/trustrecords_tln.pl
rename to thirdparty/rr-full/plugins/trustrecords_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/tsclient.pl b/thirdparty/rr-full/plugins/tsclient.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/tsclient.pl
rename to thirdparty/rr-full/plugins/tsclient.pl
diff --git a/RecentActivity/release/rr-full/plugins/tsclient_tln.pl b/thirdparty/rr-full/plugins/tsclient_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/tsclient_tln.pl
rename to thirdparty/rr-full/plugins/tsclient_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/typedpaths.pl b/thirdparty/rr-full/plugins/typedpaths.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/typedpaths.pl
rename to thirdparty/rr-full/plugins/typedpaths.pl
diff --git a/RecentActivity/release/rr-full/plugins/typedpaths_tln.pl b/thirdparty/rr-full/plugins/typedpaths_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/typedpaths_tln.pl
rename to thirdparty/rr-full/plugins/typedpaths_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/typedurls.pl b/thirdparty/rr-full/plugins/typedurls.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/typedurls.pl
rename to thirdparty/rr-full/plugins/typedurls.pl
diff --git a/RecentActivity/release/rr-full/plugins/typedurls_tln.pl b/thirdparty/rr-full/plugins/typedurls_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/typedurls_tln.pl
rename to thirdparty/rr-full/plugins/typedurls_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/typedurlstime.pl b/thirdparty/rr-full/plugins/typedurlstime.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/typedurlstime.pl
rename to thirdparty/rr-full/plugins/typedurlstime.pl
diff --git a/RecentActivity/release/rr-full/plugins/typedurlstime_tln.pl b/thirdparty/rr-full/plugins/typedurlstime_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/typedurlstime_tln.pl
rename to thirdparty/rr-full/plugins/typedurlstime_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/uac.pl b/thirdparty/rr-full/plugins/uac.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/uac.pl
rename to thirdparty/rr-full/plugins/uac.pl
diff --git a/RecentActivity/release/rr-full/plugins/uninstall.pl b/thirdparty/rr-full/plugins/uninstall.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/uninstall.pl
rename to thirdparty/rr-full/plugins/uninstall.pl
diff --git a/RecentActivity/release/rr-full/plugins/uninstall_tln.pl b/thirdparty/rr-full/plugins/uninstall_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/uninstall_tln.pl
rename to thirdparty/rr-full/plugins/uninstall_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/unreadmail.pl b/thirdparty/rr-full/plugins/unreadmail.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/unreadmail.pl
rename to thirdparty/rr-full/plugins/unreadmail.pl
diff --git a/RecentActivity/release/rr-full/plugins/urlzone.pl b/thirdparty/rr-full/plugins/urlzone.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/urlzone.pl
rename to thirdparty/rr-full/plugins/urlzone.pl
diff --git a/RecentActivity/release/rr-full/plugins/urun_tln.pl b/thirdparty/rr-full/plugins/urun_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/urun_tln.pl
rename to thirdparty/rr-full/plugins/urun_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/usb.pl b/thirdparty/rr-full/plugins/usb.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/usb.pl
rename to thirdparty/rr-full/plugins/usb.pl
diff --git a/RecentActivity/release/rr-full/plugins/usbdevices.pl b/thirdparty/rr-full/plugins/usbdevices.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/usbdevices.pl
rename to thirdparty/rr-full/plugins/usbdevices.pl
diff --git a/RecentActivity/release/rr-full/plugins/usbstor.pl b/thirdparty/rr-full/plugins/usbstor.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/usbstor.pl
rename to thirdparty/rr-full/plugins/usbstor.pl
diff --git a/RecentActivity/release/rr-full/plugins/usbstor2.pl b/thirdparty/rr-full/plugins/usbstor2.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/usbstor2.pl
rename to thirdparty/rr-full/plugins/usbstor2.pl
diff --git a/RecentActivity/release/rr-full/plugins/usbstor3.pl b/thirdparty/rr-full/plugins/usbstor3.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/usbstor3.pl
rename to thirdparty/rr-full/plugins/usbstor3.pl
diff --git a/RecentActivity/release/rr-full/plugins/user_run.pl b/thirdparty/rr-full/plugins/user_run.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/user_run.pl
rename to thirdparty/rr-full/plugins/user_run.pl
diff --git a/RecentActivity/release/rr-full/plugins/user_win.pl b/thirdparty/rr-full/plugins/user_win.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/user_win.pl
rename to thirdparty/rr-full/plugins/user_win.pl
diff --git a/RecentActivity/release/rr-full/plugins/userassist.pl b/thirdparty/rr-full/plugins/userassist.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/userassist.pl
rename to thirdparty/rr-full/plugins/userassist.pl
diff --git a/RecentActivity/release/rr-full/plugins/userassist_tln.pl b/thirdparty/rr-full/plugins/userassist_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/userassist_tln.pl
rename to thirdparty/rr-full/plugins/userassist_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/userinfo.pl b/thirdparty/rr-full/plugins/userinfo.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/userinfo.pl
rename to thirdparty/rr-full/plugins/userinfo.pl
diff --git a/RecentActivity/release/rr-full/plugins/userlocsvc.pl b/thirdparty/rr-full/plugins/userlocsvc.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/userlocsvc.pl
rename to thirdparty/rr-full/plugins/userlocsvc.pl
diff --git a/RecentActivity/release/rr-full/plugins/usrclass b/thirdparty/rr-full/plugins/usrclass
old mode 100755
new mode 100644
similarity index 97%
rename from RecentActivity/release/rr-full/plugins/usrclass
rename to thirdparty/rr-full/plugins/usrclass
index 5d6c153909695d7e28a03139788cd0cfe2b8df70..2f854cb1ee71249236ddcdd7ad053534aedaf56f
--- a/RecentActivity/release/rr-full/plugins/usrclass
+++ b/thirdparty/rr-full/plugins/usrclass
@@ -1,3 +1,3 @@
-# 20120918 *ALL* Plugins that apply on USRCLASS hive, alphabetical order
-muicache
+# 20120918 *ALL* Plugins that apply on USRCLASS hive, alphabetical order
+muicache
 shellbags
\ No newline at end of file
diff --git a/RecentActivity/release/rr-full/plugins/vawtrak.pl b/thirdparty/rr-full/plugins/vawtrak.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/vawtrak.pl
rename to thirdparty/rr-full/plugins/vawtrak.pl
diff --git a/RecentActivity/release/rr-full/plugins/virut.pl b/thirdparty/rr-full/plugins/virut.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/virut.pl
rename to thirdparty/rr-full/plugins/virut.pl
diff --git a/RecentActivity/release/rr-full/plugins/vista_bitbucket.pl b/thirdparty/rr-full/plugins/vista_bitbucket.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/vista_bitbucket.pl
rename to thirdparty/rr-full/plugins/vista_bitbucket.pl
diff --git a/RecentActivity/release/rr-full/plugins/vmplayer.pl b/thirdparty/rr-full/plugins/vmplayer.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/vmplayer.pl
rename to thirdparty/rr-full/plugins/vmplayer.pl
diff --git a/RecentActivity/release/rr-full/plugins/vmware_vsphere_client.pl b/thirdparty/rr-full/plugins/vmware_vsphere_client.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/vmware_vsphere_client.pl
rename to thirdparty/rr-full/plugins/vmware_vsphere_client.pl
diff --git a/RecentActivity/release/rr-full/plugins/vnchooksapplicationprefs.pl b/thirdparty/rr-full/plugins/vnchooksapplicationprefs.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/vnchooksapplicationprefs.pl
rename to thirdparty/rr-full/plugins/vnchooksapplicationprefs.pl
diff --git a/RecentActivity/release/rr-full/plugins/vncviewer.pl b/thirdparty/rr-full/plugins/vncviewer.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/vncviewer.pl
rename to thirdparty/rr-full/plugins/vncviewer.pl
diff --git a/RecentActivity/release/rr-full/plugins/volinfocache.pl b/thirdparty/rr-full/plugins/volinfocache.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/volinfocache.pl
rename to thirdparty/rr-full/plugins/volinfocache.pl
diff --git a/RecentActivity/release/rr-full/plugins/wallpaper.pl b/thirdparty/rr-full/plugins/wallpaper.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/wallpaper.pl
rename to thirdparty/rr-full/plugins/wallpaper.pl
diff --git a/RecentActivity/release/rr-full/plugins/warcraft3.pl b/thirdparty/rr-full/plugins/warcraft3.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/warcraft3.pl
rename to thirdparty/rr-full/plugins/warcraft3.pl
diff --git a/RecentActivity/release/rr-full/plugins/wbem.pl b/thirdparty/rr-full/plugins/wbem.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/wbem.pl
rename to thirdparty/rr-full/plugins/wbem.pl
diff --git a/RecentActivity/release/rr-full/plugins/win_cv.pl b/thirdparty/rr-full/plugins/win_cv.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/win_cv.pl
rename to thirdparty/rr-full/plugins/win_cv.pl
diff --git a/RecentActivity/release/rr-full/plugins/winbackup.pl b/thirdparty/rr-full/plugins/winbackup.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/winbackup.pl
rename to thirdparty/rr-full/plugins/winbackup.pl
diff --git a/RecentActivity/release/rr-full/plugins/winevt.pl b/thirdparty/rr-full/plugins/winevt.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/winevt.pl
rename to thirdparty/rr-full/plugins/winevt.pl
diff --git a/RecentActivity/release/rr-full/plugins/winlogon.pl b/thirdparty/rr-full/plugins/winlogon.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/winlogon.pl
rename to thirdparty/rr-full/plugins/winlogon.pl
diff --git a/RecentActivity/release/rr-full/plugins/winlogon_tln.pl b/thirdparty/rr-full/plugins/winlogon_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/winlogon_tln.pl
rename to thirdparty/rr-full/plugins/winlogon_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/winlogon_u.pl b/thirdparty/rr-full/plugins/winlogon_u.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/winlogon_u.pl
rename to thirdparty/rr-full/plugins/winlogon_u.pl
diff --git a/RecentActivity/release/rr-full/plugins/winnt_cv.pl b/thirdparty/rr-full/plugins/winnt_cv.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/winnt_cv.pl
rename to thirdparty/rr-full/plugins/winnt_cv.pl
diff --git a/RecentActivity/release/rr-full/plugins/winrar.pl b/thirdparty/rr-full/plugins/winrar.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/winrar.pl
rename to thirdparty/rr-full/plugins/winrar.pl
diff --git a/RecentActivity/release/rr-full/plugins/winrar_tln.pl b/thirdparty/rr-full/plugins/winrar_tln.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/winrar_tln.pl
rename to thirdparty/rr-full/plugins/winrar_tln.pl
diff --git a/RecentActivity/release/rr-full/plugins/winscp.pl b/thirdparty/rr-full/plugins/winscp.pl
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/winscp.pl
rename to thirdparty/rr-full/plugins/winscp.pl
diff --git a/RecentActivity/release/rr-full/plugins/winscp_sessions.pl b/thirdparty/rr-full/plugins/winscp_sessions.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/winscp_sessions.pl
rename to thirdparty/rr-full/plugins/winscp_sessions.pl
diff --git a/RecentActivity/release/rr-full/plugins/winver.pl b/thirdparty/rr-full/plugins/winver.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/winver.pl
rename to thirdparty/rr-full/plugins/winver.pl
diff --git a/RecentActivity/release/rr-full/plugins/winvnc.pl b/thirdparty/rr-full/plugins/winvnc.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/winvnc.pl
rename to thirdparty/rr-full/plugins/winvnc.pl
diff --git a/RecentActivity/release/rr-full/plugins/winzip.pl b/thirdparty/rr-full/plugins/winzip.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/winzip.pl
rename to thirdparty/rr-full/plugins/winzip.pl
diff --git a/RecentActivity/release/rr-full/plugins/wordwheelquery.pl b/thirdparty/rr-full/plugins/wordwheelquery.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/wordwheelquery.pl
rename to thirdparty/rr-full/plugins/wordwheelquery.pl
diff --git a/RecentActivity/release/rr-full/plugins/wpdbusenum.pl b/thirdparty/rr-full/plugins/wpdbusenum.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/wpdbusenum.pl
rename to thirdparty/rr-full/plugins/wpdbusenum.pl
diff --git a/RecentActivity/release/rr-full/plugins/xpedition.pl b/thirdparty/rr-full/plugins/xpedition.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/xpedition.pl
rename to thirdparty/rr-full/plugins/xpedition.pl
diff --git a/RecentActivity/release/rr-full/plugins/yahoo_cu.pl b/thirdparty/rr-full/plugins/yahoo_cu.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/yahoo_cu.pl
rename to thirdparty/rr-full/plugins/yahoo_cu.pl
diff --git a/RecentActivity/release/rr-full/plugins/yahoo_lm.pl b/thirdparty/rr-full/plugins/yahoo_lm.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/plugins/yahoo_lm.pl
rename to thirdparty/rr-full/plugins/yahoo_lm.pl
diff --git a/RecentActivity/release/rr-full/regripper.pdf b/thirdparty/rr-full/regripper.pdf
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/regripper.pdf
rename to thirdparty/rr-full/regripper.pdf
diff --git a/RecentActivity/release/rr-full/rip.exe b/thirdparty/rr-full/rip.exe
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/rip.exe
rename to thirdparty/rr-full/rip.exe
diff --git a/RecentActivity/release/rr-full/rip.pl b/thirdparty/rr-full/rip.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/rip.pl
rename to thirdparty/rr-full/rip.pl
diff --git a/RecentActivity/release/rr-full/rr.exe b/thirdparty/rr-full/rr.exe
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/rr.exe
rename to thirdparty/rr-full/rr.exe
diff --git a/RecentActivity/release/rr-full/rr.pl b/thirdparty/rr-full/rr.pl
old mode 100755
new mode 100644
similarity index 100%
rename from RecentActivity/release/rr-full/rr.pl
rename to thirdparty/rr-full/rr.pl
diff --git a/RecentActivity/release/rr/p2x5124.dll b/thirdparty/rr/p2x5124.dll
similarity index 100%
rename from RecentActivity/release/rr/p2x5124.dll
rename to thirdparty/rr/p2x5124.dll
diff --git a/RecentActivity/release/rr/plugins/arunmru.pl b/thirdparty/rr/plugins/arunmru.pl
similarity index 100%
rename from RecentActivity/release/rr/plugins/arunmru.pl
rename to thirdparty/rr/plugins/arunmru.pl
diff --git a/RecentActivity/release/rr/plugins/autopsycompname.pl b/thirdparty/rr/plugins/autopsycompname.pl
similarity index 100%
rename from RecentActivity/release/rr/plugins/autopsycompname.pl
rename to thirdparty/rr/plugins/autopsycompname.pl
diff --git a/RecentActivity/release/rr/plugins/autopsylogin.pl b/thirdparty/rr/plugins/autopsylogin.pl
similarity index 100%
rename from RecentActivity/release/rr/plugins/autopsylogin.pl
rename to thirdparty/rr/plugins/autopsylogin.pl
diff --git a/RecentActivity/release/rr/plugins/autopsyntuser b/thirdparty/rr/plugins/autopsyntuser
similarity index 100%
rename from RecentActivity/release/rr/plugins/autopsyntuser
rename to thirdparty/rr/plugins/autopsyntuser
diff --git a/RecentActivity/release/rr/plugins/autopsyntusernetwork.pl b/thirdparty/rr/plugins/autopsyntusernetwork.pl
similarity index 100%
rename from RecentActivity/release/rr/plugins/autopsyntusernetwork.pl
rename to thirdparty/rr/plugins/autopsyntusernetwork.pl
diff --git a/RecentActivity/release/rr/plugins/autopsyprocarchitecture.pl b/thirdparty/rr/plugins/autopsyprocarchitecture.pl
similarity index 100%
rename from RecentActivity/release/rr/plugins/autopsyprocarchitecture.pl
rename to thirdparty/rr/plugins/autopsyprocarchitecture.pl
diff --git a/RecentActivity/release/rr/plugins/autopsyprofilelist.pl b/thirdparty/rr/plugins/autopsyprofilelist.pl
similarity index 100%
rename from RecentActivity/release/rr/plugins/autopsyprofilelist.pl
rename to thirdparty/rr/plugins/autopsyprofilelist.pl
diff --git a/RecentActivity/release/rr/plugins/autopsyprofiler.pl b/thirdparty/rr/plugins/autopsyprofiler.pl
similarity index 100%
rename from RecentActivity/release/rr/plugins/autopsyprofiler.pl
rename to thirdparty/rr/plugins/autopsyprofiler.pl
diff --git a/RecentActivity/release/rr/plugins/autopsyrecentdocs.pl b/thirdparty/rr/plugins/autopsyrecentdocs.pl
similarity index 100%
rename from RecentActivity/release/rr/plugins/autopsyrecentdocs.pl
rename to thirdparty/rr/plugins/autopsyrecentdocs.pl
diff --git a/RecentActivity/release/rr/plugins/autopsyshellfolders.pl b/thirdparty/rr/plugins/autopsyshellfolders.pl
similarity index 100%
rename from RecentActivity/release/rr/plugins/autopsyshellfolders.pl
rename to thirdparty/rr/plugins/autopsyshellfolders.pl
diff --git a/RecentActivity/release/rr/plugins/autopsysoftware b/thirdparty/rr/plugins/autopsysoftware
similarity index 100%
rename from RecentActivity/release/rr/plugins/autopsysoftware
rename to thirdparty/rr/plugins/autopsysoftware
diff --git a/RecentActivity/release/rr/plugins/autopsysystem b/thirdparty/rr/plugins/autopsysystem
similarity index 100%
rename from RecentActivity/release/rr/plugins/autopsysystem
rename to thirdparty/rr/plugins/autopsysystem
diff --git a/RecentActivity/release/rr/plugins/autopsyuninstall.pl b/thirdparty/rr/plugins/autopsyuninstall.pl
similarity index 100%
rename from RecentActivity/release/rr/plugins/autopsyuninstall.pl
rename to thirdparty/rr/plugins/autopsyuninstall.pl
diff --git a/RecentActivity/release/rr/plugins/autopsyusb.pl b/thirdparty/rr/plugins/autopsyusb.pl
similarity index 100%
rename from RecentActivity/release/rr/plugins/autopsyusb.pl
rename to thirdparty/rr/plugins/autopsyusb.pl
diff --git a/RecentActivity/release/rr/plugins/autopsyusbdevices.pl b/thirdparty/rr/plugins/autopsyusbdevices.pl
similarity index 100%
rename from RecentActivity/release/rr/plugins/autopsyusbdevices.pl
rename to thirdparty/rr/plugins/autopsyusbdevices.pl
diff --git a/RecentActivity/release/rr/plugins/autopsywinver.pl b/thirdparty/rr/plugins/autopsywinver.pl
similarity index 100%
rename from RecentActivity/release/rr/plugins/autopsywinver.pl
rename to thirdparty/rr/plugins/autopsywinver.pl
diff --git a/RecentActivity/release/rr/plugins/officedocs.pl b/thirdparty/rr/plugins/officedocs.pl
similarity index 100%
rename from RecentActivity/release/rr/plugins/officedocs.pl
rename to thirdparty/rr/plugins/officedocs.pl
diff --git a/RecentActivity/release/rr/plugins/officedocs2010.pl b/thirdparty/rr/plugins/officedocs2010.pl
similarity index 100%
rename from RecentActivity/release/rr/plugins/officedocs2010.pl
rename to thirdparty/rr/plugins/officedocs2010.pl
diff --git a/RecentActivity/release/rr/rip.exe b/thirdparty/rr/rip.exe
similarity index 100%
rename from RecentActivity/release/rr/rip.exe
rename to thirdparty/rr/rip.exe
diff --git a/RecentActivity/release/rr/rip.pl b/thirdparty/rr/rip.pl
similarity index 100%
rename from RecentActivity/release/rr/rip.pl
rename to thirdparty/rr/rip.pl
diff --git a/RecentActivity/release/rr/rr.exe b/thirdparty/rr/rr.exe
similarity index 100%
rename from RecentActivity/release/rr/rr.exe
rename to thirdparty/rr/rr.exe
diff --git a/RecentActivity/release/rr/rr.pl b/thirdparty/rr/rr.pl
similarity index 100%
rename from RecentActivity/release/rr/rr.pl
rename to thirdparty/rr/rr.pl