diff --git a/scripts/wk/repairs/win.py b/scripts/wk/repairs/win.py
index 7de42bfd..f6dc6a66 100644
--- a/scripts/wk/repairs/win.py
+++ b/scripts/wk/repairs/win.py
@@ -33,12 +33,7 @@ from wk.io import (
non_clobber_path,
rename_item,
)
-from wk.kit.tools import (
- download_tool,
- extract_tool,
- get_tool_path,
- run_tool,
- )
+from wk.kit.tools import (download_tool, get_tool_path, run_tool)
from wk.log import format_log_path, update_log_path
from wk.os.win import (
ARCH,
@@ -973,7 +968,6 @@ def delete_registry_null_keys():
def fix_file_associations():
"""Fix file associations via registry edits."""
- extract_tool('WinAIORepair')
winaio_path = get_tool_path('WinAIORepair', 'Repair_Windows').parent
winaio_path = winaio_path.joinpath(
f'Files/regfiles/file_associations/{OS_VERSION}',
diff --git a/scripts/wk/setup/win.py b/scripts/wk/setup/win.py
index 0d54d489..cf45a34f 100644
--- a/scripts/wk/setup/win.py
+++ b/scripts/wk/setup/win.py
@@ -974,7 +974,7 @@ def open_hwinfo_sensors():
def open_snappy_driver_installer_origin():
"""Open Snappy Driver Installer Origin."""
- run_tool('_Drivers/SDIO', 'SDIO', cwd=True, pipe=True, popen=True)
+ run_tool('SDIO', 'SDIO', cwd=True, pipe=True, popen=True)
def open_windows_activation():
diff --git a/setup/windows/bin/ESETConfigs/eset-config-msp.xml b/setup/windows/bin/ESET/eset-config-msp.xml
similarity index 100%
rename from setup/windows/bin/ESETConfigs/eset-config-msp.xml
rename to setup/windows/bin/ESET/eset-config-msp.xml
diff --git a/setup/windows/bin/ESETConfigs/eset-config.xml b/setup/windows/bin/ESET/eset-config.xml
similarity index 100%
rename from setup/windows/bin/ESETConfigs/eset-config.xml
rename to setup/windows/bin/ESET/eset-config.xml
diff --git a/setup/windows/bin/d7ii/3rd Party Tools/CreateRestorePoint.cmd b/setup/windows/bin/d7ii/3rd Party Tools/CreateRestorePoint.cmd
deleted file mode 100644
index e89f24b3..00000000
--- a/setup/windows/bin/d7ii/3rd Party Tools/CreateRestorePoint.cmd
+++ /dev/null
@@ -1,11 +0,0 @@
-@echo off
-
-setlocal
-
-rem Enable System Restore
-PowerShell -Command Enable-ComputerRestore -Drive %SYSTEMDRIVE%\
-
-rem Create Restore Point
-PowerShell -Command Checkpoint-Computer -Description 1201-d7II
-
-endlocal
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/3rd Party Tools/MBAM_Install.cmd b/setup/windows/bin/d7ii/3rd Party Tools/MBAM_Install.cmd
deleted file mode 100644
index ef7edc09..00000000
--- a/setup/windows/bin/d7ii/3rd Party Tools/MBAM_Install.cmd
+++ /dev/null
@@ -1,27 +0,0 @@
-@echo off
-
-setlocal
-pushd "%~dp0"
-
-rem Remove stale marker if present
-if exist "%SYSTEMDRIVE%\1201\Preserve-MBAM.marker" (
- del /f "%SYSTEMDRIVE%\1201\Preserve-MBAM.marker"
-)
-
-rem Set marker to prevent unintended MBAM removal
-if exist "%PROGRAMFILES%\Malwarebytes\Anti-Malware\mbam.exe" (
- echo Previous Malwarebytes installation detected.
- echo. > "%SYSTEMDRIVE%\1201\Preserve-MBAM.marker"
-)
-if exist "%PROGRAMFILES(X86)%\Malwarebytes Anti-Malware\mbam.exe" (
- rem MBAM v2 installation
- echo Previous Malwarebytes [v2] installation detected.
- echo. > "%SYSTEMDRIVE%\1201\Preserve-MBAM.marker"
-)
-
-rem Install/Upgrade MBAM
-echo Installing Malwarebytes...
-start "" /wait mbam-setup.exe /VERYSILENT /NORESTART
-
-popd
-endlocal
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/3rd Party Tools/MBAM_Uninstall.cmd b/setup/windows/bin/d7ii/3rd Party Tools/MBAM_Uninstall.cmd
deleted file mode 100644
index b1d0387d..00000000
--- a/setup/windows/bin/d7ii/3rd Party Tools/MBAM_Uninstall.cmd
+++ /dev/null
@@ -1,71 +0,0 @@
-@echo off
-
-setlocal
-pushd "%~dp0"
-
-:GetDate
-:: Credit to SS64.com Code taken from http://ss64.com/nt/syntax-getdate.html
-:: Use WMIC to retrieve date and time in ISO 8601 format.
-for /f "skip=1 tokens=1-6" %%G in ('WMIC Path Win32_LocalTime Get Day^,Hour^,Minute^,Month^,Second^,Year /Format:table') do (
- if "%%~L"=="" goto s_done
- set _yyyy=%%L
- set _mm=00%%J
- set _dd=00%%G
- set _hour=00%%H
- set _minute=00%%I
-)
-:s_done
-:: Pad digits with leading zeros
-set _mm=%_mm:~-2%
-set _dd=%_dd:~-2%
-set _hour=%_hour:~-2%
-set _minute=%_minute:~-2%
-set iso_date=%_yyyy%-%_mm%-%_dd%
-
-rem Get uninstaller path from registry
-set "uninstaller="
-set "altuninstaller=%PROGRAMFILES%\Malwarebytes\Anti-Malware\mbuns.exe"
-for /f usebackq^ tokens^=2^ delims^=^" %%s in (
- `reg query "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{35065F43-4BB2-439A-BFF7-0F1014F2E0CD}_is1" /v UninstallString`
-) do (
- set "uninstaller=%%s"
-)
-
-rem Copy logs to 1201 folder
-echo "Copying logs..."
-robocopy /e "%PROGRAMDATA%\Malwarebytes\MBAMService\LOGS" "%SYSTEMDRIVE%\1201\Logs\%iso_date%\Tools\MBAM" >nul
-robocopy /e "%PROGRAMDATA%\Malwarebytes\MBAMService\ScanResults" "%SYSTEMDRIVE%\1201\Logs\%iso_date%\Tools\MBAM" >nul
-
-if exist "%SYSTEMDRIVE%\1201\Preserve-MBAM.marker" (
- rem Keep MBAM
- echo Previous Malwarebytes installation detected.
-) else (
- rem Move Quarantine to 1201 folder
- move "%PROGRAMDATA%\Malwarebytes\Malwarebytes Anti-Malware\Quarantine" "%SYSTEMDRIVE%\1201\Quarantine\MBAM_%iso_date%_%_hour%%_minute%"
-
- rem Remove MBAM
- echo No previous Malwarebytes installation detected.
- if exist "%uninstaller%" (
- echo "Uninstalling Malwarebytes..."
- start "" /wait "%uninstaller%" /VERYSILENT /NORESTART /LOG
- goto Done
- )
- if exist "%altuninstaller%" (
- rem MBAM 4.x workaround
- echo "Uninstalling Malwarebytes..."
- start "" /wait "%altuninstaller%" /Uninstall /VERYSILENT /NORESTART /LOG
- goto Done
- )
- color 4e
- echo "Malwarebytes installation not found."
- echo ""
- echo "Press any key to exit... "
- pause >nul
-)
-
-:Done
-rem Remove marker
-del /f "%SYSTEMDRIVE%\1201\Preserve-MBAM.marker" 2>nul
-
-popd
-endlocal
diff --git a/setup/windows/bin/d7ii/3rd Party Tools/Python_Check.cmd b/setup/windows/bin/d7ii/3rd Party Tools/Python_Check.cmd
deleted file mode 100644
index aa4e7394..00000000
--- a/setup/windows/bin/d7ii/3rd Party Tools/Python_Check.cmd
+++ /dev/null
@@ -1,30 +0,0 @@
-:: Python compatibility check
-@echo off
-
-setlocal
-pushd "%~dp0\..\.."
-set "bin=%cd%"
-set "python=%bin%\Python\x32\python.exe"
-
-rem Verify Python can run
-"%python%" --version >nul || goto ErrorPythonUnsupported
-goto Done
-
-:ErrorPythonUnsupported
-rem The Windows installation lacks Windows update KB2999226 needed to run Python
-echo.
-echo ERROR: Failed to run Python, try installing Windows update KB2999226.
-echo NOTE: That update is from October 2015 so this system is SEVERELY outdated
-echo.
-echo Please stop Auto Mode, exit this script, install the update, and try again.
-echo.
-echo Press Enter to exit...
-pause>nul
-if exist "%bin%\..\Installers\Extras\Windows Updates" (
- start "" "explorer.exe"
- start "" "explorer.exe" "%bin%\..\Installers\Extras\Windows Updates"
-)
-
-:Done
-popd
-endlocal
diff --git a/setup/windows/bin/d7ii/3rd Party Tools/WizardKit Launcher.cmd b/setup/windows/bin/d7ii/3rd Party Tools/WizardKit Launcher.cmd
deleted file mode 100644
index 0102cd6b..00000000
--- a/setup/windows/bin/d7ii/3rd Party Tools/WizardKit Launcher.cmd
+++ /dev/null
@@ -1,14 +0,0 @@
-:: Launch WizardKit item
-@echo off
-
-setlocal
-pushd "%~dp0\..\..\.."
-
-rem Run WizardKit Launcher
-call "%*"
-
-rem Sleep for 5 sec so d7II can wait for launched proc
-"%systemroot%\System32\ping.exe" -n 5 127.0.0.1>nul
-
-popd
-endlocal
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/1201Logo.bmp b/setup/windows/bin/d7ii/Config/1201Logo.bmp
deleted file mode 100644
index 99c948f7..00000000
Binary files a/setup/windows/bin/d7ii/Config/1201Logo.bmp and /dev/null differ
diff --git a/setup/windows/bin/d7ii/Config/AltText.ini b/setup/windows/bin/d7ii/Config/AltText.ini
deleted file mode 100644
index c46df099..00000000
--- a/setup/windows/bin/d7ii/Config/AltText.ini
+++ /dev/null
@@ -1,39 +0,0 @@
-[ShortDesc]
-Autoruns=Manages Startup Items
-Autoruns_Copy=Manages Startup Items
-Autoruns (Verify and Log)=Manages Startup Items
-Google Chrome Software Removal Tool=Remove add-ons, extensions, toolbars, and other software that may interfere with the operation of Google Chrome.
-VipreRescueScanner (Deep Scan)=Virus scanner (Designed for both the Malware Removal and the Offline Operations tab)
-VipreRescueScanner (Quick Scan)=Virus scanner (Designed for both the Malware Removal and the Offline Operations tab)
-=Create Restore Point
-[ReportDesc]
-Autoruns=Examined Windows startup items and removed unnecessary entries.
-Autoruns_Copy=Examined Windows startup items and removed unnecessary entries.
-Autoruns (Verify and Log)=Examined Windows startup items and removed unnecessary entries.
-Google Chrome Software Removal Tool=Scanned for and removed any toolbars/extensions/add-ons that may interfere with the operation of Google Chrome.
-VipreRescueScanner (Deep Scan)=Ran virus scans (Vipre)
-VipreRescueScanner (Quick Scan)=Ran virus scans (Vipre)
-28=Created a System Restore point.
-32=Ran a Zero Access malware scan.
-2=Uninstalled unnecessary applications
-41=Re-wrote the default Safe Mode services to prevent potential issues with blue screens when entering Safe Mode.
-33=Backed up all Registry Hives.
-1=Uninstalled unnecessary applications
-9=Repaired file associations for executable files.
-10=Removed restrictive Windows policy settings.
-11=Cleared proxy settings.
-18=Scanned for known malware files and registry entries and removed anything found.
-12=Deleted unnecessary temporary files from user profiles and temporary files used by Windows.
-13=Deleted temporary internet cache from user profiles.
-34=Scanned for viruses/malware with Microsoft Security Essentials / Windows Defender.
-49=Scanned for Windows system component corruption to repair any issues found.
-24=Repaired the built-in Windows firewall.
-31=Set all network adapters to DHCP.
-75=Apply static DNS settings to all NICs.
-21=Ran repair and reset procedures on networking components.
-25=Reset all settings to defaults for the built-in Windows firewall.
-36=Manually examined the HOSTS file for hijacks or other issues.
-22=Repaired the Windows Update services responsible for Windows Update functionality.
-38=Performed repair routines to ensure the Winsock is operating properly.
-83=Examined internet speed/bandwidth.
-=Create Restore Point
diff --git a/setup/windows/bin/d7ii/Config/AppOverrides.ini b/setup/windows/bin/d7ii/Config/AppOverrides.ini
deleted file mode 100644
index 0e07e944..00000000
--- a/setup/windows/bin/d7ii/Config/AppOverrides.ini
+++ /dev/null
@@ -1,42 +0,0 @@
-[Autoruns]
-PostRunApp=
-AlwaysAttemptDownload=1
-DLafterXdays=7
-EmailBeforeExecution=0
-PriorAlert=1
-[Autoruns_Copy]
-PostRunApp=
-AlwaysAttemptDownload=1
-DLafterXdays=7
-EmailBeforeExecution=0
-PriorAlert=1
-[Autoruns (Verify and Log)]
-PostRunApp=
-AlwaysAttemptDownload=1
-DLafterXdays=7
-EmailBeforeExecution=0
-PriorAlert=0
-[Google Chrome Software Removal Tool]
-PostRunApp=
-AlwaysAttemptDownload=1
-DLafterXdays=0
-EmailBeforeExecution=0
-PriorAlert=1
-[VipreRescueScanner (Deep Scan)]
-PostRunApp=
-AlwaysAttemptDownload=1
-DLafterXdays=1
-EmailBeforeExecution=0
-PriorAlert=0
-[VipreRescueScanner (Quick Scan)]
-PostRunApp=
-AlwaysAttemptDownload=1
-DLafterXdays=1
-EmailBeforeExecution=0
-PriorAlert=0
-[]
-PostRunApp=
-AlwaysAttemptDownload=0
-DLafterXdays=5
-EmailBeforeExecution=0
-PriorAlert=0
diff --git a/setup/windows/bin/d7ii/Config/CustomApps/AdwCleaner (Updated).cfg b/setup/windows/bin/d7ii/Config/CustomApps/AdwCleaner (Updated).cfg
deleted file mode 100644
index c4fcef59..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps/AdwCleaner (Updated).cfg
+++ /dev/null
@@ -1,37 +0,0 @@
-[Config]
-LastEditDate=10/8/2018 10:56:15 PM
-PostRunApp=
-AppWebsite=https://www.malwarebytes.com/adwcleaner/
-AppDLPage=https://downloads.malwarebytes.com/file/adwcleaner
-AppDesc=Toolbar Remover
-App=AdwCleaner.exe
-UseFTPServer=0
-AppURL=https://downloads.malwarebytes.com/file/adwcleaner
-AppDLName=AdwCleaner.exe
-AlwaysAttemptDownload=1
-DLafterXdays=.5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=1
-ServiceWait=1
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsLoc=%systemdrive%\AdwCleaner\AdwCleaner*.txt
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Removed unnecessary internet browser add-ins (e.g. Toolbars) [AdwCleaner]
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=8/14/2018
diff --git a/setup/windows/bin/d7ii/Config/CustomApps/Disable Windows Updates.cfg b/setup/windows/bin/d7ii/Config/CustomApps/Disable Windows Updates.cfg
deleted file mode 100644
index 6d110bb5..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps/Disable Windows Updates.cfg
+++ /dev/null
@@ -1,34 +0,0 @@
-[Config]
-LastEditDate=5/6/2019 6:09:55 PM
-PostRunApp=
-AppParms=.bin\Scripts\launchers_for_d7\Disable Windows Updates.cmd
-UseFTPServer=0
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-App=WizardKit Launcher.cmd
-AutoFlag=0
-WaitOnProcesses=ConEmu.exe;ConEmuC.exe;ConEmu64.exe;ConEmuC64.exe;python.exe
-AppDesc=Disable Windows Updates
-LogVerbiage=Disable Windows Update services and delete update folders
-AppWaitTime=30
diff --git a/setup/windows/bin/d7ii/Config/CustomApps/Enable Windows Updates.cfg b/setup/windows/bin/d7ii/Config/CustomApps/Enable Windows Updates.cfg
deleted file mode 100644
index bedccff7..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps/Enable Windows Updates.cfg
+++ /dev/null
@@ -1,34 +0,0 @@
-[Config]
-LastEditDate=8/30/2018 10:49:46 AM
-PostRunApp=
-AppParms=.bin\Scripts\launchers_for_d7\Enable Windows Updates.cmd
-UseFTPServer=0
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=1
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-App=WizardKit Launcher.cmd
-AutoFlag=0
-WaitOnProcesses=ConEmu.exe;ConEmuC.exe;ConEmu64.exe;ConEmuC64.exe;python.exe
-AppDesc=Enable Windows Updates
-LogVerbiage=Enable Windows Update services
-AppWaitTime=30
diff --git a/setup/windows/bin/d7ii/Config/CustomApps/HitmanPro (Auto).cfg b/setup/windows/bin/d7ii/Config/CustomApps/HitmanPro (Auto).cfg
deleted file mode 100644
index b2ec938d..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps/HitmanPro (Auto).cfg
+++ /dev/null
@@ -1,45 +0,0 @@
-[Config]
-Author=2Shirt
-LastEditDate=10/8/2018 10:56:18 PM
-PostRunApp=
-AppWebsite=http://www.surfright.nl/en/hitmanpro/
-AppDLPage=http://www.surfright.nl/en/downloads/
-AppDesc=Malware scanner
-App=HitmanPro.exe
-App64=HitmanPro_x64.exe
-AppParms=/clean /noinstall /excludelist="%3rdpath%\HMP_Excludes.txt" /logtype=txt /log="%malreportdir%\HitmanPro_Scan_Log_%date%.txt"
-AppURL64=https://dl.surfright.nl/HitmanPro_x64.exe
-AppURL64B=http://dl.surfright.nl/FoolishIT/HitmanPro_x64.exe
-AppDLName64=HitmanPro_x64.exe
-UseFTPServer=0
-AppURL=https://dl.surfright.nl/HitmanPro.exe
-AppURLB=http://dl.surfright.nl/FoolishIT/HitmanPro.exe
-AppDLName=HitmanPro.exe
-AlwaysAttemptDownload=1
-DLafterXdays=.5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=1
-AppWaitTime=60
-AppRandomize=1
-CopyConfigFirst=HMP.cmd
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Ran Malware Scans (HitmanPro)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=1
-LastDownload=8/19/2018
diff --git a/setup/windows/bin/d7ii/Config/CustomApps/IObit Uninstaller.cfg b/setup/windows/bin/d7ii/Config/CustomApps/IObit Uninstaller.cfg
deleted file mode 100644
index 17e363c9..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps/IObit Uninstaller.cfg
+++ /dev/null
@@ -1,34 +0,0 @@
-[Config]
-LastEditDate=8/25/2018 3:50:11 PM
-PostRunApp=
-App=WizardKit Launcher.cmd
-UseFTPServer=0
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=1
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-LogVerbiage=Uninstalled unnecessary / junk programs.
-AppDesc=Application uninstaller and cleanup utility
-AppParms=Uninstallers\IObit Uninstaller.cmd
-WaitOnProcesses=IObitUninstallerPortable.exe
-AppWaitTime=30
diff --git a/setup/windows/bin/d7ii/Config/CustomApps/Install SW Bundle.cfg b/setup/windows/bin/d7ii/Config/CustomApps/Install SW Bundle.cfg
deleted file mode 100644
index 70adf438..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps/Install SW Bundle.cfg
+++ /dev/null
@@ -1,34 +0,0 @@
-[Config]
-LastEditDate=8/30/2018 10:49:46 AM
-PostRunApp=
-AppParms=.bin\Scripts\launchers_for_d7\Install SW Bundle.cmd
-UseFTPServer=0
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=1
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-App=WizardKit Launcher.cmd
-AutoFlag=0
-WaitOnProcesses=ConEmu.exe;ConEmuC.exe;ConEmu64.exe;ConEmuC64.exe;python.exe;Ninite.exe
-AppDesc=Install software bundle
-LogVerbiage=Installed or updated commonly used applications (Adobe Reader, Google Chrome, etc)
-AppWaitTime=30
diff --git a/setup/windows/bin/d7ii/Config/CustomApps/Malwarebytes Download.cfg b/setup/windows/bin/d7ii/Config/CustomApps/Malwarebytes Download.cfg
deleted file mode 100644
index c321701a..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps/Malwarebytes Download.cfg
+++ /dev/null
@@ -1,35 +0,0 @@
-[Config]
-LastEditDate=10/8/2018 10:55:27 PM
-PostRunApp=
-AppWebsite=https://www.malwarebytes.com/
-AppDLPage=https://downloads.malwarebytes.com/file/mb3/
-AppDesc=Download MBAM setup
-UseFTPServer=0
-AppURL=https://downloads.malwarebytes.com/file/mb3/
-AppDLName=mbam-setup.exe
-AlwaysAttemptDownload=1
-DLafterXdays=3
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=1
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=1
-App=exit
-LastDownload=10/7/2018
diff --git a/setup/windows/bin/d7ii/Config/CustomApps/Malwarebytes Install.cfg b/setup/windows/bin/d7ii/Config/CustomApps/Malwarebytes Install.cfg
deleted file mode 100644
index 5aea34ab..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps/Malwarebytes Install.cfg
+++ /dev/null
@@ -1,34 +0,0 @@
-[Config]
-LastEditDate=10/7/2018 3:51:22 PM
-PostRunApp=
-App=MBAM_Install.cmd
-UseFTPServer=0
-AlwaysAttemptDownload=0
-DLafterXdays=0
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=1
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=1
-AppDesc=Install/Upgrade MBAM
-LogVerbiage=Malwarebytes installed successfully.
-LastDownload=8/18/2018
-Author=2Shirt
-AppWaitTime=5
diff --git a/setup/windows/bin/d7ii/Config/CustomApps/Malwarebytes Scan.cfg b/setup/windows/bin/d7ii/Config/CustomApps/Malwarebytes Scan.cfg
deleted file mode 100644
index 21d0df01..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps/Malwarebytes Scan.cfg
+++ /dev/null
@@ -1,34 +0,0 @@
-[Config]
-LastEditDate=8/13/2018 4:48:53 PM
-PostRunApp=
-AppWebsite=https://www.malwarebytes.com/
-AppDLPage=https://downloads.malwarebytes.com/file/mb3/
-AppDesc=Malwarebytes Execution
-App=%programfiles%\Malwarebytes\Anti-Malware\mbam.exe
-App64=%programfiles%\Malwarebytes\Anti-Malware\mbam.exe
-UseFTPServer=0
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=1
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Malwarebytes ran successfully.
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
diff --git a/setup/windows/bin/d7ii/Config/CustomApps/Malwarebytes Uninstall.cfg b/setup/windows/bin/d7ii/Config/CustomApps/Malwarebytes Uninstall.cfg
deleted file mode 100644
index 272c9a6d..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps/Malwarebytes Uninstall.cfg
+++ /dev/null
@@ -1,30 +0,0 @@
-[Config]
-LastEditDate=8/13/2018 7:32:30 PM
-PostRunApp=
-App=MBAM_Uninstall.cmd
-UseFTPServer=0
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=1
-AppDesc=Uninstall MBAM (if not previously installed)
diff --git a/setup/windows/bin/d7ii/Config/CustomApps/Python Check.cfg b/setup/windows/bin/d7ii/Config/CustomApps/Python Check.cfg
deleted file mode 100644
index 5b12c7a5..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps/Python Check.cfg
+++ /dev/null
@@ -1,32 +0,0 @@
-[Config]
-LastEditDate=5/6/2019 6:48:27 PM
-PostRunApp=
-AppDesc=Python Check
-App=Python_Check.cmd
-UseFTPServer=0
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=0
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppWaitTime=30
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Python compatibility check
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
diff --git a/setup/windows/bin/d7ii/Config/CustomApps/RKill (Auto).cfg b/setup/windows/bin/d7ii/Config/CustomApps/RKill (Auto).cfg
deleted file mode 100644
index 3cbf5939..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps/RKill (Auto).cfg
+++ /dev/null
@@ -1,40 +0,0 @@
-[Config]
-Author=2Shirt
-LastEditDate=10/8/2018 10:56:23 PM
-PostRunApp=
-AppWebsite=http://www.bleepingcomputer.com/forums/t/308364/rkill-what-it-does-and-what-it-doesnt-a-brief-introduction-to-the-program/
-AppDLPage=http://www.bleepingcomputer.com/download/rkill/
-AppDesc=Anti-Malware app.
-App=rkill.exe
-AppParms=-s -w "%3rdpath%\rkill_Excludes.txt"
-UseFTPServer=0
-AppURL=https://download.bleepingcomputer.com/grinler/rkill.exe
-AppDLName=rkill.exe
-AlwaysAttemptDownload=1
-DLafterXdays=.5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=1
-CopyConfigFirst=rkill.cmd
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsLoc=%userprofile%\Desktop\rkill*.txt
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Ran Malware Scan (RKill)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=1
-LastDownload=10/7/2018
diff --git a/setup/windows/bin/d7ii/Config/CustomApps/WizardKit Browser Reset.cfg b/setup/windows/bin/d7ii/Config/CustomApps/WizardKit Browser Reset.cfg
deleted file mode 100644
index 867e8314..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps/WizardKit Browser Reset.cfg
+++ /dev/null
@@ -1,35 +0,0 @@
-[Config]
-Author=2Shirt
-LastEditDate=8/25/2018 3:50:41 PM
-PostRunApp=
-AppDesc=WizardKit browser reset script (d7II mode)
-App=WizardKit Launcher.cmd
-AppParms=.bin\Scripts\launchers_for_d7\Browser Reset.cmd
-UseFTPServer=0
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-WaitOnProcesses=ConEmu.exe;ConEmuC.exe;ConEmu64.exe;ConEmuC64.exe;python.exe
-EmailBeforeExecution=0
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=1
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Reset web browsers to safe defaults and removed any malicous addons found.
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-AppWaitTime=10
diff --git a/setup/windows/bin/d7ii/Config/CustomApps/WizardKit System Checklist.cfg b/setup/windows/bin/d7ii/Config/CustomApps/WizardKit System Checklist.cfg
deleted file mode 100644
index 8071c345..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps/WizardKit System Checklist.cfg
+++ /dev/null
@@ -1,35 +0,0 @@
-[Config]
-Author=2Shirt
-LastEditDate=8/25/2018 3:50:50 PM
-PostRunApp=
-AppDesc=WizardKit system checklist script (d7II mode)
-App=WizardKit Launcher.cmd
-AppParms=.bin\Scripts\launchers_for_d7\System Checklist.cmd
-UseFTPServer=0
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-WaitOnProcesses=ConEmu.exe;ConEmuC.exe;ConEmu64.exe;ConEmuC64.exe;python.exe
-EmailBeforeExecution=0
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=1
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-LogVerbiage=Examined and verified system-wide settings (available updates, drivers, activation, etc)
-AppWaitTime=30
diff --git a/setup/windows/bin/d7ii/Config/CustomApps/WizardKit System Diagnostics.cfg b/setup/windows/bin/d7ii/Config/CustomApps/WizardKit System Diagnostics.cfg
deleted file mode 100644
index a484f115..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps/WizardKit System Diagnostics.cfg
+++ /dev/null
@@ -1,35 +0,0 @@
-[Config]
-Author=2Shirt
-LastEditDate=8/25/2018 3:49:49 PM
-PostRunApp=
-AppDesc=WizardKit system diagnostics script (d7II mode)
-App=WizardKit Launcher.cmd
-AppParms=.bin\Scripts\launchers_for_d7\System Diagnostics.cmd
-UseFTPServer=0
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-WaitOnProcesses=ConEmu.exe;ConEmuC.exe;ConEmu64.exe;ConEmuC64.exe;python.exe
-EmailBeforeExecution=0
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=1
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-LogVerbiage=Ran OS built-in repairs and backed up system information
-AppWaitTime=30
diff --git a/setup/windows/bin/d7ii/Config/CustomApps/WizardKit User Checklist.cfg b/setup/windows/bin/d7ii/Config/CustomApps/WizardKit User Checklist.cfg
deleted file mode 100644
index 7fc15c29..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps/WizardKit User Checklist.cfg
+++ /dev/null
@@ -1,35 +0,0 @@
-[Config]
-Author=2Shirt
-LastEditDate=8/25/2018 3:50:59 PM
-PostRunApp=
-AppDesc=WizardKit user checklist script (d7II mode)
-App=WizardKit Launcher.cmd
-AppParms=.bin\Scripts\launchers_for_d7\User Checklist.cmd
-UseFTPServer=0
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-WaitOnProcesses=ConEmu.exe;ConEmuC.exe;ConEmu64.exe;ConEmuC64.exe;python.exe;firefox.exe;chrome.exe
-EmailBeforeExecution=0
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=1
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Verified web browser settings and functionality
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-AppWaitTime=30
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/Everything.ini b/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/Everything.ini
deleted file mode 100644
index f787a162..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/Everything.ini
+++ /dev/null
@@ -1,485 +0,0 @@
-[Everything]
-app_data=0
-run_as_admin=1
-window_x=1614
-window_y=186
-window_wide=794
-window_high=664
-maximized=0
-minimized=0
-fullscreen=0
-ontop=0
-match_whole_word=0
-match_path=0
-match_case=0
-match_diacritics=0
-match_regex=0
-selection_mask_right_bottom_inclusive=1
-allow_multiple_windows=0
-allow_multiple_instances=0
-run_in_background=1
-show_tray_icon=1
-alternate_row_color=0
-show_mouseover=0
-check_for_updates_on_startup=0
-beta_updates=0
-show_highlighted_search_terms=1
-text_size=0
-hide_empty_search_results=0
-clear_selection_on_search=1
-new_window_key=0
-show_window_key=0
-toggle_window_key=0
-language=0
-show_selected_item_in_statusbar=0
-open_folder_command2=
-open_file_command2=
-open_path_command2=
-explore_command2=
-explore_path_command2=
-window_title_format=
-taskbar_notification_title_format=
-instance_name=
-translucent_selection_rectangle_alpha=70
-min_zoom=-6
-max_zoom=27
-context_menu_type=0
-auto_include_fixed_volumes=1
-auto_include_removable_volumes=0
-last_export_type=0
-max_threads=0
-reuse_threads=1
-single_parent_context_menu=0
-auto_size_1=512
-auto_size_2=640
-auto_size_3=768
-auto_size_aspect_ratio_x=9
-auto_size_aspect_ratio_y=7
-auto_size_path_x=1
-auto_size_path_y=2
-sticky_vscroll_bottom=1
-last_options_page=9
-draw_focus_rect=1
-date_format=
-time_format=
-invert_layout=0
-listview_item_high=0
-debug=0
-home_match_case=0
-home_match_whole_word=0
-home_match_path=0
-home_match_diacritics=0
-home_regex=0
-home_search=1
-home_filter=0
-home_sort=0
-home_index=1
-allow_multiple_windows_from_tray=0
-single_click_tray=0
-close_on_execute=0
-double_click_path=0
-update_display_after_scroll=0
-update_display_after_mask=1
-auto_scroll_view=0
-double_quote_copy_as_path=0
-snap=0
-snaplen=10
-rename_select_filepart_only=0
-rename_move_caret_to_selection_end=0
-search_edit_move_caret_to_selection_end=0
-select_search_on_mouse_click=1
-focus_search_on_activate=0
-reset_vscroll_on_search=1
-wrap_focus=0
-load_icon_priority=0
-load_fileinfo_priority=0
-header_high=0
-hide_on_close=0
-winmm=0
-menu_escape_amp=1
-fast_ascii_search=1
-match_path_when_search_contains_path_separator=1
-allow_literal_operators=0
-allow_round_bracket_parenthesis=0
-expand_environment_variables=0
-search_as_you_type=1
-convert_forward_slash_to_backslash=0
-match_whole_filename_when_using_wildcards=1
-double_buffer=1
-search=
-show_number_of_results_with_selection=0
-date_descending_first=0
-size_descending_first=0
-size_format=2
-alpha_select=0
-tooltips=1
-rtl_listview_edit=0
-bookmark_remember_case=1
-bookmark_remember_wholeword=1
-bookmark_remember_path=1
-bookmark_remember_diacritic=1
-bookmark_remember_regex=1
-bookmark_remember_sort=1
-bookmark_remember_filter=1
-bookmark_remember_index=1
-exclude_list_enabled=1
-exclude_hidden_files_and_folders=0
-exclude_system_files_and_folders=0
-include_only_files=
-exclude_files=
-db_location=
-db_multi_user_filename=0
-db_compress=0
-extended_information_cache_monitor=1
-keep_missing_indexes=0
-editor_x=0
-editor_y=0
-editor_wide=0
-editor_high=0
-editor_maximized=0
-file_list_relative_paths=1
-max_recv_size=8388608
-display_full_path_name=0
-size_tiny=10240
-size_small=102400
-size_medium=1048576
-size_large=16777216
-size_huge=134217728
-themed_toolbar=1
-show_copy_path=2
-show_copy_full_name=2
-show_open_path=2
-show_explore=2
-show_explore_path=2
-copy_path_folder_append_backslash=0
-custom_verb01=
-custom_verb02=
-custom_verb03=
-custom_verb04=
-custom_verb05=
-custom_verb06=
-custom_verb07=
-custom_verb08=
-custom_verb09=
-custom_verb10=
-custom_verb11=
-custom_verb12=
-filters_visible=0
-filters_wide=128
-filters_right_align=1
-filters_tab_stop=0
-filter=
-filter_everything_name=
-sort=Name
-sort_ascending=1
-always_keep_sort=0
-index=0
-index_file_list=
-index_etp_server=
-index_link_type=1
-status_bar_visible=1
-select_search_on_focus_mode=1
-select_search_on_set_mode=2
-search_history_enabled=0
-run_history_enabled=1
-search_history_days_to_keep=90
-run_history_days_to_keep=90
-search_history_always_suggest=0
-search_history_max_results=24
-search_history_show_above=0
-service_port=15485
-etp_server_enabled=0
-etp_server_bindings=
-etp_server_port=21
-etp_server_username=
-etp_server_password=
-etp_server_welcome_message=
-etp_server_log_file_name=
-etp_server_logging_enabled=1
-etp_server_log_max_size=4194304
-etp_server_log_delta_size=524288
-etp_server_allow_file_download=1
-http_server_enabled=0
-http_server_bindings=
-http_title_format=
-http_server_port=80
-http_server_username=
-http_server_password=
-http_server_home=
-http_server_default_page=
-http_server_log_file_name=
-http_server_logging_enabled=1
-http_server_log_max_size=4194304
-http_server_log_delta_size=524288
-http_server_allow_file_download=1
-name_column_pos=0
-name_column_width=256
-path_column_visible=1
-path_column_pos=1
-path_column_width=256
-size_column_visible=1
-size_column_pos=2
-size_column_width=96
-extension_column_visible=0
-extension_column_pos=3
-extension_column_width=96
-type_column_visible=0
-type_column_pos=4
-type_column_width=96
-last_write_time_column_visible=1
-last_write_time_column_pos=3
-last_write_time_column_width=153
-creation_time_column_visible=0
-creation_time_column_pos=6
-creation_time_column_width=140
-date_accessed_column_visible=0
-date_accessed_column_pos=7
-date_accessed_column_width=140
-attribute_column_visible=0
-attribute_column_pos=8
-attribute_column_width=70
-date_recently_changed_column_visible=0
-date_recently_changed_column_pos=9
-date_recently_changed_column_width=96
-run_count_column_visible=0
-run_count_column_pos=10
-run_count_column_width=96
-date_run_column_visible=0
-date_run_column_pos=11
-date_run_column_width=140
-file_list_filename_column_visible=0
-file_list_filename_column_pos=12
-file_list_filename_column_width=96
-translucent_selection_rectangle_background_color=
-translucent_selection_rectangle_border_color=
-ntfs_volume_paths=
-ntfs_volume_includes=
-ntfs_volume_load_recent_changes=
-ntfs_volume_include_onlys=
-ntfs_volume_monitors=
-filelists=
-folders=
-folder_monitor_changes=
-folder_update_types=
-folder_update_days=
-folder_update_ats=
-folder_update_intervals=
-folder_update_interval_types=
-exclude_folders=
-connect_history_hosts=
-connect_history_ports=
-connect_history_usernames=
-connect_history_link_types=
-file_new_search_window_keys=334
-file_open_file_list_keys=335
-file_close_file_list_keys=
-file_close_keys=343,27
-file_export_keys=339
-file_copy_full_name_to_clipboard_keys=9539
-file_copy_path_to_clipboard_keys=
-file_set_run_count_keys=
-file_create_shortcut_keys=
-file_delete_keys=8238
-file_delete_permanently_keys=9262
-file_edit_keys=
-file_open_keys=8205
-file_open_selection_and_close_everything_keys=
-file_explore_path_keys=
-file_open_new_keys=
-file_open_path_keys=8461
-file_open_with_keys=
-file_open_with_default_verb_keys=
-file_play_keys=
-file_preview_keys=
-file_print_keys=
-file_print_to_keys=
-file_properties_keys=8717
-file_read_extended_information_keys=8517
-file_rename_keys=8305
-file_run_as_keys=
-file_exit_keys=337
-file_custom_verb_1_keys=
-file_custom_verb_2_keys=
-file_custom_verb_3_keys=
-file_custom_verb_4_keys=
-file_custom_verb_5_keys=
-file_custom_verb_6_keys=
-file_custom_verb_7_keys=
-file_custom_verb_8_keys=
-file_custom_verb_9_keys=
-file_custom_verb_10_keys=
-file_custom_verb_11_keys=
-file_custom_verb_12_keys=
-edit_cut_keys=8536
-edit_copy_keys=8515,8493
-edit_paste_keys=8534,9261
-edit_select_all_keys=8513
-edit_invert_selection_keys=
-view_filters_keys=
-view_status_bar_keys=
-view_window_size_small_keys=561
-view_window_size_medium_keys=562
-view_window_size_large_keys=563
-view_window_size_auto_fit_keys=564
-view_zoom_zoom_in_keys=443,363
-view_zoom_zoom_out_keys=445,365
-view_zoom_reset_keys=304,352
-view_go_to_back_keys=549,166
-view_go_to_forward_keys=551,167
-view_go_to_home_keys=548
-view_sort_by_name_keys=305
-view_sort_by_path_keys=306
-view_sort_by_size_keys=307
-view_sort_by_extension_keys=308
-view_sort_by_type_keys=309
-view_sort_by_date_modified_keys=310
-view_sort_by_date_created_keys=311
-view_sort_by_attributes_keys=312
-view_sort_by_file_list_filename_keys=
-view_sort_by_run_count_keys=
-view_sort_by_date_run_keys=
-view_sort_by_date_recently_changed_keys=313
-view_sort_by_date_accessed_keys=
-view_sort_by_ascending_keys=
-view_sort_by_descending_keys=
-view_refresh_keys=116
-view_fullscreen_keys=122
-view_toggle_ltrrtl_keys=
-view_on_top_never_keys=
-view_on_top_always_keys=340
-view_on_top_while_searching_keys=
-search_match_case_keys=329
-search_match_whole_word_keys=322
-search_match_path_keys=341
-search_match_diacritics_keys=333
-search_enable_regex_keys=338
-search_add_to_filters_keys=
-search_organize_filters_keys=1350
-bookmarks_add_to_bookmarks_keys=324
-bookmarks_organize_bookmarks_keys=1346
-tools_options_keys=336
-tools_console_keys=448
-tools_file_list_editor_keys=
-tools_connect_to_etp_server_keys=
-tools_disconnect_from_etp_server_keys=
-help_everything_help_keys=112
-help_search_syntax_keys=
-help_regex_syntax_keys=
-help_command_line_options_keys=
-help_everything_website_keys=
-help_check_for_updates_keys=
-help_about_everything_keys=368
-search_edit_focus_search_edit_keys=326,114
-search_edit_delete_previous_word_keys=4360
-search_edit_auto_complete_search_keys=4384
-search_edit_show_search_history_keys=
-search_edit_show_all_search_history_keys=4646,4648
-result_list_item_up_keys=8230,4134
-result_list_item_down_keys=8232,4136
-result_list_page_up_keys=8225,4129
-result_list_page_down_keys=8226,4130
-result_list_start_of_list_keys=8228
-result_list_end_of_list_keys=8227
-result_list_item_up_extend_keys=9254,5158
-result_list_item_down_extend_keys=9256,5160
-result_list_page_up_extend_keys=9249,5153
-result_list_page_down_extend_keys=9250,5154
-result_list_start_of_list_extend_keys=9252
-result_list_end_of_list_extend_keys=9251
-result_list_focus_up_keys=8486,4390
-result_list_focus_down_keys=8488,4392
-result_list_focus_page_up_keys=8481,4385
-result_list_focus_page_down_keys=8482,4386
-result_list_focus_start_of_list_keys=8484
-result_list_focus_end_of_list_keys=8483
-result_list_focus_up_extend_keys=9510,5414
-result_list_focus_down_extend_keys=9512,5416
-result_list_focus_page_up_extend_keys=9505,5409
-result_list_focus_page_down_extend_keys=9506,5410
-result_list_focus_start_of_list_extend_keys=9508
-result_list_focus_end_of_list_extend_keys=9507
-result_list_focus_result_list_keys=
-result_list_toggle_path_column_keys=1330
-result_list_toggle_size_column_keys=1331
-result_list_toggle_extension_column_keys=1332
-result_list_toggle_type_column_keys=1333
-result_list_toggle_date_modified_column_keys=1334
-result_list_toggle_date_created_column_keys=1335
-result_list_toggle_attributes_column_keys=1336
-result_list_toggle_file_list_filename_column_keys=
-result_list_toggle_run_count_column_keys=
-result_list_toggle_date_recently_changed_column_keys=1337
-result_list_toggle_date_accessed_column_keys=
-result_list_toggle_date_run_column_keys=
-result_list_size_all_columns_to_fit_keys=8555
-result_list_size_result_list_to_fit_keys=
-result_list_context_menu_keys=9337
-result_list_scroll_left_keys=8229
-result_list_scroll_right_keys=8231
-result_list_scroll_page_left_keys=8485
-result_list_scroll_page_right_keys=8487
-result_list_select_focus_keys=8224
-result_list_toggle_focus_selection_keys=8480
-result_list_copy_selection_to_clipboard_as_csv_keys=
-result_list_font=
-result_list_font_size=
-search_edit_font=
-search_edit_font_size=
-status_bar_font=
-status_bar_font_size=
-header_font=
-header_font_size=
-normal_background_color=
-normal_foreground_color=
-normal_bold=
-highlighted_background_color=
-highlighted_foreground_color=
-highlighted_bold=
-selected_background_color=
-selected_foreground_color=
-selected_bold=
-highlighted_selected_background_color=
-highlighted_selected_foreground_color=
-highlighted_selected_bold=
-selected_inactive_background_color=
-selected_inactive_foreground_color=
-selected_inactive_bold=
-highlighted_selected_inactive_background_color=
-highlighted_selected_inactive_foreground_color=
-highlighted_selected_inactive_bold=
-drop_target_background_color=
-drop_target_foreground_color=
-drop_target_bold=
-highlighted_drop_target_background_color=
-highlighted_drop_target_foreground_color=
-highlighted_drop_target_bold=
-current_sort_background_color=
-current_sort_foreground_color=
-current_sort_bold=
-highlighted_current_sort_background_color=
-highlighted_current_sort_foreground_color=
-highlighted_current_sort_bold=
-mouseover_background_color=
-mouseover_foreground_color=
-mouseover_bold=
-mouseover_highlighted_background_color=
-mouseover_highlighted_foreground_color=
-mouseover_highlighted_bold=
-current_sort_mouseover_background_color=
-current_sort_mouseover_foreground_color=
-current_sort_mouseover_bold=
-mouseover_current_sort_highlighted_background_color=
-mouseover_current_sort_highlighted_foreground_color=
-mouseover_current_sort_highlighted_bold=
-alternate_row_background_color=
-alternate_row_foreground_color=
-alternate_row_bold=
-alternate_row_highlighted_background_color=
-alternate_row_highlighted_foreground_color=
-alternate_row_highlighted_bold=
-current_sort_alternate_row_background_color=
-current_sort_alternate_row_foreground_color=
-current_sort_alternate_row_bold=
-current_sort_alternate_row_highlighted_background_color=
-current_sort_alternate_row_highlighted_foreground_color=
-current_sort_alternate_row_highlighted_bold=
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/HMP.cmd b/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/HMP.cmd
deleted file mode 100644
index 0481ff41..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/HMP.cmd
+++ /dev/null
@@ -1,11 +0,0 @@
-pushd "%~dp0"
-cd..
-set d7IIpath=%cd%
-pushd "%~dp0"
-echo %d7IIpath%\>HMP_Excludes.txt
-echo %programfiles%\dSupportSuite\>>HMP_Excludes.txt
-echo %programfiles(x86)%\dSupportSuite\>>HMP_Excludes.txt
-echo %programfiles%\CryptoPrevent\>>HMP_Excludes.txt
-echo %programfiles(x86)%\CryptoPrevent\>>HMP_Excludes.txt
-echo %programfiles%\Foolish IT\CryptoPrevent\>>HMP_Excludes.txt
-echo %programfiles(x86)%\Foolish IT\CryptoPrevent\>>HMP_Excludes.txt
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/JRT_Auto.cmd b/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/JRT_Auto.cmd
deleted file mode 100644
index 549e8e0a..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/JRT_Auto.cmd
+++ /dev/null
@@ -1,17 +0,0 @@
-@echo off&pushd "%~dp0"
-start /wait JRT.exe -y -nr
-pushd "%temp%\jrt"
-if not exist "get.bat" pushd %systemdrive%\JRT
-if not exist "get.bat" goto :eof
-findstr /v /i "pause" get.bat>tmp.txt
-findstr /v /i /b "notepad" tmp.txt>get.bat
-echo.>>"%temp%\jrt\wl_services.cfg"
-echo d7iisvc>>"%temp%\jrt\wl_services.cfg"
-echo dSSEventSvc>>"%temp%\jrt\wl_services.cfg"
-echo CryptoPreventEventSvc>>"%temp%\jrt\wl_services.cfg"
-echo.>>"%temp%\jrt\wl_processes.cfg"
-echo d7ii>>"%temp%\jrt\wl_processes.cfg"
-echo dfunk>>"%temp%\jrt\wl_processes.cfg"
-echo dSupportSuite>>"%temp%\jrt\wl_processes.cfg"
-echo CryptoPrevent>>"%temp%\jrt\wl_processes.cfg"
-start /wait cmd.exe /c get.bat
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/Neutron.ini b/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/Neutron.ini
deleted file mode 100644
index 27c28250..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/Neutron.ini
+++ /dev/null
@@ -1,26 +0,0 @@
-[Options]
-AutoSync=1
-AutoExit=1
-Retry=1
-
-[Servers]
-0="time-a.nist.gov"
-1="time-a.timefreq.bldrdoc.gov"
-2="time-b.nist.gov"
-3="time-b.timefreq.bldrdoc.gov"
-4="time-c.timefreq.bldrdoc.gov"
-5="us.pool.ntp.org"
-6="1.us.pool.ntp.org"
-7="2.us.pool.ntp.org"
-8="3.us.pool.ntp.org"
-9="pubts1-sj.witime.net"
-10="pubts2-sj.witime.net"
-11="rolex.usg.edu"
-12="timekeeper.isi.edu"
-13="nist1.symmetricom.com"
-14="clock.via.net"
-15="nist1.aol-ca.truetime.com"
-16="nist.expertsmi.com"
-17="nist1-dc.WiTime.net"
-18="nist1-sj.WiTime.net"
-19="utcnist.colorado.edu"
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/PatchMyPC.reg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/PatchMyPC.reg
deleted file mode 100644
index 540426a5..00000000
Binary files a/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/PatchMyPC.reg and /dev/null differ
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/a2cmd.cmd b/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/a2cmd.cmd
deleted file mode 100644
index bf44096b..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/a2cmd.cmd
+++ /dev/null
@@ -1,167 +0,0 @@
-::
-:: --- BEGIN INFO ---
-::
-::
-:: Applicable Custom App: All 'Emsisoft xxx' app configurations in d7II default custom app configurations.
-::
-:: Last Update: 2017-02-03
-::
-:: Created by Nick @ FoolishIT.com [Foolish IT LLC] as an example for the user-configurable d7II custom app's system.
-::
-::
-:: - d7II Config Location: (applicable to most anything having to do with this batch file)
-:: Open Config (under Main drop down menu) \ Custom Apps (tab) \ (search/find/highlight desired custom app in left column/box first) \ New/Edit App (sub-tab)
-::
-:: - This batch file is referenced from custom app configuration items in d7II Config, and may make references to other data available from within
-:: the custom app configuration or used by it such as noted here.
-::
-:: - The 'Whitelist.txt' file created by this batch file will by referenced in the command line arguments passed to the custom app; the configuration
-:: for this is located in custom apps config as mentioned above \ then the Execution (sub-tab)
-::
-:: - This batch file is called into action when configured in the 'Import Config Before Execution' setting in a d7II custom app configuration,
-:: which can be found on the 'Pre-Execution' tab of the custom app configuration mentioned above.
-::
-:: NOTES: * When a .BAT/.CMD file such as this is found configured under this setting (as opposed to any other text or data file) it will be
-:: copied to the custom app's final running directory (the same as any other files would be) but then executed as a batch script (after
-:: the installer is executed if one is configured, but prior to execution of the main custom app itself.
-::
-:: * Similarly, a .VBS file would be copied to the custom app directory and executed as a script as above.
-::
-:: * Further, a .REG file would be imported to the registry if found configured for this setting.
-::
-:: * This setting may reference multiple files separated by a comma with no spacing required; e.g. 'file1.bat,file2.txt,file3.reg'
-::
-:: * All files (no paths) configured here must be located within your 'd7II\Config\CustomApps\3rd Party Configs' path (create the last
-:: dirs if not exist.) They will likely work if located in the 'd7II\Config\CustomApps_d7II\3rd Party Configs' path, but with all
-:: d7II default custom app configurations, this path with all content will be deleted and rewritten during updates to the default apps.
-::
-::
-:: Batch File Objectives:
-::
-:: 1. Obtain d7II path via registry; use this in creating a whitelist to be used by the custom app
-:: (to include all custom apps in subdirs of d7II)
-::
-:: 2. Obtain 3rd Party Tools path via registry; if this is not a subdir of the main d7II Path, then
-:: add this to a whitelist to be used by the custom app (to include all custom apps in subdirs)
-::
-:: 3. create a2cmd whitelist as a new file in the location/directory of the custom app (overwrite existing if any)
-:: - batch file current directory should be same as the main executable of the custom app (Execution tab)
-:: - add d7II path and include all custom apps within the d7II subdir structure) and other Foolish IT apps
-:: to a new file (overwrite) in the current directory (of the custom app whitelist for a2cmd.)
-::
-::
-:: --- BEGIN CODE ---
-:: Disable local echo, clear screen, output a blank line.
-::
-@echo off&cls&echo.
-:: Set window title to visually identify what this console window is doing.
-title [a2cmd] Performing Additional Custom App Tasks...
-:: Change from the Current Working Directory (available to the %cd% variable)
-:: to the Current Directory (available as %~dp0 below) where the file actually "lives"
-:: and was the location where this batch file was copied to by d7II.exe prior to running it.
-::
-:: - This should be the path of the main exe for this custom app as configured in d7II;
-:: located in custom apps config as mentioned above \ then the Execution (sub-tab)
-::
-:: - Syntax explanation:
-::
-:: '~' removes wrapping quotes (never use in a variable if possible, instead wrap the variable as necessary!)
-:: 'd' returns a drive letter and colon
-:: 'p' returns a full directory path (without a prepended driveletter, and including a trailing backslash)
-:: '0' refers to self (this batch file) as the subject of the above conditions
-::
-pushd "%~dp0"
-:: Set variables for registry value queries and app info
-::
-set "RegKey=HKLM\Software\Foolish IT\d7II\Session\Paths"
-set "RegNameEXE=AppEXE"
-set "RegName3PT=3PTDir"
-set "MainPath=%systemdrive%\EmsisoftCmd"
-set "MainEXE=a2cmd.exe"
-set "InstEXE32=EmsisoftCommandlineScanner32.exe"
-set "InstEXE64=EmsisoftCommandlineScanner64.exe"
-set "InstParms=/S"
-:: Determine if 64bit paths should be used. Note that by using the syntax '%programfiles% (x86)' and not the single
-:: '%programfiles(x86)%' then we avoid any errors with the variable not existing and throwing off the actual exist check.
-::
-if "[%programfiles(x86)%]" NEQ "[]" if exist "%programfiles% (x86)" set Win64=True
-::
-if defined Win64 (
- set "ProgramDir32=%programfiles(x86)%"
- set "InstEXE=%InstEXE64%"
-) else (
- set "ProgramDir32=%programfiles%"
- set "InstEXE=%InstEXE32%"
-)
-:: Run installer/self-extractor
-::
-if not exist "%MainPath%\%MainEXE%" if exist %InstEXE% start "" /wait "%InstEXE%" %InstParms%
-:: Exit if install path does not exist...
-::
-if not exist "%MainPath%" (
- goto :eof
-) else (
- pushd "%MainPath%"
-)
-:: Add exclusions for other Foolish IT product paths (unrelated to d7II) that may be on a system;
-:: While we could first test for dir exist, the dumb addition of a few extra exclusions to the
-:: whitelist without checking for their existence will make much of a difference to any custom app...
-::
-:: - NOTE: observe the first code line using a single ">" chr prior to the whitelist filename,
-:: this creates new or overwrites an existing file; all subsequent usage for the same
-:: filename must include the syntax of double ">>" chrs, which creates new or appends
-:: to an existing file.
-::
-echo %ProgramDir32%\dSupportSuite\>a2cmd_Whitelist.txt
-echo %ProgramDir32%\CryptoPrevent\>>a2cmd_Whitelist.txt
-echo %ProgramDir32%\Foolish IT\CryptoPrevent\>>a2cmd_Whitelist.txt
-:: Extract the full path to d7II.exe for the "d7IIPath" variable; obtain d7II path for the currently active
-:: d7II 'session' via a registry query to the registry's copy of d7II's current session configuration.
-::
-:: - NOTE: The ' 2^>nul' syntax below redirects errors from the 'reg query' command to 'nul' in order to
-:: keep garbage/error messages from defining this variable on an unexpected error...
-::
-:: Also, similar to the '%~dp0' syntax used with pushd at the beginning of the batch file, the
-:: variable syntax '~dp' is used with the variable '%%_' to ensure output as a drive\path without
-:: without a filename and without wrapping quotes (a trailing backslash is included in the output
-:: and for these purposes it is also expected syntax for the custom app whitelist.
-::
-for /f "usebackq tokens=2*" %%a in (`reg query "%RegKey%" /v "%RegNameEXE%" 2^>nul`) do set "d7IIPath=%%~dpb"
-::
-:: Check for a result; if variable is defined above then add this path to the whitelist.
-::
-if defined d7IIPath echo %d7IIpath%>>a2cmd_Whitelist.txt
-:: Next get the path to d7II custom apps / 3rd party tools via reg query, to provide redundancy if this path
-:: for any reason is not located within a subdir of d7II.exe itself. First set the new registry value name.
-::
-for /f "usebackq tokens=2*" %%a in (`reg query "%RegKey%" /v "%RegName3PT%" 2^>nul`) do set "ToolsPath=%%~b"
-::
-:: Check for a result; if variable is defined above then add this path to the whitelist, otherwise the rest
-:: of this script is useless, so exit.
-::
-if not defined ToolsPath goto :eof
-echo %ToolsPath%\>>a2cmd_Whitelist.txt
-:: If no parameters were passed to this batch file, it is being run as part of the "Copy Config" custom app
-:: setting (it will be run a second time with parameters for the execution of the custom app itself, which is
-:: configured to run this batch file again instead of %MainEXE% as the actual configured exe for this custom
-:: app.)
-::
-:: Test to find out if any parameters were passed to this batch file, and if none are found just update...
-::
-if [%1] EQU [] goto :RunUpdate
-:: If we make it this far then this batch file was launched with command line parameters intended for %MainEXE%,
-:: so run the custom app passing all parameters as received and waiting for exit.
-::
-echo Running scan... (in a separate window; please do NOT close this window!)
-::
-start "" /wait "%MainEXE%" %*
-goto :eof
-:RunUpdate
-::
-:: Since getting here means no parameters were passed, run %MainEXE% using parameters for it's own internal
-:: definition/signature update, then exit.
-::
-echo Starting update... (in a separate window; please do NOT close this window!)
-::
-start "" /wait "%MainEXE%" /update
-goto :eof
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/cpuz.ini b/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/cpuz.ini
deleted file mode 100644
index e31404cd..00000000
Binary files a/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/cpuz.ini and /dev/null differ
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/pagedfrg.reg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/pagedfrg.reg
deleted file mode 100644
index de812262..00000000
Binary files a/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/pagedfrg.reg and /dev/null differ
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/rkill.cmd b/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/rkill.cmd
deleted file mode 100644
index 6cca7c3a..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/rkill.cmd
+++ /dev/null
@@ -1,5 +0,0 @@
-pushd "%~dp0"
-cd..
-set d7IIpath=%cd%
-pushd "%~dp0"
-echo %d7IIpath%\d7II.exe>rkill_Excludes.txt
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/AS SSD Benchmark.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/AS SSD Benchmark.cfg
deleted file mode 100644
index 220e910d..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/AS SSD Benchmark.cfg
+++ /dev/null
@@ -1,35 +0,0 @@
-[Config]
-DisableCloudShare=0
-AppURL=http://www.alex-is.de/PHP/fusion/downloads.php?cat_id=4&file_id=9
-AppDLName=AS SSD Benchmark.zip
-AlwaysAttemptDownload=1
-AppWait=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-App=AS SSD Benchmark\AS SSD Benchmark.exe
-UseFTPServer=0
-DLafterXdays=7
-PriorAlert=0
-LogVerbiage=Ran SSD testing/benchmark
-LastDownload=10/27/2017
-AppWebsite=www.alex-is.de/PHP/fusion/downloads.php?cat_id=4&download_id=9
-Author=FoolishTech
-LastEditDate=2/7/2014 9:45:12 AM
-NonDirectURLs=0
-AppDLPage=www.alex-is.de/PHP/fusion/downloads.php?cat_id=4&download_id=9
-AppDesc=SSD Benchmark Utility
-AutoFlag=0
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/AdwCleaner.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/AdwCleaner.cfg
deleted file mode 100644
index db51c8a9..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/AdwCleaner.cfg
+++ /dev/null
@@ -1,36 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=7/21/2014 11:16:06 AM
-AppWebsite=http://www.bleepingcomputer.com/download/adwcleaner/
-AppDLPage=http://www.bleepingcomputer.com/download/adwcleaner/
-AppDesc=Toolbar Remover
-App=AdwCleaner.exe
-UseFTPServer=0
-AppURL=http://download.bleepingcomputer.com/Xplode/AdwCleaner.exe
-AppURLB=http://general-changelog-team.fr/fr/downloads/finish/20-outils-de-xplode/2-adwcleaner
-AppDLName=AdwCleaner.exe
-AlwaysAttemptDownload=1
-DLafterXdays=.5
-AppWait=1
-PriorAlert=1
-ServiceWait=1
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsLoc=%systemdrive%\AdwCleaner\AdwCleaner*.txt
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Removed unnecessary internet browser add-ins (e.g. Toolbars) [AdwCleaner]
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-LastDownload=10/27/2017
-AutoFlag=0
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Auslogics DD Portable.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Auslogics DD Portable.cfg
deleted file mode 100644
index 5b9d818f..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Auslogics DD Portable.cfg
+++ /dev/null
@@ -1,34 +0,0 @@
-[Config]
-DisableCloudShare=0
-AppWebsite=http://www.auslogics.com/en/software/disk-defrag/command-line/
-App=ausdiskdefragportable.exe
-AppURL=http://www.auslogics.com/en/downloads/disk-defrag/ausdiskdefragportable.exe
-AppDLName=ausdiskdefragportable.exe
-AlwaysAttemptDownload=1
-AppWait=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=0
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=0
-UseFTPServer=0
-DLafterXdays=7
-PriorAlert=1
-LogVerbiage=Defragmented file system (Auslogics)
-Author=FoolishTech
-LastEditDate=2/7/2014 9:45:41 AM
-NonDirectURLs=0
-AppDesc=Disk Defragmenter
-AppDLPage=http://www.auslogics.com/en/software/disk-defrag/
-AutoFlag=0
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Autoruns.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Autoruns.cfg
deleted file mode 100644
index 3b75ac6f..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Autoruns.cfg
+++ /dev/null
@@ -1,36 +0,0 @@
-[Config]
-App=autoruns\autoruns.exe
-AppURL=http://download.sysinternals.com/files/Autoruns.zip
-AppDLName=autoruns.zip
-AppWait=1
-AppMsgBox=0
-AppRandomize=1
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-AppParms=-accepteula
-DisableCloudShare=0
-UseFTPServer=0
-AlwaysAttemptDownload=1
-DLafterXdays=7
-PriorAlert=1
-ServiceWait=0
-SaveConfigAfter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-AppWebsite=http://technet.microsoft.com/en-us/sysinternals/bb963902
-LogVerbiage=Examined Windows startup items and removed unnecessary entries.
-LastDownload=10/27/2017
-Author=FoolishTech
-LastEditDate=2/7/2014 9:46:37 AM
-NonDirectURLs=0
-AppDLPage=http://technet.microsoft.com/en-us/sysinternals/bb963902
-AppDesc=Manages Startup Items
-AutoFlag=0
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Avast! aswMBR.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Avast! aswMBR.cfg
deleted file mode 100644
index dd51702d..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Avast! aswMBR.cfg
+++ /dev/null
@@ -1,33 +0,0 @@
-[Config]
-App=aswMBR.exe
-AppURL=http://public.avast.com/~gmerek/aswMBR.exe
-AppWait=1
-AppMsgBox=0
-AppRandomize=1
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-AppDLName=aswMBR.exe
-DisableCloudShare=0
-UseFTPServer=0
-AlwaysAttemptDownload=0
-PriorAlert=1
-ServiceWait=0
-SaveConfigAfter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-AppWebsite=http://public.avast.com/~gmerek/aswMBR.htm
-LogVerbiage=Checked MBR for infections and scanned for additional malicious items (Avast!).
-Author=FoolishTech
-LastEditDate=2/7/2014 9:46:53 AM
-AppDLPage=http://public.avast.com/~gmerek/aswMBR.htm
-AppDesc=MBR Checker and Virus Scanner
-NonDirectURLs=0
-AutoFlag=0
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/BatteryInfoView.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/BatteryInfoView.cfg
deleted file mode 100644
index 1f4ed47b..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/BatteryInfoView.cfg
+++ /dev/null
@@ -1,34 +0,0 @@
-[Config]
-DisableCloudShare=0
-App=batteryinfoview.exe
-AppURL=http://www.nirsoft.net/panel/batteryinfoview.exe
-AppDLName=batteryinfoview.exe
-AlwaysAttemptDownload=0
-AppWait=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=0
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-AppWebsite=www.nirsoft.net/utils/battery_information_view.html
-UseFTPServer=0
-PriorAlert=0
-LogVerbiage=Checked battery life and wear level.
-Author=FoolishTech
-LastEditDate=2/7/2014 9:47:17 AM
-AppDLPage=www.nirsoft.net/utils/battery_information_view.html
-AppDesc=Detailed info on installed batteries
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Belarc Advisor (Install-Report).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Belarc Advisor (Install-Report).cfg
deleted file mode 100644
index 83d765cf..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Belarc Advisor (Install-Report).cfg
+++ /dev/null
@@ -1,36 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=2/7/2014 9:49:58 AM
-App=advisorinstaller.exe
-AppParms=/silent
-UseFTPServer=0
-AppURL=http://www.belarc.com/Programs/advisorinstaller.exe
-AppDLName=advisorinstaller.exe
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-WaitOnProcesses=Belarc~1.exe
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsLoc=%programfiles(x86)%\Belarc\BelarcAdvisor\System\tmp\(%computername%).html
-SnatchReportsToMalwareLogs=0
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AppWebsite=http://www.belarc.com/free_download.html
-AppDLPage=http://www.belarc.com/free_download.html
-AppDesc=System Information Utility (Not 'Portable' - Installation Necessary)
-AutoFlag=1
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Bitdefender Rootkit Remover.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Bitdefender Rootkit Remover.cfg
deleted file mode 100644
index d93b1328..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Bitdefender Rootkit Remover.cfg
+++ /dev/null
@@ -1,38 +0,0 @@
-[Config]
-DisableCloudShare=0
-App=BootkitRemoval_x86.exe
-App64=BootkitRemoval_x64.exe
-AppURL64=http://download.bitdefender.com/removal_tools/BootkitRemoval_x64.exe
-AppDLName64=BootkitRemoval_x64.exe
-UseFTPServer=0
-AppURL=http://download.bitdefender.com/removal_tools/BootkitRemoval_x86.exe
-AppDLName=BootkitRemoval_x86.exe
-AlwaysAttemptDownload=1
-DLafterXdays=5
-AppWait=1
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=1
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-AppWebsite=http://labs.bitdefender.com/projects/rootkit-remover/rootkit-remover/
-LogVerbiage=Performed additional rootkit scanning. (BRR)
-Author=FoolishTech
-LastEditDate=2/7/2014 9:50:38 AM
-AppDLPage=http://labs.bitdefender.com/projects/rootkit-remover/rootkit-remover/
-AppDesc=Bitdefender Rootkit Remover
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=8/13/2018
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/BluescreenView.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/BluescreenView.cfg
deleted file mode 100644
index 51997f14..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/BluescreenView.cfg
+++ /dev/null
@@ -1,34 +0,0 @@
-[Config]
-DisableCloudShare=0
-App=bluescreenview.exe
-AppURL=http://www.nirsoft.net/panel/bluescreenview.exe
-AppDLName=bluescreenview.exe
-AlwaysAttemptDownload=0
-AppWait=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=0
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-UseFTPServer=0
-PriorAlert=0
-LogVerbiage=Checked for previous blue screens / crash dumps.
-AppWebsite=www.nirsoft.net/utils/blue_screen_view.html
-Author=FoolishTech
-LastEditDate=2/7/2014 9:51:06 AM
-AppDLPage=www.nirsoft.net/utils/blue_screen_view.html
-AppDesc=Analyze blue screens / memory dumps created by Windows
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/CPU-Z.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/CPU-Z.cfg
deleted file mode 100644
index 29700743..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/CPU-Z.cfg
+++ /dev/null
@@ -1,39 +0,0 @@
-[Config]
-Author=FoolishIT
-LastEditDate=12/8/2015 9:51:43 AM
-PostRunApp=
-AppWebsite=http://www.cpuid.com/softwares/cpu-z.html
-AppDLPage=http://www.cpuid.com/softwares/cpu-z.html
-App=cpu-z\cpuz_x32.exe
-App64=cpu-z\cpuz_x64.exe
-UseFTPServer=0
-AppURL=http://download.cpuid.com/cpu-z/cpu-z_1.74-en.zip
-AppDLName=cpu-z.zip
-AlwaysAttemptDownload=1
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=1
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=0
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-AppDesc=Display hardware information (CPU, RAM, MB)
-LogVerbiage=Reviewed hardware information of the system.
-LastDownload=12/8/2015
-CopyConfigFirst=cpuz.ini
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/ComboFix (Uninstall).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/ComboFix (Uninstall).cfg
deleted file mode 100644
index 0593ef70..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/ComboFix (Uninstall).cfg
+++ /dev/null
@@ -1,33 +0,0 @@
-[Config]
-App=combofix.exe
-AppParms=/uninstall
-AppURL=http://download.bleepingcomputer.com/sUBs/ComboFix.exe
-AppDLName=combofix.exe
-AppWait=1
-AppMsgBox=0
-AppRandomize=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=0
-AlwaysAttemptDownload=0
-SaveConfigAfter=0
-DisableCloudShare=0
-UseFTPServer=0
-PriorAlert=1
-ServiceWait=1
-RunWithSystemAccess=0
-IsDLInstaller=0
-Servers=1
-AppWebsite=http://www.bleepingcomputer.com/download/combofix/
-Author=FoolishTech
-LastEditDate=2/7/2014 9:51:39 AM
-AppDLPage=http://www.bleepingcomputer.com/download/combofix/
-AppDesc=Uninstalls Combofix, cleaning up any leftover files/settings.
-NonDirectURLs=0
-AutoFlag=0
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/ComboFix.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/ComboFix.cfg
deleted file mode 100644
index c0986c15..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/ComboFix.cfg
+++ /dev/null
@@ -1,34 +0,0 @@
-[Config]
-App=combofix.exe
-AppURL=http://download.bleepingcomputer.com/sUBs/ComboFix.exe
-AppDLName=combofix.exe
-AppWait=1
-AppMsgBox=0
-AppRandomize=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-AlwaysAttemptDownload=1
-SaveConfigAfter=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=0
-DisableCloudShare=0
-UseFTPServer=0
-DLafterXdays=.5
-PriorAlert=1
-ServiceWait=1
-RunWithSystemAccess=0
-IsDLInstaller=0
-Servers=1
-AppWebsite=http://www.bleepingcomputer.com/download/combofix/
-LogVerbiage=Ran malware scans (Combofix)
-Author=FoolishTech
-LastEditDate=2/7/2014 9:52:03 AM
-AppDLPage=http://www.bleepingcomputer.com/download/combofix/
-AppDesc=Malware removal tool.
-NonDirectURLs=0
-AutoFlag=0
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/CrowdInspect.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/CrowdInspect.cfg
deleted file mode 100644
index f98fb150..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/CrowdInspect.cfg
+++ /dev/null
@@ -1,33 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=3/15/2014 3:49:54 PM
-AppWebsite=www.crowdstrike.com
-AppDLPage=www.crowdstrike.com/crowdinspect/
-AppDesc=Analyze running processes against VirusTotal, Web of Trust, and the Malware Hash Project.
-App=CrowdInspect\CrowdInspect.exe
-UseFTPServer=0
-AppURL=http://download.crowdstrike.com/crowdinspect/CrowdInspect.zip
-AppDLName=CrowdInspect.zip
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/CrystalDiskInfo.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/CrystalDiskInfo.cfg
deleted file mode 100644
index 08d02f4b..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/CrystalDiskInfo.cfg
+++ /dev/null
@@ -1,37 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=4/1/2016 12:41:03 PM
-PostRunApp=
-AppWebsite=http://crystalmark.info/software/CrystalDiskInfo/index-e.html
-AppDLPage=http://crystalmark.info/software/CrystalDiskInfo/index-e.html
-AppDesc=Hard drive diagnostics / information.
-App=CrystalDiskInfo\DiskInfo.exe
-App64=CrystalDiskInfo\DiskInfoX64.exe
-UseFTPServer=0
-AppURL=https://osdn.jp/frs/redir.php?m=tcpdiag&f=%2Fcrystaldiskinfo%2F65634%2FCrystalDiskInfo6_8_2.zip
-AppDLName=CrystalDiskInfo.zip
-AlwaysAttemptDownload=0
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Examined Hard Drive health (CrystalDiskInfo)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/CurrPorts.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/CurrPorts.cfg
deleted file mode 100644
index 17acbaa3..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/CurrPorts.cfg
+++ /dev/null
@@ -1,39 +0,0 @@
-[Config]
-Author=dSupportOnline
-LastEditDate=11/6/2014 10:33:04 PM
-PostRunApp=
-AppWebsite=http://www.nirsoft.net/utils/cports.html
-AppDLPage=http://www.nirsoft.net/utils/cports.html
-AppDesc=Displays current ports in use on system and by which process
-App=cports\cports.exe
-AppURLSpoof=http://www.nirsoft.net/utils/cports.html
-UseFTPServer=0
-AppURL=http://www.nirsoft.net/utils/cports.zip
-AppDLName=cports.zip
-AlwaysAttemptDownload=1
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-CopyConfigFirst=cports.cfg
-SaveConfigAfter=1
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Reviewed current ports in use by various applications on the system
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/ESET Smart Installer.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/ESET Smart Installer.cfg
deleted file mode 100644
index 9eea5090..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/ESET Smart Installer.cfg
+++ /dev/null
@@ -1,36 +0,0 @@
-[Config]
-DisableCloudShare=0
-App=esetsmartinstaller_enu.exe
-AppURL=http://download.eset.com/special/eos/esetsmartinstaller_enu.exe
-AppDLName=esetsmartinstaller_enu.exe
-AlwaysAttemptDownload=1
-AppWait=1
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-UseFTPServer=0
-DLafterXdays=7
-PriorAlert=1
-ServiceWait=0
-IsDLInstaller=0
-Servers=1
-AppWebsite=http://www.eset.com/int/online-scanner-popup/
-LogVerbiage=Ran Virus/Malware scans (ESET)
-LastDownload=9/28/2013
-WaitOnProcesses=onlinescannerapp.exe
-NonDirectURLs=0
-Author=FoolishTech
-LastEditDate=2/7/2014 9:53:54 AM
-AppDLPage=http://www.eset.com/int/online-scanner-popup/
-AppDesc=Online Virus Scanner
-AutoFlag=0
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Emsisoft a2cmd Deep Scan (Offline).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Emsisoft a2cmd Deep Scan (Offline).cfg
deleted file mode 100644
index 45d584b2..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Emsisoft a2cmd Deep Scan (Offline).cfg
+++ /dev/null
@@ -1,42 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=2/3/2017 5:45:31 PM
-PostRunApp=
-AppWebsite=http://www.emsisoft.com/en/software/cmd/
-AppDLPage=http://www.emsisoft.com/en/software/cmd/
-AppDesc=Virus Scanner (configured for scanning from the Offline Operations tab)
-AppParms=/f=%tdrive% /deep /rk /pup /a /n /ac /dq /la="%malreportdir%\a2cmd_deep_log_offline_%date%.txt"
-AppURL64=http://dl.emsisoft.com/EmsisoftCommandlineScanner64.exe
-AppDLName64=Emsisoft_a2cmd\EmsisoftCommandlineScanner64.exe
-UseFTPServer=0
-AppURL=http://dl.emsisoft.com/EmsisoftCommandlineScanner32.exe
-AppDLName=Emsisoft_a2cmd\EmsisoftCommandlineScanner32.exe
-AlwaysAttemptDownload=1
-DLafterXdays=1
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Ran deep virus scans (Emsisoft)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=1
-App=Emsisoft_a2cmd\a2cmd.cmd
-CopyConfigFirst=a2cmd.cmd
-WaitOnProcesses=a2cmd.exe
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Emsisoft a2cmd Deep Scan.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Emsisoft a2cmd Deep Scan.cfg
deleted file mode 100644
index 570ca229..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Emsisoft a2cmd Deep Scan.cfg
+++ /dev/null
@@ -1,42 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=2/3/2017 5:45:31 PM
-PostRunApp=
-AppWebsite=http://www.emsisoft.com/en/software/cmd/
-AppDLPage=http://www.emsisoft.com/en/software/cmd/
-AppDesc=Virus Scanner - Scans all files on all hard disks thoroughly. (does not need prior update)
-AppParms=/f=%tdrive% /deep /rk /m /t /c /pup /a /n /ac /d /wl="%systemdrive%\EmsisoftCmd\a2cmd_Whitelist.txt" /la="%malreportdir%\a2cmd_deep_log_%date%.txt"
-AppURL64=http://dl.emsisoft.com/EmsisoftCommandlineScanner64.exe
-AppDLName64=Emsisoft_a2cmd\EmsisoftCommandlineScanner64.exe
-UseFTPServer=0
-AppURL=http://dl.emsisoft.com/EmsisoftCommandlineScanner32.exe
-AppDLName=Emsisoft_a2cmd\EmsisoftCommandlineScanner32.exe
-AlwaysAttemptDownload=1
-DLafterXdays=1
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Ran deep virus scans (Emsisoft)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=1
-App=Emsisoft_a2cmd\a2cmd.cmd
-CopyConfigFirst=a2cmd.cmd
-WaitOnProcesses=a2cmd.exe
-LastDownload=10/7/2018
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Emsisoft a2cmd Quick Scan.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Emsisoft a2cmd Quick Scan.cfg
deleted file mode 100644
index bce3d597..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Emsisoft a2cmd Quick Scan.cfg
+++ /dev/null
@@ -1,41 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=2/3/2017 5:45:31 PM
-PostRunApp=
-AppWebsite=http://www.emsisoft.com/en/software/cmd/
-AppDLPage=http://www.emsisoft.com/en/software/cmd/
-AppDesc=Virus Scanner - Scans all active programs, malware traces (registry, files) and Tracking Cookies. Skips ADS, archive files, and some cookies. (does not need prior update)
-AppParms=/f=%tdrive% /quick /rk /m /t /pup /ac /d /wl="%systemdrive%\EmsisoftCmd\a2cmd_Whitelist.txt" /la="%malreportdir%\a2cmd_quick_log_%date%.txt"
-AppURL64=http://dl.emsisoft.com/EmsisoftCommandlineScanner64.exe
-AppDLName64=Emsisoft_a2cmd\EmsisoftCommandlineScanner64.exe
-UseFTPServer=0
-AppURL=http://dl.emsisoft.com/EmsisoftCommandlineScanner32.exe
-AppDLName=Emsisoft_a2cmd\EmsisoftCommandlineScanner32.exe
-AlwaysAttemptDownload=1
-DLafterXdays=1
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Ran virus scans (Emsisoft)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=1
-App=Emsisoft_a2cmd\a2cmd.cmd
-CopyConfigFirst=a2cmd.cmd
-WaitOnProcesses=a2cmd.exe
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Emsisoft a2cmd Smart Scan.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Emsisoft a2cmd Smart Scan.cfg
deleted file mode 100644
index 22fc69b5..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Emsisoft a2cmd Smart Scan.cfg
+++ /dev/null
@@ -1,41 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=2/3/2017 5:45:31 PM
-PostRunApp=
-AppWebsite=http://www.emsisoft.com/en/software/cmd/
-AppDLPage=http://www.emsisoft.com/en/software/cmd/
-AppDesc=Virus Scanner - Scans the Windows and program files folders in addition to everything scanned by the quick scan. Skips ADS, archive files, and some cookies. (does not need prior update)
-AppParms=/f=%tdrive% /smart /rk /m /t /pup /ac /d /wl="%systemdrive%\EmsisoftCmd\a2cmd_Whitelist.txt" /la="%malreportdir%\a2cmd_smart_log_%date%.txt"
-AppURL64=http://dl.emsisoft.com/EmsisoftCommandlineScanner64.exe
-AppDLName64=Emsisoft_a2cmd\EmsisoftCommandlineScanner64.exe
-UseFTPServer=0
-AppURL=http://dl.emsisoft.com/EmsisoftCommandlineScanner32.exe
-AppDLName=Emsisoft_a2cmd\EmsisoftCommandlineScanner32.exe
-AlwaysAttemptDownload=1
-DLafterXdays=1
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Ran virus scans (Emsisoft)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=1
-App=Emsisoft_a2cmd\a2cmd.cmd
-CopyConfigFirst=a2cmd.cmd
-WaitOnProcesses=a2cmd.exe
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Everything Search Engine.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Everything Search Engine.cfg
deleted file mode 100644
index 2bee29c2..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Everything Search Engine.cfg
+++ /dev/null
@@ -1,39 +0,0 @@
-[Config]
-Author=dSupportOnline
-LastEditDate=10/9/2014 1:20:00 PM
-PostRunApp=
-AppWebsite=http://www.voidtools.com/support/everything/
-AppDLPage=http://www.voidtools.com/downloads/
-App=everything32\Everything.exe
-App64=everything64\Everything.exe
-AppURL64=http://www.voidtools.com/Everything-1.3.4.686.x64.zip
-AppDLName64=everything64.zip
-UseFTPServer=0
-AppURL=http://www.voidtools.com/Everything-1.3.4.686.x86.zip
-AppDLName=everything32.zip
-AlwaysAttemptDownload=0
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-CopyConfigFirst=Everything.ini
-SaveConfigAfter=1
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-AppDesc=Quickly searches files and folders
-LogVerbiage=Searched system for files and folders to further inspect or remove.
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/ExecutedProgramsList.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/ExecutedProgramsList.cfg
deleted file mode 100644
index ceecc1fc..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/ExecutedProgramsList.cfg
+++ /dev/null
@@ -1,37 +0,0 @@
-[Config]
-LastEditDate=3/29/2016 4:09:19 PM
-PostRunApp=
-UseFTPServer=0
-AppURL=http://www.nirsoft.net/utils/executedprogramslist.zip
-AppDLName=ExecutedProgramsList.zip
-AlwaysAttemptDownload=1
-DLafterXdays=30
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-Author=Foolish IT
-AppWebsite=http://www.nirsoft.net/utils/executed_programs_list.html
-AppDLPage=http://www.nirsoft.net/utils/executed_programs_list.html
-AutoFlag=0
-App=ExecutedProgramsList\ExecutedProgramsList.exe
-AppDesc=List out recently executed programs.
-LogVerbiage=Checked recently executed programs.
-LastDownload=3/29/2016
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/GMER.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/GMER.cfg
deleted file mode 100644
index 07e11961..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/GMER.cfg
+++ /dev/null
@@ -1,34 +0,0 @@
-[Config]
-App=gmer\gmer.exe
-AppURL=http://www2.gmer.net/gmer.zip
-AppDLName=gmer.zip
-AppWait=1
-AppMsgBox=0
-AppRandomize=1
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-DisableCloudShare=0
-UseFTPServer=0
-AlwaysAttemptDownload=1
-DLafterXdays=7
-PriorAlert=1
-ServiceWait=0
-SaveConfigAfter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-AppWebsite=http://www.gmer.net/
-LogVerbiage=Manually scanned for rootkit activity.
-Author=FoolishTech
-LastEditDate=2/7/2014 9:54:39 AM
-AppDLPage=http://www.gmer.net/
-AppDesc=Rootkit / Malware Scanner
-NonDirectURLs=0
-AutoFlag=0
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/GPU-Z Report.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/GPU-Z Report.cfg
deleted file mode 100644
index c17fdc0e..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/GPU-Z Report.cfg
+++ /dev/null
@@ -1,37 +0,0 @@
-[Config]
-Author=Proctor Foolish IT
-LastEditDate=3/2/2016 5:09:19 PM
-PostRunApp=
-AppWebsite=https://www.techpowerup.com/gpuz/
-AppDesc=Reported on Graphis Adapter Information
-LogVerbiage=Reviewed hardware information of the system.
-UseFTPServer=0
-AppURL=https://www.techpowerup.com/downloads/2627/techpowerup-gpu-z-v0-8-7/start?server=6
-AppDLName=GPU-Z.exe
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsToMalwareLogs=0
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=1
-AppParms=-dump gpu-z.xml
-SnatchReportsLoc=gpu-z.xml
-App=GPU-Z.exe
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/GPU-Z.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/GPU-Z.cfg
deleted file mode 100644
index fdfe4d6f..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/GPU-Z.cfg
+++ /dev/null
@@ -1,35 +0,0 @@
-[Config]
-Author=Proctor Foolish IT
-LastEditDate=3/2/2016 4:24:41 PM
-PostRunApp=GPU-Z Report
-AppWebsite=https://www.techpowerup.com/gpuz/
-App64=GPU-Z.exe
-UseFTPServer=0
-AppURL=https://www.techpowerup.com/downloads/2627/techpowerup-gpu-z-v0-8-7/start?server=6
-AppDLName=GPU-Z.exe
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=1
-AppDesc=Review Graphis Adapter Information
-LogVerbiage=Reviewed hardware information of the system.
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Google Chrome Software Removal Tool.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Google Chrome Software Removal Tool.cfg
deleted file mode 100644
index 6796bd7a..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Google Chrome Software Removal Tool.cfg
+++ /dev/null
@@ -1,36 +0,0 @@
-[Config]
-LastEditDate=10/13/2014 6:35:14 AM
-PostRunApp=
-AppWebsite=https://support.google.com/chrome/answer/6086368?p=ui_software_removal_tool&rd=1
-AppDLPage=https://www.google.com/chrome/srt/
-App=software_removal_tool.exe
-UseFTPServer=0
-AppURL=https://dl.google.com/dl/softwareremovaltool/win/software_removal_tool.exe
-AppDLName=software_removal_tool.exe
-AlwaysAttemptDownload=1
-DLafterXdays=0
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-Author=FoolishTech
-AppDesc=Remove add-ons, extensions, toolbars, and other software that may interfere with the operation of Google Chrome.
-LogVerbiage=Scanned for and removed any toolbars/extensions/add-ons that may interfere with the operation of Google Chrome.
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/HeavyLoad.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/HeavyLoad.cfg
deleted file mode 100644
index 63e6354f..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/HeavyLoad.cfg
+++ /dev/null
@@ -1,39 +0,0 @@
-[Config]
-Author=Foolish IT
-LastEditDate=3/30/2016 11:11:09 AM
-PostRunApp=
-AppWebsite=https://www.jam-software.de/heavyload/
-AppDLPage=https://www.jam-software.de/heavyload/
-App=HeavyLoadx86\HeavyLoad.exe
-UseFTPServer=0
-AppURL=http://www.jam-software.com/heavyload/HeavyLoad-x86.zip
-AppDLName=HeavyLoadx86.zip
-AlwaysAttemptDownload=1
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-AppURL64=http://www.jam-software.com/heavyload/HeavyLoad-x64.zip
-AppDLName64=HeavyLoadx64.zip
-App64=HeavyLoadx64\HeavyLoad.exe
-AppDesc=Stress Testing Application
-LogVerbiage=Stress Tested System
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/HitmanPro (Manual).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/HitmanPro (Manual).cfg
deleted file mode 100644
index dd2c393e..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/HitmanPro (Manual).cfg
+++ /dev/null
@@ -1,44 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=10/10/2014 4:14:36 AM
-PostRunApp=
-AppWebsite=http://www.surfright.nl/en/hitmanpro/
-AppDLPage=http://www.surfright.nl/en/downloads/
-AppDesc=Malware scanner (Manual removal)
-App=HitmanPro.exe
-App64=HitmanPro_x64.exe
-AppParms=/noinstall /excludelist="%3rdpath%\HMP_Excludes.txt" /log="%malreportdir%\HitmanPro_Scan_Log_%date%.txt"
-AppURL64=http://dl.surfright.nl/HitmanPro_x64.exe
-AppURL64B=http://dl.surfright.nl/FoolishIT/HitmanPro_x64.exe
-AppDLName64=HitmanPro_x64.exe
-UseFTPServer=0
-AppURL=http://dl.surfright.nl/HitmanPro.exe
-AppURLB=http://dl.surfright.nl/FoolishIT/HitmanPro.exe
-AppDLName=HitmanPro.exe
-AlwaysAttemptDownload=1
-DLafterXdays=4
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=1
-AppWaitTime=60
-AppRandomize=1
-CopyConfigFirst=HMP.cmd
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Ran Malware Scans and manually investigated results (HitmanPro)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/HitmanPro.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/HitmanPro.cfg
deleted file mode 100644
index 9a9655ed..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/HitmanPro.cfg
+++ /dev/null
@@ -1,45 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=7/13/2015 10:52:20 AM
-PostRunApp=
-AppWebsite=http://www.surfright.nl/en/hitmanpro/
-AppDLPage=http://www.surfright.nl/en/downloads/
-AppDesc=Malware scanner
-App=HitmanPro.exe
-App64=HitmanPro_x64.exe
-AppParms=/clean /noinstall /excludelist="%3rdpath%\HMP_Excludes.txt" /log="%malreportdir%\HitmanPro_Scan_Log_%date%.txt"
-AppURL64=http://dl.surfright.nl/HitmanPro_x64.exe
-AppURL64B=http://dl.surfright.nl/FoolishIT/HitmanPro_x64.exe
-AppDLName64=HitmanPro_x64.exe
-UseFTPServer=0
-AppURL=http://dl.surfright.nl/HitmanPro.exe
-AppURLB=http://dl.surfright.nl/FoolishIT/HitmanPro.exe
-AppDLName=HitmanPro.exe
-AlwaysAttemptDownload=1
-DLafterXdays=3
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=1
-AppWaitTime=60
-AppRandomize=1
-CopyConfigFirst=HMP.cmd
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Ran Malware Scans (HitmanPro)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=1
-LastDownload=10/7/2018
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/JRT.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/JRT.cfg
deleted file mode 100644
index e2e0776d..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/JRT.cfg
+++ /dev/null
@@ -1,42 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=7/13/2015 9:38:52 AM
-PostRunApp=
-AppWebsite=http://thisisudax.org/
-AppDLPage=http://thisisudax.org/
-AppDesc=Junkware Removal Tool - toolbar remover.
-App=JRT.exe
-AppParms=-y -om1 -nr
-UseFTPServer=0
-AppURL=http://thisisudax.org/downloads/JRT.exe
-AppDLName=JRT.exe
-AlwaysAttemptDownload=1
-DLafterXdays=1
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-CopyConfigFirst=JRT_Auto.cmd
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsLoc=%userprofile%\Desktop\JRT.txt
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Removed unnecessary internet browser add-ins (e.g. Toolbars) [JRT]
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=1
-WaitOnProcesses=wget.dat,jq.dat,nircmd.dat,sed.dat,grep.dat,cut.dat,reg.exe
-LastDownload=8/19/2018
-AppWaitTime=30
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Kaspersky TDSSKiller (Silent).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Kaspersky TDSSKiller (Silent).cfg
deleted file mode 100644
index 4b1a5000..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Kaspersky TDSSKiller (Silent).cfg
+++ /dev/null
@@ -1,35 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=5/27/2014 1:45:37 PM
-AppWebsite=http://support.kaspersky.com/5350
-AppDLPage=http://support.kaspersky.com/viruses/disinfection/5350
-AppDesc=TDSS / Rootkit scanner
-App=TDSSKiller.exe
-AppParms=-accepteula -accepteulaksn -l "%malreportdir%\TDSSKiller_Report_%date%.txt" -tdlfs -dcexact -silent
-UseFTPServer=0
-AppURL=http://media.kaspersky.com/utilities/VirusUtilities/EN/tdsskiller.exe
-AppDLName=tdsskiller.exe
-AlwaysAttemptDownload=1
-DLafterXdays=3
-AppWait=1
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=1
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Scanned for MBR infections / rootkits (TDSSKiller)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=2
-LastDownload=10/7/2018
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Kaspersky TDSSKiller.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Kaspersky TDSSKiller.cfg
deleted file mode 100644
index f59338ad..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Kaspersky TDSSKiller.cfg
+++ /dev/null
@@ -1,35 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=5/27/2014 1:45:26 PM
-AppWebsite=http://support.kaspersky.com/5350
-AppDLPage=http://support.kaspersky.com/viruses/disinfection/5350
-AppDesc=TDSS / Rootkit scanner
-App=TDSSKiller.exe
-AppParms=-accepteula -accepteulaksn -l "%malreportdir%\TDSSKiller_Report_%date%.txt" -tdlfs -dcexact
-UseFTPServer=0
-AppURL=http://media.kaspersky.com/utilities/VirusUtilities/EN/tdsskiller.exe
-AppDLName=tdsskiller.exe
-AlwaysAttemptDownload=1
-DLafterXdays=3
-AppWait=1
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=1
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Scanned for MBR infections / rootkits (TDSSKiller)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/KillEmAll v5.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/KillEmAll v5.cfg
deleted file mode 100644
index 05b5991b..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/KillEmAll v5.cfg
+++ /dev/null
@@ -1,36 +0,0 @@
-[Config]
-Author=Foolish IT
-LastEditDate=1/28/2016 3:33:42 PM
-PostRunApp=
-AppWebsite=https://www.foolishit.com/d7x/killemall/
-AppDLPage=https://www.foolishit.com/d7x/killemall/
-UseFTPServer=0
-AppURL=http://download.foolishit.com/killemall/KillEmAll_Portable.zip
-AppDLName=KillEmAll_Portable.zip
-AlwaysAttemptDownload=1
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-App=KillEmAll_Portable\KillEmAll.exe
-AutoFlag=0
-AppDesc=Kills non-essential processes
-LastDownload=5/17/2016
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/MBRCheck (Offline).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/MBRCheck (Offline).cfg
deleted file mode 100644
index 5c521f98..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/MBRCheck (Offline).cfg
+++ /dev/null
@@ -1,36 +0,0 @@
-[Config]
-DisableCloudShare=0
-App=MBRCheck.exe
-AppURL=http://ad13.geekstogo.com/MBRCheck.exe
-AppDLName=MBRCheck.exe
-AlwaysAttemptDownload=1
-AppWait=1
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsLoc=%userprofile%\Desktop\MBRCheck*.txt
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-UseFTPServer=0
-DLafterXdays=7
-PriorAlert=1
-ServiceWait=0
-IsDLInstaller=0
-AppWebsite=http://www.majorgeeks.com/files/details/mbrcheck.html
-LogVerbiage=Checked MBR for infections.
-Author=FoolishTech
-LastEditDate=2/7/2014 9:59:38 AM
-AppDLPage=http://www.majorgeeks.com/files/details/mbrcheck.html
-AppDesc=MBR scanner, this profile is intended to be used from the Offline Operations page.
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/MBRCheck (Report Only).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/MBRCheck (Report Only).cfg
deleted file mode 100644
index 7f897aaf..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/MBRCheck (Report Only).cfg
+++ /dev/null
@@ -1,38 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=9/28/2014 4:13:43 PM
-PostRunApp=Autoruns_Copy
-AppWebsite=http://www.majorgeeks.com/files/details/mbrcheck.html
-AppDLPage=http://www.majorgeeks.com/files/details/mbrcheck.html
-AppDesc=MBR scanner - use as a second opinion, not reliable especially to repair any damage.
-App=MBRCheck.exe
-UseFTPServer=0
-AppURL=http://ad13.geekstogo.com/MBRCheck.exe
-AppDLName=MBRCheck.exe
-AlwaysAttemptDownload=1
-DLafterXdays=7
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=1
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsLoc=%userprofile%\Desktop\MBRCheck*.txt
-SnatchReportsToMalwareLogs=1
-RunInCMD=1
-SendEnter=1
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Checked MBR for infections.
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=2
-LastDownload=9/28/2014
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/MBRCheck.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/MBRCheck.cfg
deleted file mode 100644
index 4bb5e8a5..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/MBRCheck.cfg
+++ /dev/null
@@ -1,36 +0,0 @@
-[Config]
-DisableCloudShare=0
-App=MBRCheck.exe
-AppURL=http://ad13.geekstogo.com/MBRCheck.exe
-AppDLName=MBRCheck.exe
-AlwaysAttemptDownload=1
-AppWait=1
-AppMsgBox=0
-AppRandomize=1
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsLoc=%userprofile%\Desktop\MBRCheck*.txt
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-UseFTPServer=0
-DLafterXdays=7
-PriorAlert=1
-ServiceWait=0
-IsDLInstaller=0
-AppWebsite=http://www.majorgeeks.com/files/details/mbrcheck.html
-LogVerbiage=Checked MBR for infections.
-Author=FoolishTech
-LastEditDate=2/7/2014 10:00:33 AM
-AppDLPage=http://www.majorgeeks.com/files/details/mbrcheck.html
-AppDesc=MBR scanner - use as a second opinion, not reliable especially to repair any damage.
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/MS Office Config Analyzer Tool (Install).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/MS Office Config Analyzer Tool (Install).cfg
deleted file mode 100644
index 2bc228a2..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/MS Office Config Analyzer Tool (Install).cfg
+++ /dev/null
@@ -1,35 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=2/8/2014 1:17:11 AM
-AppWebsite=http://support.microsoft.com/kb/2812744
-AppDLPage=http://www.microsoft.com/en-us/download/details.aspx?id=36852
-AppDesc=Fixes a wide variety of issues with Microsoft Office - Installer version
-App=%programfiles(x86)%\Microsoft OffCAT\OffCAT.exe
-UseFTPServer=0
-InstallerParms=/passive
-InstallerName=OffCAT.msi
-AppURL=http://go.microsoft.com/fwlink/?LinkID=286211
-AppDLName=OffCAT.msi
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=1
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/MS Office Config Analyzer Tool (Portable).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/MS Office Config Analyzer Tool (Portable).cfg
deleted file mode 100644
index 85b483e6..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/MS Office Config Analyzer Tool (Portable).cfg
+++ /dev/null
@@ -1,32 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=2/8/2014 1:17:02 AM
-AppWebsite=http://support.microsoft.com/kb/2812744
-AppDLPage=http://www.microsoft.com/en-us/download/details.aspx?id=36852
-AppDesc=Fixes a wide variety of issues with Microsoft Office - Portable Version
-App=OffCAT\OffCAT.exe
-UseFTPServer=0
-AppURL=http://go.microsoft.com/fwlink/?LinkID=286208
-AppDLName=OffCAT.zip
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/MalwareBytes Anti-Rootkit.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/MalwareBytes Anti-Rootkit.cfg
deleted file mode 100644
index 342f6fcd..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/MalwareBytes Anti-Rootkit.cfg
+++ /dev/null
@@ -1,37 +0,0 @@
-[Config]
-DisableCloudShare=0
-App=mbar\mbar\mbar.exe
-AppURL=http://downloads.malwarebytes.org/file/mbar
-AppDLName=mbar.7z
-AlwaysAttemptDownload=1
-AppWait=1
-AppMsgBox=0
-AppRandomize=1
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsToMalwareLogs=1
-RunInCMD=1
-RunWithSystemAccess=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-ServiceWait=0
-SnatchReportsLoc=%3rdpath%\system-log.txt
-IsDLInstaller=0
-Servers=1
-UseFTPServer=0
-DLafterXdays=7
-PriorAlert=1
-LogVerbiage=Scanned for MBR infections / rootkits (MBAR)
-AppWebsite=http://www.malwarebytes.org/products/mbar/
-LastDownload=11/3/2013
-NonDirectURLs=0
-WaitOnProcesses=mbar.exe
-Author=FoolishTech
-LastEditDate=2/7/2014 9:59:08 AM
-AppDLPage=http://www.malwarebytes.org/products/mbar/
-AppDesc=Rootkit scanner
-AutoFlag=0
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Malwarebytes v2.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Malwarebytes v2.cfg
deleted file mode 100644
index 624c9305..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Malwarebytes v2.cfg
+++ /dev/null
@@ -1,39 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=1/26/2015 3:38:04 PM
-PostRunApp=
-AppWebsite=http://www.malwarebytes.org/products/malwarebytes_free/
-AppDLPage=http://www.malwarebytes.org/products/malwarebytes_free/
-AppDesc=Malware scanner
-App=%programfiles(x86)%\Malwarebytes Anti-Malware\mbam.exe
-UseFTPServer=0
-InstallerParms=/silent /suppressmsgboxes /norestart /nocancel /lang=1033
-InstallerName=mbam2-setup.exe
-AppURL=http://downloads.malwarebytes.org/file/mbam/
-AppDLName=mbam2-setup.exe
-AlwaysAttemptDownload=1
-DLafterXdays=0
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=1
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsLoc=%programdata%\Malwarebytes\Malwarebytes Anti-Malware\Logs\*.xml
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=1
-LogVerbiage=Scanned for Malware (MBAM)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/McAfee Stinger (Offline).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/McAfee Stinger (Offline).cfg
deleted file mode 100644
index 6958a699..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/McAfee Stinger (Offline).cfg
+++ /dev/null
@@ -1,38 +0,0 @@
-[Config]
-DisableCloudShare=0
-App=stinger32.exe
-App64=stinger64.exe
-AppParms=--go --repair --noprocess --noregistry --scanpath=%tdrive% --reportpath="%malreportdir%"
-AppURL64=http://downloadcenter.mcafee.com/products/mcafee-avert/Stinger/stinger64.exe
-AppDLName64=stinger64.exe
-AppURL=http://downloadcenter.mcafee.com/products/mcafee-avert/Stinger/stinger32.exe
-AppDLName=stinger32.exe
-AlwaysAttemptDownload=1
-AppWait=1
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-ServiceWait=1
-AppWebsite=http://www.mcafee.com/us/downloads/free-tools/stinger.aspx
-UseFTPServer=0
-PriorAlert=1
-IsDLInstaller=0
-LogVerbiage=Ran virus scans (McAfee Stinger)
-Author=FoolishTech
-LastEditDate=2/7/2014 10:01:11 AM
-AppDLPage=http://www.mcafee.com/us/downloads/free-tools/stinger.aspx
-AppDesc=Virus scanner - meant to be used from the Offline Operations tab.
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/McAfee Stinger (Silent).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/McAfee Stinger (Silent).cfg
deleted file mode 100644
index 3c6918ee..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/McAfee Stinger (Silent).cfg
+++ /dev/null
@@ -1,37 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=5/27/2014 1:47:06 PM
-AppWebsite=http://www.mcafee.com/us/downloads/free-tools/stinger.aspx
-AppDLPage=http://www.mcafee.com/us/downloads/free-tools/stinger.aspx
-AppDesc=Virus scanner
-App=stinger32.exe
-App64=stinger64.exe
-AppParms=--silent --go --repair --adl --reportpath="%malreportdir%"
-AppURL64=http://downloadcenter.mcafee.com/products/mcafee-avert/Stinger/stinger64.exe
-AppDLName64=stinger64.exe
-UseFTPServer=0
-AppURL=http://downloadcenter.mcafee.com/products/mcafee-avert/Stinger/stinger32.exe
-AppDLName=stinger32.exe
-AlwaysAttemptDownload=1
-DLafterXdays=3
-AppWait=1
-PriorAlert=0
-ServiceWait=1
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Ran virus scans (McAfee Stinger)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=2
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/McAfee Stinger (Silent-Offline).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/McAfee Stinger (Silent-Offline).cfg
deleted file mode 100644
index c41cb0b3..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/McAfee Stinger (Silent-Offline).cfg
+++ /dev/null
@@ -1,38 +0,0 @@
-[Config]
-DisableCloudShare=0
-AppWebsite=http://www.mcafee.com/us/downloads/free-tools/stinger.aspx
-App=stinger32.exe
-App64=stinger64.exe
-AppParms=--silent --go --repair --noprocess --noregistry --scanpath=%tdrive% --reportpath="%malreportdir%"
-AppURL64=http://downloadcenter.mcafee.com/products/mcafee-avert/Stinger/stinger64.exe
-AppDLName64=stinger64.exe
-UseFTPServer=0
-AppURL=http://downloadcenter.mcafee.com/products/mcafee-avert/Stinger/stinger32.exe
-AppDLName=stinger32.exe
-AlwaysAttemptDownload=1
-AppWait=1
-PriorAlert=0
-ServiceWait=1
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Ran virus scans (McAfee Stinger)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-Author=FoolishTech
-LastEditDate=2/7/2014 10:01:42 AM
-AppDLPage=http://www.mcafee.com/us/downloads/free-tools/stinger.aspx
-AppDesc=Virus scanner - meant to be used from the Offline Operations tab.
-NonDirectURLs=0
-AutoFlag=2
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/McAfee Stinger.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/McAfee Stinger.cfg
deleted file mode 100644
index 9d2cb718..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/McAfee Stinger.cfg
+++ /dev/null
@@ -1,38 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=5/27/2014 1:46:41 PM
-AppWebsite=http://www.mcafee.com/us/downloads/free-tools/stinger.aspx
-AppDLPage=http://www.mcafee.com/us/downloads/free-tools/stinger.aspx
-AppDesc=Virus scanner
-App=stinger32.exe
-App64=stinger64.exe
-AppParms=--go --repair --adl --reportpath="%malreportdir%"
-AppURL64=http://downloadcenter.mcafee.com/products/mcafee-avert/Stinger/stinger64.exe
-AppDLName64=stinger64.exe
-UseFTPServer=0
-AppURL=http://downloadcenter.mcafee.com/products/mcafee-avert/Stinger/stinger32.exe
-AppDLName=stinger32.exe
-AlwaysAttemptDownload=1
-DLafterXdays=3
-AppWait=1
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Ran virus scans (McAfee Stinger)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Microsoft .NET Framework Repair Tool.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Microsoft .NET Framework Repair Tool.cfg
deleted file mode 100644
index e7f181da..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Microsoft .NET Framework Repair Tool.cfg
+++ /dev/null
@@ -1,35 +0,0 @@
-[Config]
-Author=Microsoft
-LastEditDate=6/20/2016 2:00:27 PM
-PostRunApp=
-AppWebsite=https://support.microsoft.com/en-us/kb/2698555
-AppDLPage=http://go.microsoft.com/fwlink/?LinkID=246062
-App=NetFxRepairTool.exe
-UseFTPServer=0
-AppURL=https://download.microsoft.com/download/2/B/D/2BDE5459-2225-48B8-830C-AE19CAF038F1/NetFxRepairTool.exe
-AlwaysAttemptDownload=0
-DLafterXdays=30
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=1
-LastDownload=6/20/2016
-AppDLName=NetFxRepairTool.exe
-AutoFlag=0
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Microsoft FixIt Portable.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Microsoft FixIt Portable.cfg
deleted file mode 100644
index cc0f0ba8..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Microsoft FixIt Portable.cfg
+++ /dev/null
@@ -1,34 +0,0 @@
-[Config]
-LastEditDate=2/8/2014 12:42:30 AM
-AppWebsite=www.microsoft.com
-AppDLPage=http://go.microsoft.com/?linkid=9775982
-AppDesc=Fix a wide variety of Windows issues all in one portable MS FixIT
-App=MicrosoftFixit-portable.exe
-UseFTPServer=0
-AppURL=http://download.microsoft.com/download/E/2/3/E237A32D-E0A9-4863-B864-9E820C1C6F9A/MicrosoftFixit-portable.exe
-AppDLName=MicrosoftFixit-portable.exe
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Fixed misc. broken Windows functions with %app%
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=0
-NonDirectURLs=0
-Author=FoolishTech
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Microsoft FixIt Win Update (Auto).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Microsoft FixIt Win Update (Auto).cfg
deleted file mode 100644
index c2013713..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Microsoft FixIt Win Update (Auto).cfg
+++ /dev/null
@@ -1,34 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=2/8/2014 1:20:09 AM
-AppWebsite=http://support.microsoft.com/kb/971058/en-US
-AppDLPage=http://go.microsoft.com/?linkid=9665683
-AppDesc=MS FixIt 50202 fixes issues with Windows Update - This will reboot!
-App=MicrosoftFixIt50202.msi
-AppParms=/passive
-UseFTPServer=0
-AppURL=http://go.microsoft.com/?linkid=9665683
-AppDLName=MicrosoftFixIt50202.msi
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-LastDownload=10/27/2017
-AutoFlag=1
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Microsoft FixIt Winsock (Auto).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Microsoft FixIt Winsock (Auto).cfg
deleted file mode 100644
index 604ce04c..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Microsoft FixIt Winsock (Auto).cfg
+++ /dev/null
@@ -1,34 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=2/8/2014 1:03:54 AM
-AppWebsite=http://support.microsoft.com/kb/811259
-AppDLPage=http://go.microsoft.com/?linkid=9662461
-AppDesc=Microsoft FixIt 50203 fixes Winsock corruption issues - This will reboot!
-App=MicrosoftFixit50203.msi
-AppParms=/passive
-UseFTPServer=0
-AppURL=http://go.microsoft.com/?linkid=9662461
-AppDLName=MicrosoftFixit50203.msi
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=1
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Microsoft Safety Scanner.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Microsoft Safety Scanner.cfg
deleted file mode 100644
index 0b92f8e3..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Microsoft Safety Scanner.cfg
+++ /dev/null
@@ -1,38 +0,0 @@
-[Config]
-Author=Microsoft
-LastEditDate=7/11/2016 1:23:26 PM
-PostRunApp=
-AppWebsite=https://www.microsoft.com/security/scanner/en-us/default.aspx
-AppDLPage=https://www.microsoft.com/security/scanner/en-us/default.aspx
-App=msert.exe
-App64=msert.exe
-AppURL64=http://definitionupdates.microsoft.com/download/definitionupdates/safetyscanner/amd64/msert.exe
-AppDLName64=msert.exe
-UseFTPServer=0
-AppURL=http://definitionupdates.microsoft.com/download/definitionupdates/safetyscanner/x86/msert.exe
-AppDLName=msert.exe
-AlwaysAttemptDownload=1
-DLafterXdays=9
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=7/11/2016
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Neutron (Sync Time).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Neutron (Sync Time).cfg
deleted file mode 100644
index 41d9c8d2..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Neutron (Sync Time).cfg
+++ /dev/null
@@ -1,35 +0,0 @@
-[Config]
-DisableCloudShare=0
-AppWebsite=http://keir.net/neutron.html
-App=neutron\Neutron.exe
-UseFTPServer=0
-AppURL=http://keir.net/download/neutron.zip
-AppDLName=neutron.zip
-AlwaysAttemptDownload=0
-AppWait=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-CopyConfigFirst=neutron.ini
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-PriorAlert=0
-LogVerbiage=Synced Windows time with the atomic clock.
-Author=FoolishTech
-LastEditDate=2/7/2014 10:03:42 AM
-AppDLPage=http://keir.net/neutron.html
-AppDesc=Sync time with an internet time server
-NonDirectURLs=0
-AutoFlag=1
-LastDownload=10/8/2018
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/OTL.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/OTL.cfg
deleted file mode 100644
index aad5fad7..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/OTL.cfg
+++ /dev/null
@@ -1,34 +0,0 @@
-[Config]
-App=OTL.exe
-AppURL=http://oldtimer.geekstogo.com/OTL.exe
-AppDLName=OTL.exe
-AppWait=1
-AppMsgBox=0
-AppRandomize=1
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-DisableCloudShare=0
-UseFTPServer=0
-AlwaysAttemptDownload=1
-DLafterXdays=7
-PriorAlert=1
-ServiceWait=0
-SaveConfigAfter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-AppWebsite=http://www.geekstogo.com/forum/topic/277391-otl-tutorial-how-to-use-oldtimer-listit/
-LogVerbiage=Performed manual inspection for viruses/malware.
-Author=FoolishTech
-LastEditDate=2/7/2014 10:05:19 AM
-AppDLPage=http://www.geekstogo.com/forum/topic/277391-otl-tutorial-how-to-use-oldtimer-listit/
-AppDesc=Malware scanner and startup manager.
-NonDirectURLs=0
-AutoFlag=0
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/OpenHardwareMonitor.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/OpenHardwareMonitor.cfg
deleted file mode 100644
index 63170062..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/OpenHardwareMonitor.cfg
+++ /dev/null
@@ -1,34 +0,0 @@
-[Config]
-DisableCloudShare=0
-App=openhardwaremonitor\OpenHardwareMonitor\OpenHardwareMonitor.exe
-AppURL=http://openhardwaremonitor.org/files/openhardwaremonitor-v0.6.0-beta.zip
-AppDLName=openhardwaremonitor.zip
-AlwaysAttemptDownload=0
-AppWait=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=0
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-AppWebsite=http://openhardwaremonitor.org/
-UseFTPServer=0
-PriorAlert=0
-LogVerbiage=Checked hardware temperatures / fan speeds.
-Author=FoolishTech
-LastEditDate=2/7/2014 10:04:27 AM
-AppDLPage=http://openhardwaremonitor.org/downloads/
-AppDesc=Detailed hardware information
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Opened Files View.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Opened Files View.cfg
deleted file mode 100644
index b7aa3a54..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Opened Files View.cfg
+++ /dev/null
@@ -1,42 +0,0 @@
-[Config]
-Author=dSupportOnline
-LastEditDate=10/29/2014 9:41:55 AM
-PostRunApp=
-AppWebsite=http://www.nirsoft.net/utils/opened_files_view.html
-AppDLPage=http://www.nirsoft.net/utils/opened_files_view.html
-AppDesc=Shows currently opened files in use by the system
-App=ofview\OpenedFilesView.exe
-App64=ofview-x64\OpenedFilesView.exe
-AppURL64=http://www.nirsoft.net/utils/ofview-x64.zip
-AppDLName64=ofview-x64.zip
-AppURLSpoof=http://www.nirsoft.net/utils/opened_files_view.html
-UseFTPServer=0
-AppURL=http://www.nirsoft.net/utils/ofview.zip
-AppDLName=ofview.zip
-AlwaysAttemptDownload=1
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=1
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Detected currently open files and manipulated as necessary.
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
-CopyConfigFirst=OpenedFilesView.cfg
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/OpenedFilesView.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/OpenedFilesView.cfg
deleted file mode 100644
index 9b86f336..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/OpenedFilesView.cfg
+++ /dev/null
@@ -1,24 +0,0 @@
-[General]
-ToolTipTimeAutoPop=-1
-ToolTipTimeInitial=10
-ToolTipTimeReshow=10
-TrayIcon=0
-ShowGridLines=0
-ShowOpenedFiles=1
-ShowOpenedDirectories=0
-ShowNetworkFiles=0
-SortOnRefresh=0
-HideWindowsFiles=0
-HideSystemProcessFiles=0
-HideSvchostFiles=0
-AddExportHeaderLine=0
-ShowInfoTip=1
-AutoRefresh=0
-SaveFilterIndex=0
-ConvertToLongPath=0
-MarkModifiedFilenames=1
-MarkPositionChange=1
-MarkOddEvenRows=0
-WinPos=2C 00 00 00 00 00 00 00 01 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 00 00 00 00 00 00 00 00 80 02 00 00 E0 01 00 00
-Columns=82 00 00 00 2C 01 01 00 3C 00 02 00 78 00 03 00 78 00 04 00 46 00 05 00 64 00 06 00 3C 00 07 00 3C 00 08 00 3C 00 09 00 3C 00 0A 00 3C 00 0B 00 3C 00 0C 00 50 00 0D 00 50 00 0E 00 50 00 0F 00 78 00 10 00 FA 00 11 00 50 00 12 00 50 00 13 00
-Sort=0
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/PatchMyPC (Auto).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/PatchMyPC (Auto).cfg
deleted file mode 100644
index debc4dc2..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/PatchMyPC (Auto).cfg
+++ /dev/null
@@ -1,37 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=5/27/2014 1:45:01 PM
-AppWebsite=www.patchmypc.net
-AppDLPage=www.patchmypc.net
-AppDesc=Windows and misc application updater
-App=PatchMyPC.exe
-AppParms=/auto /update
-UseFTPServer=0
-AppURL=https://patchmypc.net/freeupdater/PatchMyPC.exe
-AppDLName=PatchMyPC.exe
-AlwaysAttemptDownload=1
-DLafterXdays=3
-AppWait=1
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-CopyConfigFirst=PatchMyPC.reg
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsLoc=%systemdrive%\%computername%.rtf
-SnatchReportsToMalwareLogs=0
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Installed updates Windows and commonly used applications.
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=1
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/PatchMyPC.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/PatchMyPC.cfg
deleted file mode 100644
index 9c19d3f4..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/PatchMyPC.cfg
+++ /dev/null
@@ -1,37 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=5/27/2014 1:44:22 PM
-AppWebsite=www.patchmypc.net
-AppDLPage=www.patchmypc.net
-AppDesc=Windows and misc application updater
-App=PatchMyPC.exe
-UseFTPServer=0
-AppURL=http://www.patchmypc.net/PatchMyPC.exe
-AppDLName=PatchMyPC.exe
-AlwaysAttemptDownload=1
-DLafterXdays=3
-AppWait=1
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-CopyConfigFirst=PatchMyPC.reg
-ExportRegAfter=HKLM\Software\Patch My PC\Options
-SaveConfigAfter=1
-MoveSnatchReports=1
-SnatchReportsLoc=%systemdrive%\%computername%.rtf
-SnatchReportsToMalwareLogs=0
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Installed updates Windows and commonly used applications.
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Petya Encryption Fix.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Petya Encryption Fix.cfg
deleted file mode 100644
index 01a4564a..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Petya Encryption Fix.cfg
+++ /dev/null
@@ -1,36 +0,0 @@
-[Config]
-Author=Foolish Proctor
-LastEditDate=4/13/2016 3:12:07 PM
-PostRunApp=
-AppWebsite=http://rmprepusb.blogspot.co.uk/2016/04/petya-whole-disk-encryption-fix.html
-AppDLPage=http://rmprepusb.blogspot.co.uk/2016/04/petya-whole-disk-encryption-fix.html
-App=PetyaExtractor\PetyaExtractor.exe
-UseFTPServer=0
-AppURL=http://download.bleepingcomputer.com/fabian-wosar/PetyaExtractor.zip
-AppDLName=PetyaExtractor.zip
-AlwaysAttemptDownload=1
-DLafterXdays=7
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-AppDesc=Decrypt Disk with Petya malware infection
-LogVerbiage=Decrypt Disk infected with Petya malware
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Piriform CCleaner (Auto).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Piriform CCleaner (Auto).cfg
deleted file mode 100644
index dafd8912..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Piriform CCleaner (Auto).cfg
+++ /dev/null
@@ -1,38 +0,0 @@
-[Config]
-App=ccleaner\CCleaner.exe
-App64=ccleaner\CCleaner64.exe
-AppParms=/auto
-AppURL=http://www.piriform.com/ccleaner/download/portable/downloadfile
-AppDLName=ccleaner.zip
-AppWait=0
-AppMsgBox=0
-AppRandomize=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-AlwaysAttemptDownload=1
-CopyConfigFirst=CCleaner.ini
-SaveConfigAfter=0
-DisableCloudShare=0
-UseFTPServer=0
-DLafterXdays=7
-PriorAlert=0
-ServiceWait=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-Servers=1
-AppWebsite=www.piriform.com/ccleaner
-LogVerbiage=Scanned registry for unnecessary data and removed.
-Author=FoolishTech
-LastEditDate=2/7/2014 10:06:48 AM
-AppDLPage=http://www.piriform.com/ccleaner/builds
-AppDesc=Temp file remover and registry cleaner
-NonDirectURLs=0
-AutoFlag=1
-LastDownload=8/13/2018
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Piriform CCleaner.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Piriform CCleaner.cfg
deleted file mode 100644
index dfe51f34..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Piriform CCleaner.cfg
+++ /dev/null
@@ -1,37 +0,0 @@
-[Config]
-App=ccleaner\CCleaner.exe
-App64=ccleaner\CCleaner64.exe
-AppURL=http://www.piriform.com/ccleaner/download/portable/downloadfile
-AppDLName=ccleaner.zip
-AppWait=0
-AppMsgBox=0
-AppRandomize=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-AlwaysAttemptDownload=1
-CopyConfigFirst=CCleaner.ini
-SaveConfigAfter=1
-DisableCloudShare=0
-UseFTPServer=0
-DLafterXdays=7
-PriorAlert=1
-ServiceWait=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-Servers=1
-AppWebsite=www.piriform.com/ccleaner
-LogVerbiage=Scanned registry for unnecessary data and removed.
-LastEditDate=2/7/2014 10:07:10 AM
-AppDLPage=http://www.piriform.com/ccleaner/builds
-NonDirectURLs=0
-Author=FoolishTech
-AppDesc=Temp file remover and registry cleaner
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Piriform Defraggler (Auto).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Piriform Defraggler (Auto).cfg
deleted file mode 100644
index 03e6459e..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Piriform Defraggler (Auto).cfg
+++ /dev/null
@@ -1,38 +0,0 @@
-[Config]
-App=defraggler\df.exe
-App64=defraggler\df64.exe
-AppParms=%systemdrive%
-AppURL=http://www.piriform.com/defraggler/download/portable/downloadfile
-AppDLName=defraggler.zip
-AppWait=1
-AppMsgBox=0
-AppRandomize=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-AlwaysAttemptDownload=1
-CopyConfigFirst=Defraggler.ini
-SaveConfigAfter=0
-DisableCloudShare=0
-UseFTPServer=0
-DLafterXdays=7
-PriorAlert=0
-ServiceWait=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-Servers=1
-AppWebsite=www.piriform.com/defraggler
-LogVerbiage=Defragmented file system (Defraggler)
-Author=FoolishTech
-LastEditDate=2/7/2014 10:07:50 AM
-AppDLPage=http://www.piriform.com/defraggler/builds
-AppDesc=Disk defragmenter
-NonDirectURLs=0
-AutoFlag=1
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Piriform Defraggler.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Piriform Defraggler.cfg
deleted file mode 100644
index 6ed8075f..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Piriform Defraggler.cfg
+++ /dev/null
@@ -1,37 +0,0 @@
-[Config]
-App=Defraggler\Defraggler.exe
-App64=Defraggler\Defraggler64.exe
-AppURL=http://www.piriform.com/defraggler/download/portable/downloadfile
-AppDLName=defraggler.zip
-AppWait=1
-AppMsgBox=0
-AppRandomize=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-AlwaysAttemptDownload=1
-CopyConfigFirst=Defraggler.ini
-SaveConfigAfter=1
-DisableCloudShare=0
-UseFTPServer=0
-DLafterXdays=7
-PriorAlert=1
-ServiceWait=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-Servers=1
-AppWebsite=www.piriform.com/defraggler
-LogVerbiage=Defragmented file system (Defraggler)
-Author=FoolishTech
-LastEditDate=2/7/2014 10:08:05 AM
-AppDLPage=http://www.piriform.com/defraggler/builds
-AppDesc=Disk defragmenter
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Piriform Recuva.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Piriform Recuva.cfg
deleted file mode 100644
index 90630b8a..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Piriform Recuva.cfg
+++ /dev/null
@@ -1,33 +0,0 @@
-[Config]
-DisableCloudShare=0
-App=recuva\recuva.exe
-App64=recuva\recuva64.exe
-AppURL=http://www.piriform.com/recuva/download/portable/downloadfile
-AppDLName=recuva.zip
-AlwaysAttemptDownload=0
-AppWait=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=0
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-AppWebsite=www.piriform.com/recuva
-UseFTPServer=0
-PriorAlert=0
-Author=FoolishTech
-LastEditDate=2/7/2014 10:08:40 AM
-AppDLPage=http://www.piriform.com/recuva/builds
-AppDesc=File undelete utility
-NonDirectURLs=0
-AutoFlag=0
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Piriform Speccy.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Piriform Speccy.cfg
deleted file mode 100644
index a232d7d6..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Piriform Speccy.cfg
+++ /dev/null
@@ -1,35 +0,0 @@
-[Config]
-DisableCloudShare=0
-App=speccy\Speccy.exe
-App64=speccy\Speccy64.exe
-AppURL=http://www.piriform.com/speccy/download/portable/downloadfile
-AppDLName=speccy.zip
-AlwaysAttemptDownload=0
-AppWait=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=0
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-AppWebsite=www.piriform.com/speccy
-UseFTPServer=0
-PriorAlert=0
-LogVerbiage=Gathered information on system specs.
-Author=FoolishTech
-LastEditDate=2/7/2014 10:09:08 AM
-AppDLPage=http://www.piriform.com/speccy/builds
-AppDesc=System information utility.
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/PreviousFilesRecovery.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/PreviousFilesRecovery.cfg
deleted file mode 100644
index f6a46778..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/PreviousFilesRecovery.cfg
+++ /dev/null
@@ -1,39 +0,0 @@
-[Config]
-LastEditDate=7/14/2016 4:49:58 PM
-PostRunApp=
-AppWebsite=http://www.nirsoft.net/utils/previous_files_recovery.html
-AppDLPage=http://www.nirsoft.net/utils/previous_files_recovery.html
-AppDesc=Recover Previous Files
-App=previousfilesrecovery\PreviousFilesRecovery.exe
-App64=previousfilesrecovery-x64\PreviousFilesRecovery.exe
-AppURL64=http://www.nirsoft.net/utils/previousfilesrecovery-x64.zip
-AppDLName64=previousfilesrecovery-x64.zip
-UseFTPServer=0
-AppURL=http://www.nirsoft.net/utils/previousfilesrecovery.zip
-AppDLName=previousfilesrecovery.zip
-AlwaysAttemptDownload=1
-DLafterXdays=30
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Recover Previous Files
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-Author=FoolishProctor
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/RegFromApp-x32.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/RegFromApp-x32.cfg
deleted file mode 100644
index 63b97c50..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/RegFromApp-x32.cfg
+++ /dev/null
@@ -1,39 +0,0 @@
-[Config]
-Author=dSupportOnline
-LastEditDate=10/29/2014 9:50:53 AM
-PostRunApp=
-AppWebsite=http://www.nirsoft.net/utils/reg_file_from_application.html
-AppDLPage=http://www.nirsoft.net/utils/reg_file_from_application.html
-AppDesc=Shows registry entries created by a selected process
-App=regfromapp\RegFromApp.exe
-AppURLSpoof=http://www.nirsoft.net/utils/reg_file_from_application.html
-UseFTPServer=0
-AppURL=http://www.nirsoft.net/utils/regfromapp.zip
-AppDLName=regfromapp.zip
-AlwaysAttemptDownload=1
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-CopyConfigFirst=RegFromApp.cfg
-SaveConfigAfter=1
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Detected registry entries created by 32-bit application.
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/RegFromApp-x64.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/RegFromApp-x64.cfg
deleted file mode 100644
index d8b62c75..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/RegFromApp-x64.cfg
+++ /dev/null
@@ -1,39 +0,0 @@
-[Config]
-Author=dSupportOnline
-LastEditDate=10/29/2014 9:52:31 AM
-PostRunApp=
-AppWebsite=http://www.nirsoft.net/utils/reg_file_from_application.html
-AppDLPage=http://www.nirsoft.net/utils/reg_file_from_application.html
-AppDesc=Shows registry entries created by a selected 64-bit process
-App=regfromapp-x64\RegFromApp.exe
-AppURLSpoof=http://www.nirsoft.net/utils/reg_file_from_application.html
-UseFTPServer=0
-AppURL=http://www.nirsoft.net/utils/regfromapp-x64.zip
-AppDLName=regfromapp-x64.zip
-AlwaysAttemptDownload=1
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-CopyConfigFirst=RegFromApp.cfg
-SaveConfigAfter=1
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Detected registry entries created by 64-bit application.
-32=0
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/RegFromApp.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/RegFromApp.cfg
deleted file mode 100644
index 7b7eeb26..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/RegFromApp.cfg
+++ /dev/null
@@ -1,9 +0,0 @@
-[General]
-RegFileVersion=5
-AddOnlyModifiedValues=1
-DisplayMode=1
-ProcessPath=
-ProcessParams=
-StartImmediately=0
-ListViewSortProcess=0
-WinPos=2C 00 00 00 00 00 00 00 01 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 00 00 00 00 00 00 00 00 80 02 00 00 E0 01 00 00
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Revo Uninstaller.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Revo Uninstaller.cfg
deleted file mode 100644
index bb8854dd..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Revo Uninstaller.cfg
+++ /dev/null
@@ -1,38 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=8/30/2016 3:23:42 PM
-PostRunApp=
-AppWebsite=http://www.revouninstaller.com/
-AppDLPage=http://www.revouninstaller.com/download-free-portable.php
-AppDesc=Application uninstaller and cleanup utility
-App=revouninstaller\RevoUninstaller_Portable\x86\RevoUn.exe
-App64=revouninstaller\RevoUninstaller_Portable\x64\RevoUn.exe
-UseFTPServer=0
-AppURL=http://www.revouninstaller.com/download/revouninstaller.zip
-AppDLName=revouninstaller.zip
-AlwaysAttemptDownload=1
-DLafterXdays=7
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Uninstalled unnecessary / junk programs.
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Rogue Killer.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Rogue Killer.cfg
deleted file mode 100644
index 5b2e53e4..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Rogue Killer.cfg
+++ /dev/null
@@ -1,41 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=6/19/2015 4:06:02 PM
-PostRunApp=
-AppWebsite=http://www.adlice.com/softwares/roguekiller/
-AppDLPage=http://www.adlice.com/softwares/roguekiller/
-AppDesc=Rogue malware remover.
-App=RogueKiller.exe
-App64=RogueKillerX64.exe
-AppURL64=http://download.adlice.com/RogueKiller/RogueKillerX64.exe
-AppDLName64=RogueKillerX64.exe
-UseFTPServer=0
-AppURL=http://download.adlice.com/RogueKiller/RogueKiller.exe
-AppDLName=RogueKiller.exe
-AlwaysAttemptDownload=1
-DLafterXdays=3
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=1
-ServiceWait=1
-AppMsgBox=0
-AppRandomize=1
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsLoc=%programdata%\RogueKiller\Logs\RKreport*.txt
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Scanned for rogue applications and malware (RogueKiller)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=0
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=6/19/2015
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/ShadowCopyView.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/ShadowCopyView.cfg
deleted file mode 100644
index 0a4a6159..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/ShadowCopyView.cfg
+++ /dev/null
@@ -1,39 +0,0 @@
-[Config]
-Author=Proctor Foolish IT LLC
-LastEditDate=6/27/2016 9:46:36 AM
-PostRunApp=
-AppWebsite=http://www.nirsoft.net/utils/shadow_copy_view.html
-AppDLPage=http://www.nirsoft.net/utils/shadow_copy_view.html
-App=shadowcopyview\ShadowCopyView.exe
-App64=shadowcopyview-x64\ShadowCopyView.exe
-AppURL64=http://www.nirsoft.net/utils/shadowcopyview-x64.zip
-AppDLName64=shadowcopyview-x64.zip
-UseFTPServer=0
-AppURL=http://www.nirsoft.net/utils/shadowcopyview.zip
-AppDLName=shadowcopyview.zip
-AlwaysAttemptDownload=1
-DLafterXdays=30
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AppDesc=Manage Shadow Copy files
-LogVerbiage=Manage Shadow Copy files
-LastDownload=6/27/2016
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Should I Remove It (Uninstall).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Should I Remove It (Uninstall).cfg
deleted file mode 100644
index b2546e6e..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Should I Remove It (Uninstall).cfg
+++ /dev/null
@@ -1,33 +0,0 @@
-[Config]
-Author=dSupportOnline
-LastEditDate=10/9/2014 1:41:32 PM
-PostRunApp=
-AppWebsite=http://www.shouldiremoveit.com
-App=%WINDIR%\System32\MsiExec.exe
-App64=%WINDIR%\SysWow64\MsiExec.exe
-AppParms=/X{4E62123C-4C0D-4123-A8A2-C0103B92D7EA} /qn
-UseFTPServer=0
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=0
-NonDirectURLs=0
-AutoFlag=1
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Should I Remove It.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Should I Remove It.cfg
deleted file mode 100644
index 15f9227b..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Should I Remove It.cfg
+++ /dev/null
@@ -1,39 +0,0 @@
-[Config]
-LastEditDate=10/9/2014 2:12:59 PM
-AppWebsite=http://www.shouldiremoveit.com
-AppDLPage=http://www.shouldiremoveit.com/download.aspx
-UseFTPServer=0
-InstallerParms=/qn
-InstallerName=ShouldIRemoveIt_Setup.exe
-AppURL=http://www.shouldiremoveit.com/installers/ShouldIRemoveIt_Setup.exe
-AppDLName=ShouldIRemoveIt_Setup.exe
-AlwaysAttemptDownload=1
-DLafterXdays=5
-AppWait=1
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=1
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=0
-NonDirectURLs=0
-App=%programfiles(x86)%\Reason\Should I Remove It\ShouldIRemoveIt.exe
-Author=dSupportOnline
-PostRunApp=Should I Remove It (Uninstall)
-EmailBeforeExecution=0
-SendEnter=0
-AutoFlag=0
-LastDownload=10/27/2017
-AppDesc=Crowdsource installed programs to determine if they are malicious.
-LogVerbiage=Verified installed programs against crowdsource rating system.
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Sophos Virus Removal Tool.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Sophos Virus Removal Tool.cfg
deleted file mode 100644
index 068fb155..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Sophos Virus Removal Tool.cfg
+++ /dev/null
@@ -1,39 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=3/30/2016 11:12:26 AM
-PostRunApp=
-AppWebsite=http://www.sophos.com/en-us/products/free-tools/virus-removal-tool/download.aspx
-AppDLPage=http://www.sophos.com/en-us/products/free-tools/virus-removal-tool/download.aspx
-AppDesc=Virus scanner
-App=%programfiles(x86)%\Sophos\Sophos Virus Removal Tool\SVRTcli.exe
-AppParms=-reboot -uninstall -yes
-UseFTPServer=0
-InstallerName=SophosVRT.exe
-AppURL=http://downloads.sophos.com/tools/withides/Sophos%20Virus%20Removal%20Tool.exe
-AppDLName=SophosVRT.exe
-AlwaysAttemptDownload=1
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsLoc=%programdata%\Sophos\Sophos Virus Removal Tool\Logs\SophosVirusRemovalTool.log
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=1
-LogVerbiage=Scanned for viruses/malware (Sophos)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=1
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/SpaceSniffer.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/SpaceSniffer.cfg
deleted file mode 100644
index bb28d717..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/SpaceSniffer.cfg
+++ /dev/null
@@ -1,33 +0,0 @@
-[Config]
-DisableCloudShare=0
-App=spacesniffer_1_1_4_0\SpaceSniffer.exe
-AppURL=http://www.uderzo.it/main_products/space_sniffer/files/spacesniffer_1_1_4_0.zip
-AppDLName=spacesniffer_1_1_4_0.zip
-AlwaysAttemptDownload=0
-AppWait=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=0
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-AppWebsite=www.uderzo.it/main_products/space_sniffer
-UseFTPServer=0
-PriorAlert=0
-Author=FoolishTech
-LastEditDate=2/7/2014 10:13:36 AM
-AppDLPage=www.uderzo.it/main_products/space_sniffer
-AppDesc=Useful to determine where all your disk space is being used!
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/StartUpLite.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/StartUpLite.cfg
deleted file mode 100644
index 03069aff..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/StartUpLite.cfg
+++ /dev/null
@@ -1,35 +0,0 @@
-[Config]
-App=StartUpLite.exe
-AppURL=http://www.malwarebytes.org/StartUpLite.exe
-AppDLName=StartUpLite.exe
-AppWait=1
-AppMsgBox=0
-AppRandomize=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-DisableCloudShare=0
-UseFTPServer=0
-AlwaysAttemptDownload=1
-DLafterXdays=7
-PriorAlert=1
-ServiceWait=0
-SaveConfigAfter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-AppWebsite=http://www.malwarebytes.org/products/startuplite/
-LogVerbiage=Removed unnecessary Windows startup entries.
-Author=FoolishTech
-LastEditDate=2/7/2014 10:14:03 AM
-AppDLPage=http://www.malwarebytes.org/products/startuplite/
-AppDesc=Startup entry manager by MalwareBytes
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/SuperAntiSpyware.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/SuperAntiSpyware.cfg
deleted file mode 100644
index e0d9b14b..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/SuperAntiSpyware.cfg
+++ /dev/null
@@ -1,36 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=5/27/2014 1:48:26 PM
-AppWebsite=http://www.superantispyware.com/
-AppDLPage=http://www.superantispyware.com/downloadfile.html?productid=SUPERANTISPYWAREFREE
-AppDesc=Malware scanner
-App=sas.com
-AppURLSpoof=
-UseFTPServer=0
-AppURL=http://www.superantispyware.com/sasportable.php
-AppDLName=sas.com
-AlwaysAttemptDownload=1
-DLafterXdays=3
-AppWait=1
-WaitOnProcesses=program.com;program64.com;superantispyware.exe
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=1
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsLoc=%temp%\SAS_SelfExtract\Logs\SUPERAntiSpyware*.log
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Scanned for ad/spy/malware (SAS)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Svchost Process Analyzer.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Svchost Process Analyzer.cfg
deleted file mode 100644
index 862cc4d3..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Svchost Process Analyzer.cfg
+++ /dev/null
@@ -1,37 +0,0 @@
-[Config]
-Author=Foolish IT
-LastEditDate=3/30/2016 11:16:04 AM
-PostRunApp=
-AppWebsite=http://www.neuber.com/free/svchost-analyzer/
-AppDLPage=http://www.neuber.com/free/svchost-analyzer/
-AppDesc=Analyze svchost checking for malware
-App=SvchostAnalyzer.exe
-UseFTPServer=0
-AppURL=http://www.neuber.com/download/SvchostAnalyzer.exe
-AppDLName=SvchostAnalyzer.exe
-AlwaysAttemptDownload=1
-DLafterXdays=30
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Checking for malware by analyzing svchost
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=3/30/2016
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Sysinternals PageDefrag (XP).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Sysinternals PageDefrag (XP).cfg
deleted file mode 100644
index d81eb31a..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Sysinternals PageDefrag (XP).cfg
+++ /dev/null
@@ -1,36 +0,0 @@
-[Config]
-DisableCloudShare=0
-App=pagedfrg.exe
-AppURL=http://live.sysinternals.com/pagedfrg.exe
-AppDLName=pagedfrg.exe
-AlwaysAttemptDownload=0
-AppWait=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=0
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=0
-XP=1
-Vista=0
-7=0
-8=0
-Servers=0
-AppParms=-o
-CopyConfigFirst=pagedfrg.reg
-AppWebsite=http://technet.microsoft.com/en-us/sysinternals/bb897426
-UseFTPServer=0
-PriorAlert=0
-LogVerbiage=Defragmented Windows paging file and registry.
-Author=FoolishTech
-LastEditDate=2/7/2014 10:15:12 AM
-AppDLPage=http://technet.microsoft.com/en-us/sysinternals/bb897426
-AppDesc=Defragments the paging file and registry hives for Windows XP only.
-NonDirectURLs=0
-AutoFlag=1
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/TCPOptimizer.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/TCPOptimizer.cfg
deleted file mode 100644
index 29d862fc..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/TCPOptimizer.cfg
+++ /dev/null
@@ -1,35 +0,0 @@
-[Config]
-App=TCPOptimizer.exe
-AppURL=http://www.speedguide.net/files/TCPOptimizer.exe
-AppDLName=TCPOptimizer.exe
-AppWait=1
-AppMsgBox=0
-AppRandomize=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-DisableCloudShare=0
-UseFTPServer=0
-AlwaysAttemptDownload=1
-DLafterXdays=7
-PriorAlert=1
-ServiceWait=0
-SaveConfigAfter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-AppWebsite=http://www.speedguide.net/tcpoptimizer.php
-LogVerbiage=Optimized TCP stack for better networking performance.
-Author=FoolishTech
-LastEditDate=2/7/2014 10:15:36 AM
-AppDLPage=http://www.speedguide.net/tcpoptimizer.php
-AppDesc=Optimize and fix issues with network adapters.
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/TreeSize.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/TreeSize.cfg
deleted file mode 100644
index ddcdd854..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/TreeSize.cfg
+++ /dev/null
@@ -1,36 +0,0 @@
-[Config]
-Author=Foolish IT
-LastEditDate=3/30/2016 11:19:29 AM
-PostRunApp=
-AppWebsite=http://www.jam-software.com/treesize_free/
-AppDLPage=http://www.jam-software.com/treesize_free/
-App=TreeSizeFree\TreeSizeFree.exe
-UseFTPServer=0
-AppURL=http://www.jam-software.com/treesize_free/TreeSizeFree.zip
-AppDLName=TreeSizeFree.zip
-AlwaysAttemptDownload=1
-DLafterXdays=30
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-AppDesc=Check Disk Space Usage
-LogVerbiage=Reviewed disk space usage
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/USB Devices View.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/USB Devices View.cfg
deleted file mode 100644
index 546d0dc7..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/USB Devices View.cfg
+++ /dev/null
@@ -1,39 +0,0 @@
-[Config]
-Author=dSupportOnline
-LastEditDate=10/29/2014 9:27:56 AM
-PostRunApp=
-AppWebsite=http://www.nirsoft.net/utils/usb_devices_view.html
-AppDLPage=http://www.nirsoft.net/utils/usb_devices_view.html
-AppDesc=Utility to examine installed USB devices and remove corrupt drivers
-App=usbdeview\USBDeview.exe
-AppURLSpoof=http://www.nirsoft.net/utils/usb_devices_view.html
-UseFTPServer=0
-AppURL=http://www.nirsoft.net/utils/usbdeview.zip
-AppDLName=usbdeview.zip
-AlwaysAttemptDownload=1
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=1
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Examined installed USB devices and removed corrupted drivers or updated accordingly.
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
-CopyConfigFirst=USBDeview.cfg
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/USBDeview.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/USBDeview.cfg
deleted file mode 100644
index c38f99e6..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/USBDeview.cfg
+++ /dev/null
@@ -1,28 +0,0 @@
-[General]
-ShowGridLines=0
-ShowInfoTip=1
-DisplayDisconnected=1
-DisplayNoPortSerial=1
-DisplayNoDriver=0
-DisplayHubs=0
-ShowDisconnectMessage=0
-TrayIcon=0
-ShowWindowOnDeviceConnect=0
-AutoPlayOnDeviceConnect=0
-DisplayBalloonOnDeviceConnect=0
-StartAsHidden=0
-ShowTimeInGMT=0
-DisplayBalloonOnDeviceDisconnect=0
-RetrieveUSBPower=1
-MarkConnectedDevices=1
-SaveFilterIndex=0
-DeviceConnectExecute=
-UseDeviceConnectExecute=0
-DeviceDisconnectExecute=
-UseDeviceDisconnectExecute=0
-AddExportHeaderLine=0
-MarkOddEvenRows=0
-DecodeSerialNumbers=1
-WinPos=2C 00 00 00 00 00 00 00 01 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 00 00 00 00 00 00 00 00 80 02 00 00 E0 01 00 00
-Columns=96 00 00 00 B4 00 01 00 96 00 02 00 5A 00 03 00 5A 00 04 00 5A 00 05 00 50 00 06 00 5A 00 07 00 78 00 08 00 78 00 09 00 78 00 0A 00 64 00 0B 00 64 00 0C 00 64 00 0D 00 50 00 0E 00 50 00 0F 00 50 00 10 00 64 00 11 00 6E 00 12 00 96 00 13 00 96 00 14 00 96 00 15 00 6E 00 16 00 6E 00 17 00 6E 00 18 00 6E 00 19 00 8C 00 1A 00 5A 00 1B 00 5A 00 1C 00 82 00 1D 00 82 00 1E 00 C8 00 1F 00
-Sort=0
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/UltraSearch.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/UltraSearch.cfg
deleted file mode 100644
index 355220b7..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/UltraSearch.cfg
+++ /dev/null
@@ -1,40 +0,0 @@
-[Config]
-Author=Foolish IT
-LastEditDate=3/30/2016 11:23:32 AM
-PostRunApp=
-AppWebsite=http://www.jam-software.com/ultrasearch/
-AppDLPage=http://www.jam-software.com/ultrasearch/
-App=UltraSearchx32\UltraSearch.exe
-UseFTPServer=0
-AppURL=http://www.jam-software.com/ultrasearch/UltraSearch-x86.zip
-AppDLName=UltraSearchx32.zip
-AlwaysAttemptDownload=1
-DLafterXdays=30
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-App64=UltraSearchx64\UltraSearch.exe
-AppURL64=http://www.jam-software.com/ultrasearch/UltraSearch-x64.zip
-AppDLName64=UltraSearchx64.zip
-LastDownload=3/30/2016
-AppDesc=Quickly search files and folders
-LogVerbiage=Searched files and folders
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Unchecky (Install).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Unchecky (Install).cfg
deleted file mode 100644
index c66def4a..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Unchecky (Install).cfg
+++ /dev/null
@@ -1,35 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=7/19/2014 6:00:26 AM
-AppWebsite=http://unchecky.com/
-AppDLPage=http://unchecky.com/
-AppDesc=Keeps your checkboxes clear.
-UseFTPServer=0
-AppURL=http://unchecky.com/files/unchecky_setup.exe
-AppDLName=unchecky_setup.exe
-AlwaysAttemptDownload=1
-DLafterXdays=5
-AppWait=1
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Installed Unchecky application
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=0
-NonDirectURLs=0
-App=unchecky_setup.exe
-AppParms=-install -update -no_desktop_icon
-LastDownload=10/27/2017
-AutoFlag=0
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/VipreRescueScanner (Deep Scan).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/VipreRescueScanner (Deep Scan).cfg
deleted file mode 100644
index cff93333..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/VipreRescueScanner (Deep Scan).cfg
+++ /dev/null
@@ -1,40 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=10/29/2014 10:09:50 AM
-PostRunApp=
-AppWebsite=http://live.sunbeltsoftware.com/
-AppDLPage=http://www.vipreantivirus.com/live/Download2/
-AppDesc=Virus scanner (Designed for both the Malware Removal and the Offline Operations tab)
-App=vipre\VipreRescueScanner.exe
-AppParms=/path %tdrive%
-UseFTPServer=0
-AppURL=http://go.threattracksecurity.com/?linkid=1605
-AppDLName=vipre.zip
-AlwaysAttemptDownload=1
-DLafterXdays=1
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=1
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsToMalwareLogs=1
-RunInCMD=1
-SendEnter=1
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Ran virus scans (Vipre)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=1
-AutoFlag=1
-SnatchReportsLoc=%3rdpath%\*.csv
-LastDownload=10/27/2017
-AppURLSpoof=http://www.vipreantivirus.com/support.aspx#vp-Rescue
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/VipreRescueScanner (Manual).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/VipreRescueScanner (Manual).cfg
deleted file mode 100644
index d4c074de..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/VipreRescueScanner (Manual).cfg
+++ /dev/null
@@ -1,39 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=9/28/2014 7:46:09 PM
-PostRunApp=
-AppWebsite=http://live.sunbeltsoftware.com/
-AppDLPage=http://www.vipreantivirus.com/live/Download2/
-AppDesc=Virus scanner - Manual removal
-App=vipre\VipreRescueScanner.exe
-UseFTPServer=0
-AppURL=http://go.threattracksecurity.com/?linkid=1605
-AppDLName=vipre.zip
-AlwaysAttemptDownload=1
-DLafterXdays=7
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=1
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsLoc=%3rdpath%\*.csv
-SnatchReportsToMalwareLogs=1
-RunInCMD=1
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Ran virus scans (Vipre)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=1
-AutoFlag=0
-LastDownload=9/28/2014
-AppURLSpoof=http://www.vipreantivirus.com/support.aspx#vp-Rescue
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/VipreRescueScanner (Quick Scan).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/VipreRescueScanner (Quick Scan).cfg
deleted file mode 100644
index f39da538..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/VipreRescueScanner (Quick Scan).cfg
+++ /dev/null
@@ -1,40 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=10/13/2014 9:42:04 AM
-PostRunApp=
-AppWebsite=http://live.sunbeltsoftware.com/
-AppDLPage=http://www.vipreantivirus.com/live/Download2/
-AppDesc=Virus scanner (Designed for both the Malware Removal and the Offline Operations tab)
-App=vipre\VipreRescueScanner.exe
-AppParms=/path %tdrive% /quick
-UseFTPServer=0
-AppURL=http://go.threattracksecurity.com/?linkid=1605
-AppDLName=vipre.zip
-AlwaysAttemptDownload=1
-DLafterXdays=1
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=1
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsLoc=%3rdpath%\*.csv
-SnatchReportsToMalwareLogs=1
-RunInCMD=1
-SendEnter=1
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Ran virus scans (Vipre)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=1
-AutoFlag=1
-LastDownload=10/13/2014
-AppURLSpoof=http://www.vipreantivirus.com/support.aspx#vp-Rescue
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/VirusTotal Uploader Uninstall.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/VirusTotal Uploader Uninstall.cfg
deleted file mode 100644
index 51513d28..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/VirusTotal Uploader Uninstall.cfg
+++ /dev/null
@@ -1,32 +0,0 @@
-[Config]
-Author=VirusTotal
-LastEditDate=5/16/2016 5:25:35 PM
-PostRunApp=
-AppWebsite=https://www.virustotal.com/en/documentation/desktop-applications/
-AppDLPage=https://www.virustotal.com/en/documentation/desktop-applications/
-App=%programfiles%\VirusTotalUploader2\uninstall.exe
-UseFTPServer=0
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/VirusTotal Uploader.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/VirusTotal Uploader.cfg
deleted file mode 100644
index 6173859c..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/VirusTotal Uploader.cfg
+++ /dev/null
@@ -1,36 +0,0 @@
-[Config]
-Author=VirusTotal
-LastEditDate=5/16/2016 5:48:48 PM
-PostRunApp=VirusTotal Uploader Uninstall
-AppWebsite=https://www.virustotal.com/en/documentation/desktop-applications/
-AppDLPage=https://www.virustotal.com/en/documentation/desktop-applications/
-App=%programfiles(x86)%\VirusTotalUploader2\VirusTotalUploader2.2.exe
-UseFTPServer=0
-InstallerName=vtuploader2.2.exe
-AppURL=https://www.virustotal.com/static/bin/vtuploader2.2.exe
-AppDLName=vtuploader2.2.exe
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=1
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=5/16/2016
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/WhatIsHang.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/WhatIsHang.cfg
deleted file mode 100644
index 51ad3075..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/WhatIsHang.cfg
+++ /dev/null
@@ -1,14 +0,0 @@
-[General]
-ShowGridLines=0
-SaveFilterIndex=0
-ShowInfoTip=1
-AutoRefresh=1
-VerSplitLoc=16383
-TrayIcon=0
-DisplayAboveAscii127=0
-StartAsHidden=0
-AlwaysOnTop=0
-AutoGetReport=0
-WinPos=2C 00 00 00 00 00 00 00 01 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 00 00 00 00 00 00 00 00 80 02 00 00 E0 01 00 00
-Columns=96 00 00 00 96 00 01 00 64 00 02 00 64 00 03 00 FA 00 04 00
-Sort=0
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Windows Repair AIO (Auto).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Windows Repair AIO (Auto).cfg
deleted file mode 100644
index 028b8f47..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Windows Repair AIO (Auto).cfg
+++ /dev/null
@@ -1,36 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=5/27/2014 1:48:49 PM
-AppWebsite=http://www.tweaking.com/articles/pages/windows_repair_all_in_one_tips,1.html
-AppDLPage=http://www.tweaking.com/content/page/windows_repair_all_in_one.html
-AppDesc=Tweaking.com's Windows Repair All-In-One can fix a large majority of known Windows problems.
-App=aio\Tweaking.com - Windows Repair\Repair_Windows.exe
-AppParms=/silent
-UseFTPServer=0
-AppURL=http://www.tweaking.com/files/setups/tweaking.com_windows_repair_aio.zip
-AppDLName=aio.zip
-AlwaysAttemptDownload=1
-DLafterXdays=3
-AppWait=1
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsLoc=%3rdpath%\Logs\_Windows_Repair_Log.txt
-SnatchReportsToMalwareLogs=0
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Repaired damage to Windows with %app%
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=0
-NonDirectURLs=0
-AutoFlag=1
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Windows Repair AIO.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/Windows Repair AIO.cfg
deleted file mode 100644
index 0caeffac..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/Windows Repair AIO.cfg
+++ /dev/null
@@ -1,35 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=5/27/2014 1:48:42 PM
-AppWebsite=http://www.tweaking.com/articles/pages/windows_repair_all_in_one_tips,1.html
-AppDLPage=http://www.tweaking.com/content/page/windows_repair_all_in_one.html
-AppDesc=Tweaking.com's Windows Repair All-In-One can fix a large majority of known Windows problems.
-App=aio\Tweaking.com - Windows Repair\Repair_Windows.exe
-UseFTPServer=0
-AppURL=http://www.tweaking.com/files/setups/tweaking.com_windows_repair_aio.zip
-AppDLName=aio.zip
-AlwaysAttemptDownload=1
-DLafterXdays=3
-AppWait=1
-PriorAlert=1
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsLoc=%3rdpath%\Logs\_Windows_Repair_Log.txt
-SnatchReportsToMalwareLogs=0
-RunInCMD=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Repaired damage to Windows with %app%
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=0
-NonDirectURLs=0
-AutoFlag=0
-LastDownload=10/27/2017
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/cports.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/cports.cfg
deleted file mode 100644
index 5b8a5276..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/cports.cfg
+++ /dev/null
@@ -1,40 +0,0 @@
-[General]
-WinPos=2C 00 00 00 00 00 00 00 01 00 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 4E 00 00 00 4E 00 00 00 CE 02 00 00 2E 02 00 00
-Columns=6E 00 00 00 3C 00 01 00 3C 00 02 00 46 00 03 00 46 00 04 00 64 00 05 00 46 00 06 00 46 00 07 00 64 00 08 00 78 00 09 00 50 00 0A 00 40 01 0B 00 B4 00 0C 00 B4 00 0D 00 B4 00 0E 00 B4 00 0F 00 78 00 10 00 8C 00 11 00 96 00 12 00 64 00 13 00 78 00 14 00 C8 00 15 00 6E 00 16 00 96 00 17 00
-Sort1=0
-ShowGridLines=0
-SaveFilterIndex=0
-MarkPorts=1
-DisplayUdpPorts=1
-DisplayTcpPorts=1
-DisplayClosedPorts=1
-MarkNewModifiedPorts=1
-SortOnAutoRefresh=1
-AlwaysOnTop=0
-AskBefore=1
-DisplayIPv6Ports=1
-DisplayListening=1
-DisplayEstablished=1
-DisplayNoState=1
-DisplayNoRemoteIP=1
-ResolveAddresses=1
-RememberLastFilter=1
-AutoResizeColumns=0
-DisplayPortInAddress=0
-AutoRefresh=0
-ShowInfoTip=1
-TrayIcon=0
-TrayIconOneClick=0
-LogChanges=0
-LogFilename=cports.log
-StartAsHidden=0
-DisabledFilters=0
-UseCustomLogLine=0
-CustomLogLine=%Process_ID.5% %Process_Name.20% %Protocol.5% %Local_Address.25% %Remote_Address.35% %User_Name.40%
-MissingConnectionsWorkaround=0
-AddExportHeaderLine=0
-MarkOddEvenRows=0
-TrayBalloonOnNewPort=0
-BeepOnNewPort=0
-UseDNSCache=0
-CustomRefresh=15
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/herdProtect (Uninstall).cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/herdProtect (Uninstall).cfg
deleted file mode 100644
index 18418caf..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/herdProtect (Uninstall).cfg
+++ /dev/null
@@ -1,32 +0,0 @@
-[Config]
-Author=dSupportOnline
-LastEditDate=10/9/2014 3:36:58 PM
-PostRunApp=
-AppWebsite=http://www.herdprotect.com/index.aspx
-App=%ProgramFiles%\Reason\herdProtect\Scanner\Uninstall.exe
-UseFTPServer=0
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-AppParms=/qn
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/herdProtect.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/herdProtect.cfg
deleted file mode 100644
index 17ac004b..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/herdProtect.cfg
+++ /dev/null
@@ -1,38 +0,0 @@
-[Config]
-Author=dSupportOnline
-LastEditDate=10/9/2014 3:44:33 PM
-PostRunApp=herdProtect (Uninstall)
-AppWebsite=http://www.herdprotect.com/index.aspx
-AppDLPage=http://www.herdprotect.com/downloads.aspx
-UseFTPServer=0
-AppURL=http://www.herdprotect.com/installers/herdProtectScan_Setup.exe
-AppDLName=herdProtectSetup.exe
-AlwaysAttemptDownload=0
-DLafterXdays=5
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=0
-SaveConfigAfter=0
-MoveSnatchReports=0
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=1
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=0
-InstallerParms=/qn
-InstallerName=herdProtectSetup.exe
-App=C:\Program Files\Reason\herdProtect\Scanner\herdProtectScan.exe
-AppDesc=Cloud-based anti-malware scanner
-LogVerbiage=Scanned system against 68 various anti-malware scanners
diff --git a/setup/windows/bin/d7ii/Config/CustomApps_d7II/rkill.cfg b/setup/windows/bin/d7ii/Config/CustomApps_d7II/rkill.cfg
deleted file mode 100644
index 0f0d70a0..00000000
--- a/setup/windows/bin/d7ii/Config/CustomApps_d7II/rkill.cfg
+++ /dev/null
@@ -1,40 +0,0 @@
-[Config]
-Author=FoolishTech
-LastEditDate=10/10/2014 5:07:05 AM
-PostRunApp=
-AppWebsite=http://www.bleepingcomputer.com/forums/t/308364/rkill-what-it-does-and-what-it-doesnt-a-brief-introduction-to-the-program/
-AppDLPage=http://www.bleepingcomputer.com/download/rkill/
-AppDesc=Anti-Malware app.
-App=rkill.exe
-AppParms=-s -w "%3rdpath%\rkill_Excludes.txt"
-UseFTPServer=0
-AppURL=http://download.bleepingcomputer.com/grinler/rkill.exe
-AppDLName=rkill.exe
-AlwaysAttemptDownload=1
-DLafterXdays=3
-AppWait=1
-EmailBeforeExecution=0
-PriorAlert=0
-ServiceWait=0
-AppMsgBox=0
-AppRandomize=1
-CopyConfigFirst=rkill.cmd
-SaveConfigAfter=0
-MoveSnatchReports=1
-SnatchReportsLoc=%userprofile%\Desktop\rkill*.txt
-SnatchReportsToMalwareLogs=1
-RunInCMD=0
-SendEnter=0
-RunWithSystemAccess=0
-IsDLInstaller=0
-LogVerbiage=Ran Rogue Malware Scans (rkill)
-32=1
-64=1
-XP=1
-Vista=1
-7=1
-8=1
-Servers=1
-NonDirectURLs=0
-AutoFlag=1
-LastDownload=8/13/2018
diff --git a/setup/windows/bin/d7ii/Config/Email.Settings.dat b/setup/windows/bin/d7ii/Config/Email.Settings.dat
deleted file mode 100644
index b18493d1..00000000
Binary files a/setup/windows/bin/d7ii/Config/Email.Settings.dat and /dev/null differ
diff --git a/setup/windows/bin/d7ii/Config/FTP.Settings.dat b/setup/windows/bin/d7ii/Config/FTP.Settings.dat
deleted file mode 100644
index c55d9e11..00000000
Binary files a/setup/windows/bin/d7ii/Config/FTP.Settings.dat and /dev/null differ
diff --git a/setup/windows/bin/d7ii/Config/Folders.txt b/setup/windows/bin/d7ii/Config/Folders.txt
deleted file mode 100644
index a0fa7ee6..00000000
--- a/setup/windows/bin/d7ii/Config/Folders.txt
+++ /dev/null
@@ -1 +0,0 @@
-\\nas,\\nas
diff --git a/setup/windows/bin/d7ii/Config/IntFunctions/MBAM_Prefs.cfg b/setup/windows/bin/d7ii/Config/IntFunctions/MBAM_Prefs.cfg
deleted file mode 100644
index 245f6716..00000000
--- a/setup/windows/bin/d7ii/Config/IntFunctions/MBAM_Prefs.cfg
+++ /dev/null
@@ -1,5 +0,0 @@
-[PostScan]
-AlwaysUninstallFreeVer=0
-[PreScan]
-AutoContinue=1
-AlwaysUninstallFreeVer=0
diff --git a/setup/windows/bin/d7ii/Config/Links.txt b/setup/windows/bin/d7ii/Config/Links.txt
deleted file mode 100644
index 753bc8d2..00000000
--- a/setup/windows/bin/d7ii/Config/Links.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-SysInternals Live,http://live.sysinternals.com/
-Windows Services Reg Files (BleepingComputer.com),http://download.bleepingcomputer.com/win-services/
-Process Library (Search for information on a Process),http://www.processlibrary.com/en/
-DLL-files.com (Download Missing dll files),http://www.dll-files.com/
-PCI Vendor and Device Lists (Identify Unknown Devices),http://www.pcidatabase.com/
-Driver Guide (Download Missing Drivers),http://www.driverguide.com/
-Drivers for notebooks (Quick Access to various model's drivers),http://drp.su/drivers/notebooks/?l=en
-RouterPasswords.com (Common Router Passwords),http://www.routerpasswords.com/
-Default Username and Password for Routers - All makes (irintech.com) ,http://www.irintech.com/x1/co/764/Default-Username-and-
-Laptop Recovery Instructions (Details on Accessing Recovery Mode for laptops),http://www.mmpcsolutions.co.uk/recovery.php
-Contact Tech Support Websites (provided by MALabs.com),http://www.malabs.com/services/tech_support.php
-Support Details (Brief Browser/OS specs export via email/cvx/pdf) ,http://supportdetails.com/
-HeliDoc.net (Direct D/L links to MS Software),http://www.heidoc.net/joomla/technology-science/microsoft
-My copy of Office did not come with a disk (via Microsoft),http://office.microsoft.com/en-gb/products/download-backup-restore-microsoft-office-products-FX103427465.aspx
-Computer Repair Flowcharts (Common Repair Problems Flow Charts),http://www.similarsites.com/goto/fixingmycomputer.com?pos=5&s=10
-How to Download Windows 8.1 RTM Standalone Offline ISO for Clean Installation?,http://www.askvg.com/how-to-download-windows-8-1-rtm-standalone-offline-iso-for-clean-installation/
-Service Pack Center (via Microsoft),http://windows.microsoft.com/en-us/windows/service-packs-download
diff --git a/setup/windows/bin/d7ii/Config/OS Branding/OSBranding.ini b/setup/windows/bin/d7ii/Config/OS Branding/OSBranding.ini
deleted file mode 100644
index b3f034a1..00000000
--- a/setup/windows/bin/d7ii/Config/OS Branding/OSBranding.ini
+++ /dev/null
@@ -1,12 +0,0 @@
-[OSBranding]
-AlwaysPrompt=0
-Mfgr=1201 Computers
-Model=Custom
-Phone=503-523-1012
-Hours=M-F 9am-7pm PST
-URL=http://www.1201.com
-[DesktopShortcut]
-ShortcutURL=http://www.1201.com
-ShortcutName=1201 Computers
-ShortcutIcon=CompanyName.ico
-UseIE=0
diff --git a/setup/windows/bin/d7ii/Config/OS Branding/oeminfo.ini b/setup/windows/bin/d7ii/Config/OS Branding/oeminfo.ini
deleted file mode 100644
index 7930294f..00000000
--- a/setup/windows/bin/d7ii/Config/OS Branding/oeminfo.ini
+++ /dev/null
@@ -1,3 +0,0 @@
-[General]
-Manufacturer=1201 Computers
-Model=Custom
diff --git a/setup/windows/bin/d7ii/Config/Profiles/Default.cfg b/setup/windows/bin/d7ii/Config/Profiles/Default.cfg
deleted file mode 100644
index c37e83af..00000000
--- a/setup/windows/bin/d7ii/Config/Profiles/Default.cfg
+++ /dev/null
@@ -1,1499 +0,0 @@
-[QA_Defaults]
-Item1=0
-Item2=1
-Item3=1
-Item4=1
-Item5=1
-Item6=1
-Item7=1
-Item8=1
-Item9=0
-Item10=0
-Item11=0
-Item12=1
-Item13=1
-Item14=1
-Item15=0
-Item16=0
-Item17=0
-Item18=0
-Item19=0
-Item20=0
-Item21=0
-[Tweaks_Defaults]
-Item1=0
-Item2=0
-Item3=0
-Item4=0
-Item5=0
-Item6=1
-Item7=0
-Item8=0
-Item9=0
-Item10=1
-Item11=0
-Item12=0
-Item13=1
-Item14=0
-Item15=0
-Item16=0
-Item17=0
-Item18=0
-Item19=0
-Item20=0
-Item21=0
-Item22=0
-Item23=0
-Item24=0
-Item25=0
-Item26=0
-Item27=0
-Item28=0
-Item29=0
-Item30=0
-Item31=0
-Item32=0
-Item33=0
-Item34=0
-Item35=0
-Item36=0
-Item37=0
-Item38=0
-Item39=0
-Item40=0
-Item41=0
-Item42=0
-Item43=0
-Item44=0
-Item45=0
-Item46=0
-Item47=0
-Item48=0
-Item49=0
-Item50=0
-Item51=0
-Item52=0
-Item53=0
-Item54=0
-Item55=0
-Item56=0
-Item57=0
-Item58=1
-Item59=0
-Item60=0
-Item61=0
-[CustomizeInstall]
-BrandOS=0
-DropShortcut=0
-CustomDNSApply=0
-CustomDNSName=(Select DNS Servers)
-CustomDNS1=
-CustomDNS2=
-CustomHOSTS=0
-UPHClean=1
-CustomWinUpd=0
-UpdateFlash=1
-SetBrowserHomepage=0
-BrowserHomepage=
-CPWhite=0
-dSS=0
-CPFree=0
-RunNiniteEarly=1
-PatchMyPC=0
-PatchMyPC (Auto)=0
-Unchecky (Install)=1
-[Maintenance]
-Auslogics DD Portable=0
-AdwCleaner=0
-Autoruns=0
-CrowdInspect=0
-Neutron (Sync Time)=1
-Piriform CCleaner=0
-Piriform CCleaner (Auto)=1
-Piriform Defraggler=0
-Piriform Defraggler (Auto)=0
-Revo Uninstaller=0
-DelNTUninstDirs=1
-DefragStartupItems=1
-CustomMaint=0
-TimeZoneCheck=0
-MaintDelTemps=1
-MaintPurgeSysRest=1
-MaintEmptyBin=1
-MaintProcIdleTasks=1
-MaintTimeSync=0
-MaintShortcuts=1
-MaintIE8PerfFixit=0
-PageDefrag=1
-CreateRPAfterD7Auto=1
-MaintClearEventLogs=1
-DelIEBHOs=0
-DelIEToolbars=0
-RevoUninstaller=0
-ResetIEtoDefaults=1
-OrphanFinderPF=1
-DelTempInternet=1
-DelCookies=0
-DelHistory=0
-Prefetch=1
-AutoUninstall=1
-AutoUninstallUI=1
-CleanMgr=1
-JRT=0
-[OfflineDefaults]
-PreMalwareScan=1
-MalwareScan=1
-DelTemps=1
-PurgeSysRest=1
-FixShell=1
-RemovePolicies=1
-KillRenameOps=1
-ResetHiddenVol=0
-CopyD7=1
-IFEOModifier=1
-[MalwareDefaults]
-Safe Mode w/Net Mod=0
-KillZA Check=0
-Pre-MalwareScan=1
-dUninstaller (Auto)=1
-dUninstaller (UI)=0
-Purge System Restore=1
-Registry Hive Backup=1
-System Restore Point (pre)=1
-Find Moved Shortcuts=1
-Reset Hidden Volume=0
-Kill Rename Ops=1
-Fix File Associations=1
-Remove Policies=1
-Clear Proxy Settings=1
-Apply DHCP to All NICs=0
-Delete Temp Files=1
-Delete Temp Internet Files=1
-Delete History=0
-Delete Cookies=0
-Empty Recycle Bin=1
-MSSE/WD Quick Scan=1
-MSSE/WD Full Scan=0
-JRT=0
-McAfee Stinger=0
-McAfee Stinger (Silent)=1
-ComboFix=0
-ComboFix (Uninstall)=0
-HitmanPro=1
-AdwCleaner=0
-Autoruns=0
-Avast! aswMBR=0
-Bitdefender Rootkit Remover=0
-CrowdInspect=0
-Emsisoft a2cmd Full Scan=0
-Emsisoft a2cmd Update=0
-ESET Smart Installer=0
-GMER=0
-Kaspersky TDSSKiller=0
-Kaspersky TDSSKiller (Silent)=0
-MalwareBytes Anti-Rootkit=0
-Malwarebytes v2=1
-MBRCheck=0
-OTL=0
-rkill=0
-Rogue Killer=0
-Sophos Virus Removal Tool=0
-SuperAntiSpyware=0
-VipreRescueScanner=0
-MalwareScan=1
-Repair Permissions=0
-Reset Networking=1
-Repair Windows Update=1
-Repair WMI/WBEM/DCOM=1
-Repair Windows Firewall=1
-Reset Windows Firewall=1
-Repair System Restore=1
-Repair Security Center=1
-System Restore Point (post)=1
-Remove Safe Mode w/Net Mod=0
-KillEmAll=1
-Kill Explorer.exe=1
-RebootOnFinish=0
-MergeDefs=0
-MergeDefsDLOnly=1
-=0
-=1
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=1
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=1
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-[RepairDefaults]
-RebootOnAutoFinish=0
-Default Start Menu LNKs=1
-Fix File Associations=1
-Rebuild Icon Cache=1
-Remove Policies=1
-Fix Device Manager=1
-Clear Print Spooler=1
-Windows Update Svcs=1
-WMI/WBEM/DCOM=1
-Security Center=1
-Windows Defender=1
-Safe Mode Services=1
-System Restore=1
-Installer Service=1
-VSS Service=1
-Repair Permissions=0
-Regsvr32 IE DLLs=0
-DISM RestoreHealth=0
-System File Checker=0
-Examine Hosts File=1
-Clear Proxy Settings=1
-Apply DHCP to All NICs=0
-Release / Renew IP=0
-Reset Network Interfaces=0
-Reset Winsock=0
-Repair Windows Firewall=1
-Reset Windows Firewall=1
-MS FixIT for Winsock=0
-Windows Repair AIO=0
-Windows Repair AIO (Auto)=0
-TCPOptimizer=0
-Microsoft FixIt Portable=0
-Microsoft FixIt Winsock (Auto)=0
-Microsoft FixIt Win Update (Auto)=0
-MS Office Config Analyzer Tool (Install)=0
-MS Office Config Analyzer Tool (Portable)=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-=0
-[AuditDefaults]
-0=0
-1=1
-2=1
-3=1
-4=1
-5=0
-6=0
-Belarc Advisor (Install-Report)=0
-OpenHardwareMonitor=0
-Piriform Speccy=0
-BatteryInfoView=0
-BluescreenView=0
-AS SSD Benchmark=0
-CrystalDiskInfo=0
-SpaceSniffer=0
-MoveReportsToFTP=0
-CrowdInspect=0
-Autoruns=0
-[chkNinite]
-0=1
-1=1
-2=1
-3=1
-4=1
-5=1
-6=0
-7=1
-[txtNinite]
-0=
-1=
-[optNinite]
-Cache=1
-[Maintenance3]
-Auslogics DD Portable=0
-AdwCleaner=0
-JRT=0
-Autoruns=0
-~Email Alert=0
-CrowdInspect=0
-Neutron (Sync Time)=1
-Piriform CCleaner=0
-Piriform CCleaner (Auto)=1
-Piriform Defraggler=0
-Piriform Defraggler (Auto)=0
-Revo Uninstaller=0
-PatchMyPC=0
-PatchMyPC (Auto)=0
-Unchecky (Install)=0
-StartUpLite=0
-TCPOptimizer=0
-2=0
-28=0
-54=0
-59=0
-[NiniteApps]
-.NET=0
-.NET 4=0
-.NET 4.5=0
-.NET 4.5.1=0
-.NET 4.5.2=0
-7-Zip=0
-Acrobat=0
-Ad-Aware=0
-AIM=0
-AIMP=0
-Air=0
-Audacity=0
-Auslogics=0
-Avast=0
-AVG=0
-Avira=0
-BitTorrent Sync=0
-CCCP=0
-CCleaner=0
-CDBurnerXP=0
-Chrome=0
-Citrix Receiver=0
-Classic Start=0
-CutePDF=0
-Defraggler=0
-Digsby=0
-Dropbox=0
-Eclipse=0
-eMule=0
-Essentials=0
-Evernote=0
-Everything=0
-FastStone=0
-FileZilla=0
-Firefox=0
-Firefox ESR=0
-Flash=0
-Flash (IE)=0
-foobar2000=0
-Foxit Reader=0
-GIMP=0
-Glary=0
-GOM=0
-Google Drive=0
-Google Earth=0
-Google Talk=0
-GoToMeeting=0
-Greenshot=0
-Hulu=0
-ImgBurn=0
-InfraRecorder=0
-Inkscape=0
-IrfanView=0
-iTunes=0
-Java=0
-Java 6=0
-Java 8=0
-Java x64=0
-Java x64 6=0
-Java x64 8=0
-JDK=0
-JDK 6=0
-JDK 8=0
-JDK x64=0
-JDK x64 8=0
-K-Lite Codecs=0
-K-Lite Codecs x64=0
-KeePass=0
-KeePass 2=0
-KMPlayer=0
-Launchy=0
-LibreOffice=0
-LogMeIn=0
-Malwarebytes=0
-MediaMonkey=0
-Messenger=0
-Mozy=0
-Notepad++=0
-NVDA=0
-Office=0
-OneDrive=0
-OpenOffice=0
-Opera=0
-Opera Chromium=0
-Paint.NET=0
-PDFCreator=0
-PeaZip=0
-Picasa=0
-Pidgin=0
-PuTTY=0
-Python=0
-qBittorrent=0
-QuickTime=0
-Reader=0
-RealVNC=0
-Recuva=0
-Revo=0
-Safari=0
-Shockwave=0
-Silverlight=0
-SkyDrive=0
-Skype=0
-Songbird=0
-Speccy=0
-Spotify=0
-Spybot=0
-Spybot 2=0
-Steam=0
-SugarSync=0
-SumatraPDF=0
-Super=0
-TeamViewer=0
-TeraCopy=0
-Thunderbird=0
-Thunderbird ESR=0
-Trillian=0
-TrueCrypt=0
-TweetDeck=0
-uTorrent=0
-VLC=0
-WebEx=0
-Winamp=0
-WinDirStat=0
-WinMerge=0
-WinRAR=0
-WinSCP=0
-XnView=0
-Yahoo!=0
-[Maintenance2]
-Piriform CCleaner (Auto)=0
-Piriform Defraggler (Auto)=0
-PatchMyPC (Auto)=0
-Neutron (Sync Time)=0
-Sysinternals PageDefrag (XP)=0
-74=0
-0=0
-55=0
-53=0
-2=0
-JRT=0
-56=0
-[Maintenance1]
-4=0
-1=0
-12=0
-13=0
-67=0
-16=0
-17=0
-57=0
-62=0
-63=0
-65=0
-66=0
-68=0
-33=0
-103=0
-[Offline1]
-Emsisoft a2cmd Update (Offline)=1
-Emsisoft a2cmd Full Scan (Offline)=1
-McAfee Stinger (Silent-Offline)=0
-McAfee Stinger (Offline)=0
-MBRCheck (Offline)=0
-Emsisoft a2cmd Deep Scan (Offline)=0
-Autoruns (Verify and Log)=0
-Autoruns=0
-VipreRescueScanner (Deep Scan)=0
-[Malware1]
-33=1
-1=1
-32=1
-6=1
-9=1
-10=1
-11=1
-18=1
-12=1
-13=1
-16=0
-17=0
-8=1
-7=0
-29=0
-2=0
-53=0
-34=0
-35=0
-41=1
-3=1
-[Malware2]
-Emsisoft a2cmd Update=0
-Emsisoft a2cmd Full Scan=0
-34=1
-35=0
-McAfee Stinger (Silent)=0
-Kaspersky TDSSKiller (Silent)=1
-HitmanPro=1
-JRT=1
-0=0
-Sophos Virus Removal Tool=1
-McAfee Stinger=0
-VipreRescueScanner (Auto)=0
-VipreRescueScanner (Manual)=0
-Kaspersky TDSSKiller=0
-Autoruns=0
-herdProtect=0
-Should I Remove It=0
-Malwarebytes v2=0
-SuperAntiSpyware=0
-Emsisoft a2cmd - Update and Full Scan=0
-Emsisoft a2cmd Smart Scan=0
-Emsisoft a2cmd Deep Scan=1
-102=0
-Autoruns (Verify and Log)=0
-30=1
-rkill=1
-Piriform CCleaner (Auto)=1
-VipreRescueScanner (Quick Scan)=0
-VipreRescueScanner (Deep Scan)=0
-98=1
-Windows Repair AIO (Auto)=0
-WizardKit System Diagnostics=1
-1=1
-RKill (Auto)=1
-Disable Windows Updates=1
-Create Restore Point=1
-[Malware3]
-ComboFix=0
-ComboFix (Uninstall)=0
-ESET Smart Installer=0
-VipreRescueScanner=0
-Sophos Virus Removal Tool=0
-Malwarebytes v2=0
-AdwCleaner=1
-19=0
-Rogue Killer=0
-GMER=0
-rkill=0
-StartUpLite=0
-Bitdefender Rootkit Remover=0
-MalwareBytes Anti-Rootkit=0
-Avast! aswMBR=0
-MBRCheck=0
-CrowdInspect=0
-OTL=0
-Everything Search Engine=0
-30=0
-102=0
-0=0
-SuperAntiSpyware=0
-28=0
-herdProtect=0
-HitmanPro (Manual)=0
-105=0
-Should I Remove It=0
-Autoruns=1
-53=0
-Google Chrome Software Removal Tool=0
-CurrPorts=0
-Opened Files View=0
-Malwarebytes v3 Install=1
-Malwarebytes v3 Run=1
-Malwarebytes v3 Uninstall=1
-Malwarebytes v3 Check=1
-AdwCleaner_Copy=1
-Malwarebytes Install=1
-Malwarebytes Scan=1
-Malwarebytes Uninstall=1
-AdwCleaner (Updated)=1
-IObit Uninstaller=1
-Install SW Bundle=1
-WizardKit User Checklist=1
-WizardKit System Checklist=1
-WizardKit Browser Reset=0
-Malwarebytes Download=1
-Enable Windows Updates=1
-[Repair2]
-49=0
-48=0
-50=0
-20=0
-22=0
-23=0
-24=0
-26=0
-27=0
-40=0
-41=0
-42=0
-43=0
-44=0
-45=0
-51=0
-52=0
-46=0
-47=0
-[Repair3]
-11=0
-31=0
-21=0
-24=0
-25=0
-36=0
-37=0
-38=0
-73=0
-75=0
-76=0
-Microsoft FixIt Winsock (Auto)=0
-[Repair1]
-Microsoft FixIt Portable=0
-Microsoft FixIt Win Update (Auto)=0
-Microsoft FixIt Winsock (Auto)=0
-39=0
-MS Office Config Analyzer Tool (Install)=0
-MS Office Config Analyzer Tool (Portable)=0
-Windows Repair AIO=0
-Windows Repair AIO (Auto)=0
-[Audit1]
-0=0
-1=0
-2=0
-3=0
-4=0
-5=0
-6=0
-Autoruns=0
-CrowdInspect=0
-Belarc Advisor (Install-Report)=0
-OpenHardwareMonitor=0
-BatteryInfoView=0
-BluescreenView=0
-CrystalDiskInfo=0
-AS SSD Benchmark=0
-SpaceSniffer=0
-77=0
-78=0
-Should I Remove It=0
-7=0
-8=0
-CurrPorts=0
-Opened Files View=0
-Piriform Speccy=0
-USB Devices View=0
-[Audit2]
-82=0
-83=0
-84=0
-85=0
-86=0
-87=0
-88=0
-89=0
-90=0
-91=0
-92=0
-93=0
-94=0
-95=0
-96=0
-97=0
-[Tweaks1]
-Item1=0
-Item2=1
-Item3=0
-Item4=0
-Item5=0
-Item6=1
-Item7=0
-Item8=0
-Item9=0
-Item10=1
-Item11=0
-Item12=0
-Item13=1
-Item14=0
-Item15=1
-Item16=0
-Item17=0
-Item18=0
-Item19=0
-Item20=0
-Item21=0
-Item22=0
-Item23=0
-Item24=0
-Item25=0
-Item26=0
-Item27=0
-Item28=0
-Item29=0
-Item30=0
-Item31=0
-Item32=0
-Item33=0
-Item34=0
-Item35=0
-Item36=0
-Item37=0
-Item38=0
-Item39=0
-Item40=0
-Item41=0
-Item42=0
-Item43=0
-Item44=0
-Item45=0
-Item46=0
-Item47=0
-Item48=0
-Item49=0
-Item50=0
-Item51=0
-Item52=1
-Item53=0
-Item54=0
-Item55=0
-Item56=0
-Item57=0
-Item58=1
-Item59=0
-Item60=0
-Item61=0
-AdwCleaner=1
-[NiniteWorkstationInstall]
-.NET=0
-.NET 4=0
-.NET 4.5=0
-.NET 4.5.1=0
-.NET 4.5.2=0
-7-Zip=0
-Acrobat=0
-Ad-Aware=0
-AIM=0
-AIMP=0
-Air=0
-Audacity=0
-Auslogics=0
-Avast=0
-AVG=0
-Avira=0
-BitTorrent Sync=0
-CCCP=0
-CCleaner=0
-CDBurnerXP=0
-Chrome=0
-Citrix Receiver=0
-Classic Start=0
-CutePDF=0
-Defraggler=0
-Digsby=0
-Dropbox=0
-Eclipse=0
-eMule=0
-Essentials=0
-Evernote=0
-Everything=0
-FastStone=0
-FileZilla=0
-Firefox=0
-Firefox ESR=0
-Flash=0
-Flash (IE)=0
-foobar2000=0
-Foxit Reader=0
-GIMP=0
-Glary=0
-GOM=0
-Google Drive=0
-Google Earth=0
-Google Talk=0
-GoToMeeting=0
-Greenshot=0
-Hulu=0
-ImgBurn=0
-InfraRecorder=0
-Inkscape=0
-IrfanView=0
-iTunes=0
-Java=0
-Java 6=0
-Java 8=0
-Java x64=0
-Java x64 6=0
-Java x64 8=0
-JDK=0
-JDK 6=0
-JDK 8=0
-JDK x64=0
-JDK x64 8=0
-K-Lite Codecs=0
-K-Lite Codecs x64=0
-KeePass=0
-KeePass 2=0
-KMPlayer=0
-Launchy=0
-LibreOffice=0
-LogMeIn=0
-Malwarebytes=0
-MediaMonkey=0
-Messenger=0
-Mozy=0
-Notepad++=0
-NVDA=0
-Office=0
-OneDrive=0
-OpenOffice=0
-Opera=0
-Opera Chromium=0
-Paint.NET=0
-PDFCreator=0
-PeaZip=0
-Picasa=0
-Pidgin=0
-PuTTY=0
-Python=0
-qBittorrent=0
-QuickTime=0
-Reader=0
-RealVNC=0
-Recuva=0
-Revo=0
-Safari=0
-Shockwave=0
-Silverlight=0
-SkyDrive=0
-Skype=0
-Songbird=0
-Speccy=0
-Spotify=0
-Spybot=0
-Spybot 2=0
-Steam=0
-SugarSync=0
-SumatraPDF=0
-Super=0
-TeamViewer=0
-TeraCopy=0
-Thunderbird=0
-Thunderbird ESR=0
-Trillian=0
-TrueCrypt=0
-TweetDeck=0
-uTorrent=0
-VLC=0
-WebEx=0
-Winamp=0
-WinDirStat=0
-WinMerge=0
-WinRAR=0
-WinSCP=0
-XnView=0
-Yahoo!=0
-[NiniteWorkstationUpdate]
-.NET=0
-.NET 4=0
-.NET 4.5=0
-.NET 4.5.1=0
-.NET 4.5.2=0
-7-Zip=0
-Acrobat=0
-Ad-Aware=0
-AIM=0
-AIMP=0
-Air=0
-Audacity=0
-Auslogics=0
-Avast=0
-AVG=0
-Avira=0
-BitTorrent Sync=0
-CCCP=0
-CCleaner=0
-CDBurnerXP=0
-Chrome=0
-Citrix Receiver=0
-Classic Start=0
-CutePDF=0
-Defraggler=0
-Digsby=0
-Dropbox=0
-Eclipse=0
-eMule=0
-Essentials=0
-Evernote=0
-Everything=0
-FastStone=0
-FileZilla=0
-Firefox=0
-Firefox ESR=0
-Flash=0
-Flash (IE)=0
-foobar2000=0
-Foxit Reader=0
-GIMP=0
-Glary=0
-GOM=0
-Google Drive=0
-Google Earth=0
-Google Talk=0
-GoToMeeting=0
-Greenshot=0
-Hulu=0
-ImgBurn=0
-InfraRecorder=0
-Inkscape=0
-IrfanView=0
-iTunes=0
-Java=0
-Java 6=0
-Java 8=0
-Java x64=0
-Java x64 6=0
-Java x64 8=0
-JDK=0
-JDK 6=0
-JDK 8=0
-JDK x64=0
-JDK x64 8=0
-K-Lite Codecs=0
-K-Lite Codecs x64=0
-KeePass=0
-KeePass 2=0
-KMPlayer=0
-Launchy=0
-LibreOffice=0
-LogMeIn=0
-Malwarebytes=0
-MediaMonkey=0
-Messenger=0
-Mozy=0
-Notepad++=0
-NVDA=0
-Office=0
-OneDrive=0
-OpenOffice=0
-Opera=0
-Opera Chromium=0
-Paint.NET=0
-PDFCreator=0
-PeaZip=0
-Picasa=0
-Pidgin=0
-PuTTY=0
-Python=0
-qBittorrent=0
-QuickTime=0
-Reader=0
-RealVNC=0
-Recuva=0
-Revo=0
-Safari=0
-Shockwave=0
-Silverlight=0
-SkyDrive=0
-Skype=0
-Songbird=0
-Speccy=0
-Spotify=0
-Spybot=0
-Spybot 2=0
-Steam=0
-SugarSync=0
-SumatraPDF=0
-Super=0
-TeamViewer=0
-TeraCopy=0
-Thunderbird=0
-Thunderbird ESR=0
-Trillian=0
-TrueCrypt=0
-TweetDeck=0
-uTorrent=0
-VLC=0
-WebEx=0
-Winamp=0
-WinDirStat=0
-WinMerge=0
-WinRAR=0
-WinSCP=0
-XnView=0
-Yahoo!=0
-[NiniteServerInstall]
-.NET=0
-.NET 4=0
-.NET 4.5=0
-.NET 4.5.1=0
-.NET 4.5.2=0
-7-Zip=0
-Acrobat=0
-Ad-Aware=0
-AIM=0
-AIMP=0
-Air=0
-Audacity=0
-Auslogics=0
-Avast=0
-AVG=0
-Avira=0
-BitTorrent Sync=0
-CCCP=0
-CCleaner=0
-CDBurnerXP=0
-Chrome=0
-Citrix Receiver=0
-Classic Start=0
-CutePDF=0
-Defraggler=0
-Digsby=0
-Dropbox=0
-Eclipse=0
-eMule=0
-Essentials=0
-Evernote=0
-Everything=0
-FastStone=0
-FileZilla=0
-Firefox=0
-Firefox ESR=0
-Flash=0
-Flash (IE)=0
-foobar2000=0
-Foxit Reader=0
-GIMP=0
-Glary=0
-GOM=0
-Google Drive=0
-Google Earth=0
-Google Talk=0
-GoToMeeting=0
-Greenshot=0
-Hulu=0
-ImgBurn=0
-InfraRecorder=0
-Inkscape=0
-IrfanView=0
-iTunes=0
-Java=0
-Java 6=0
-Java 8=0
-Java x64=0
-Java x64 6=0
-Java x64 8=0
-JDK=0
-JDK 6=0
-JDK 8=0
-JDK x64=0
-JDK x64 8=0
-K-Lite Codecs=0
-K-Lite Codecs x64=0
-KeePass=0
-KeePass 2=0
-KMPlayer=0
-Launchy=0
-LibreOffice=0
-LogMeIn=0
-Malwarebytes=0
-MediaMonkey=0
-Messenger=0
-Mozy=0
-Notepad++=0
-NVDA=0
-Office=0
-OneDrive=0
-OpenOffice=0
-Opera=0
-Opera Chromium=0
-Paint.NET=0
-PDFCreator=0
-PeaZip=0
-Picasa=0
-Pidgin=0
-PuTTY=0
-Python=0
-qBittorrent=0
-QuickTime=0
-Reader=0
-RealVNC=0
-Recuva=0
-Revo=0
-Safari=0
-Shockwave=0
-Silverlight=0
-SkyDrive=0
-Skype=0
-Songbird=0
-Speccy=0
-Spotify=0
-Spybot=0
-Spybot 2=0
-Steam=0
-SugarSync=0
-SumatraPDF=0
-Super=0
-TeamViewer=0
-TeraCopy=0
-Thunderbird=0
-Thunderbird ESR=0
-Trillian=0
-TrueCrypt=0
-TweetDeck=0
-uTorrent=0
-VLC=0
-WebEx=0
-Winamp=0
-WinDirStat=0
-WinMerge=0
-WinRAR=0
-WinSCP=0
-XnView=0
-Yahoo!=0
-[NiniteServerUpdate]
-.NET=0
-.NET 4=0
-.NET 4.5=0
-.NET 4.5.1=0
-.NET 4.5.2=0
-7-Zip=0
-Acrobat=0
-Ad-Aware=0
-AIM=0
-AIMP=0
-Air=0
-Audacity=0
-Auslogics=0
-Avast=0
-AVG=0
-Avira=0
-BitTorrent Sync=0
-CCCP=0
-CCleaner=0
-CDBurnerXP=0
-Chrome=0
-Citrix Receiver=0
-Classic Start=0
-CutePDF=0
-Defraggler=0
-Digsby=0
-Dropbox=0
-Eclipse=0
-eMule=0
-Essentials=0
-Evernote=0
-Everything=0
-FastStone=0
-FileZilla=0
-Firefox=0
-Firefox ESR=0
-Flash=0
-Flash (IE)=0
-foobar2000=0
-Foxit Reader=0
-GIMP=0
-Glary=0
-GOM=0
-Google Drive=0
-Google Earth=0
-Google Talk=0
-GoToMeeting=0
-Greenshot=0
-Hulu=0
-ImgBurn=0
-InfraRecorder=0
-Inkscape=0
-IrfanView=0
-iTunes=0
-Java=0
-Java 6=0
-Java 8=0
-Java x64=0
-Java x64 6=0
-Java x64 8=0
-JDK=0
-JDK 6=0
-JDK 8=0
-JDK x64=0
-JDK x64 8=0
-K-Lite Codecs=0
-K-Lite Codecs x64=0
-KeePass=0
-KeePass 2=0
-KMPlayer=0
-Launchy=0
-LibreOffice=0
-LogMeIn=0
-Malwarebytes=0
-MediaMonkey=0
-Messenger=0
-Mozy=0
-Notepad++=0
-NVDA=0
-Office=0
-OneDrive=0
-OpenOffice=0
-Opera=0
-Opera Chromium=0
-Paint.NET=0
-PDFCreator=0
-PeaZip=0
-Picasa=0
-Pidgin=0
-PuTTY=0
-Python=0
-qBittorrent=0
-QuickTime=0
-Reader=0
-RealVNC=0
-Recuva=0
-Revo=0
-Safari=0
-Shockwave=0
-Silverlight=0
-SkyDrive=0
-Skype=0
-Songbird=0
-Speccy=0
-Spotify=0
-Spybot=0
-Spybot 2=0
-Steam=0
-SugarSync=0
-SumatraPDF=0
-Super=0
-TeamViewer=0
-TeraCopy=0
-Thunderbird=0
-Thunderbird ESR=0
-Trillian=0
-TrueCrypt=0
-TweetDeck=0
-uTorrent=0
-VLC=0
-WebEx=0
-Winamp=0
-WinDirStat=0
-WinMerge=0
-WinRAR=0
-WinSCP=0
-XnView=0
-Yahoo!=0
diff --git a/setup/windows/bin/d7ii/Config/Profiles/Diagnose and Testing.cfg b/setup/windows/bin/d7ii/Config/Profiles/Diagnose and Testing.cfg
deleted file mode 100644
index a3cbf757..00000000
--- a/setup/windows/bin/d7ii/Config/Profiles/Diagnose and Testing.cfg
+++ /dev/null
@@ -1,306 +0,0 @@
-[Maintenance3]
-2=0
-StartUpLite=0
-Autoruns=0
-AdwCleaner=0
-Revo Uninstaller=0
-PatchMyPC=0
-Piriform CCleaner=0
-Piriform Defraggler=0
-TCPOptimizer=0
-Unchecky (Install)=0
-28=0
-54=0
-59=0
-[Maintenance2]
-JRT=0
-Piriform CCleaner (Auto)=0
-Piriform Defraggler (Auto)=0
-PatchMyPC (Auto)=0
-Neutron (Sync Time)=0
-Sysinternals PageDefrag (XP)=0
-74=0
-0=0
-55=0
-53=0
-56=0
-[Maintenance1]
-4=0
-1=0
-12=0
-13=0
-67=0
-16=0
-17=0
-57=0
-62=0
-63=0
-65=0
-66=0
-68=0
-33=0
-103=0
-[Offline1]
-McAfee Stinger (Silent-Offline)=0
-MBRCheck (Offline)=0
-Emsisoft a2cmd Deep Scan (Offline)=0
-Autoruns (Verify and Log)=0
-McAfee Stinger (Offline)=0
-Autoruns=0
-VipreRescueScanner (Deep Scan)=0
-[OfflineDefaults]
-PreMalwareScan=1
-MalwareScan=1
-DelTemps=1
-PurgeSysRest=1
-FixShell=1
-RemovePolicies=1
-KillRenameOps=1
-ResetHiddenVol=0
-CopyD7=1
-IFEOModifier=1
-[Malware1]
-41=0
-29=0
-33=0
-1=0
-32=0
-6=0
-9=0
-10=0
-11=0
-18=0
-12=0
-13=0
-16=0
-17=0
-8=0
-7=0
-53=0
-34=0
-35=0
-3=0
-[Malware2]
-Kaspersky TDSSKiller (Silent)=0
-Emsisoft a2cmd - Update and Full Scan=0
-VipreRescueScanner (Auto)=0
-Sophos Virus Removal Tool=0
-McAfee Stinger (Silent)=0
-HitmanPro=0
-JRT=0
-Emsisoft a2cmd Smart Scan=0
-Emsisoft a2cmd Deep Scan=0
-McAfee Stinger=0
-VipreRescueScanner (Manual)=0
-Kaspersky TDSSKiller=0
-102=0
-0=0
-Autoruns=0
-herdProtect=0
-Should I Remove It=0
-Malwarebytes v2=0
-Autoruns (Verify and Log)=0
-34=0
-35=0
-30=0
-rkill=0
-Piriform CCleaner (Auto)=0
-VipreRescueScanner (Quick Scan)=0
-VipreRescueScanner (Deep Scan)=0
-98=0
-[Malware3]
-102=0
-0=0
-ComboFix=0
-ComboFix (Uninstall)=0
-ESET Smart Installer=0
-Malwarebytes v2=0
-AdwCleaner=0
-19=0
-Rogue Killer=0
-GMER=0
-30=0
-SuperAntiSpyware=0
-Avast! aswMBR=0
-MBRCheck=0
-MalwareBytes Anti-Rootkit=0
-Bitdefender Rootkit Remover=0
-rkill=0
-OTL=0
-CrowdInspect=0
-Everything Search Engine=0
-28=0
-herdProtect=0
-HitmanPro (Manual)=0
-105=0
-Should I Remove It=0
-Autoruns=0
-53=0
-Google Chrome Software Removal Tool=0
-CurrPorts=0
-Opened Files View=0
-[MalwareDefaults]
-KillEmAll=0
-Kill Explorer.exe=0
-RebootOnFinish=0
-[RepairDefaults]
-RebootOnAutoFinish=0
-[Repair2]
-49=0
-48=0
-50=0
-20=0
-22=0
-23=0
-24=0
-26=0
-27=0
-40=0
-41=0
-42=0
-43=0
-44=0
-45=0
-51=0
-52=0
-46=0
-47=0
-[Repair3]
-11=0
-31=0
-21=0
-24=0
-25=0
-36=0
-37=0
-38=0
-Microsoft FixIt Winsock (Auto)=0
-75=0
-[Repair1]
-Microsoft FixIt Portable=0
-Microsoft FixIt Win Update (Auto)=0
-Microsoft FixIt Winsock (Auto)=0
-39=0
-MS Office Config Analyzer Tool (Install)=0
-MS Office Config Analyzer Tool (Portable)=0
-Windows Repair AIO=0
-Windows Repair AIO (Auto)=0
-[Audit1]
-0=0
-1=1
-2=1
-3=1
-4=1
-5=1
-6=1
-CrowdInspect=1
-Should I Remove It=1
-Autoruns=1
-Belarc Advisor (Install-Report)=1
-OpenHardwareMonitor=1
-BatteryInfoView=1
-BluescreenView=1
-CrystalDiskInfo=1
-AS SSD Benchmark=1
-SpaceSniffer=1
-77=1
-78=1
-7=1
-8=1
-CurrPorts=1
-Opened Files View=1
-Piriform Speccy=1
-USB Devices View=1
-[AuditDefaults]
-MoveReportsToFTP=0
-[Audit2]
-82=1
-83=1
-84=1
-85=1
-86=1
-87=1
-88=1
-89=1
-90=1
-91=1
-92=1
-93=1
-94=1
-95=1
-96=1
-97=1
-[Tweaks1]
-Item1=0
-Item2=1
-Item3=0
-Item4=0
-Item5=0
-Item6=1
-Item7=0
-Item8=0
-Item9=0
-Item10=1
-Item11=0
-Item12=0
-Item13=1
-Item14=0
-Item15=1
-Item16=0
-Item17=0
-Item18=0
-Item19=0
-Item20=0
-Item21=0
-Item22=0
-Item23=0
-Item24=0
-Item25=0
-Item26=0
-Item27=0
-Item28=0
-Item29=0
-Item30=0
-Item31=0
-Item32=0
-Item33=0
-Item34=0
-Item35=0
-Item36=0
-Item37=0
-Item38=0
-Item39=0
-Item40=0
-Item41=0
-Item42=0
-Item43=0
-Item44=0
-Item45=0
-Item46=0
-Item47=0
-Item48=0
-Item49=0
-Item50=0
-Item51=0
-Item52=1
-Item53=0
-Item54=0
-Item55=0
-Item56=0
-Item57=0
-Item58=1
-Item59=0
-Item60=0
-Item61=0
-[chkNinite]
-0=1
-1=1
-3=1
-4=1
-5=1
-6=0
-[txtNinite]
-0=
-1=
-[optNinite]
-Cache=1
diff --git a/setup/windows/bin/d7ii/Config/Profiles/Full.cfg b/setup/windows/bin/d7ii/Config/Profiles/Full.cfg
deleted file mode 100644
index 76b89c5c..00000000
--- a/setup/windows/bin/d7ii/Config/Profiles/Full.cfg
+++ /dev/null
@@ -1,830 +0,0 @@
-[Maintenance3]
-StartUpLite=1
-Autoruns=1
-AdwCleaner=1
-Revo Uninstaller=1
-PatchMyPC=1
-Piriform CCleaner=1
-Piriform Defraggler=0
-TCPOptimizer=1
-Unchecky (Install)=1
-2=1
-28=1
-54=1
-59=1
-[Maintenance2]
-Piriform CCleaner (Auto)=1
-Piriform Defraggler (Auto)=1
-PatchMyPC (Auto)=1
-Neutron (Sync Time)=1
-Sysinternals PageDefrag (XP)=1
-74=0
-0=1
-55=1
-53=1
-2=1
-JRT=1
-56=1
-[Maintenance1]
-4=1
-1=1
-12=1
-13=1
-67=1
-16=1
-17=1
-57=1
-62=1
-63=1
-65=1
-66=1
-68=1
-33=1
-103=1
-[Offline1]
-Emsisoft a2cmd Update (Offline)=1
-Emsisoft a2cmd Full Scan (Offline)=1
-McAfee Stinger (Silent-Offline)=0
-McAfee Stinger (Offline)=0
-MBRCheck (Offline)=0
-Emsisoft a2cmd - Update and Offline Scan=1
-Emsisoft a2cmd Deep Scan (Offline)=0
-Autoruns (Verify and Log)=1
-Autoruns=0
-VipreRescueScanner (Deep Scan)=0
-[OfflineDefaults]
-PreMalwareScan=1
-MalwareScan=1
-DelTemps=1
-PurgeSysRest=1
-FixShell=1
-RemovePolicies=1
-KillRenameOps=1
-ResetHiddenVol=0
-CopyD7=1
-IFEOModifier=1
-[Malware1]
-33=1
-1=1
-32=1
-6=1
-9=1
-10=1
-11=1
-18=1
-12=1
-13=1
-16=1
-17=1
-8=1
-7=0
-41=1
-29=1
-53=1
-34=0
-35=1
-3=1
-[Malware2]
-Emsisoft a2cmd Update=1
-Emsisoft a2cmd Full Scan=1
-34=0
-35=1
-McAfee Stinger (Silent)=1
-Kaspersky TDSSKiller (Silent)=1
-HitmanPro=1
-JRT=1
-Sophos Virus Removal Tool=1
-0=1
-VipreRescueScanner (Auto)=1
-Emsisoft a2cmd - Update and Full Scan=1
-Emsisoft a2cmd Smart Scan=0
-Emsisoft a2cmd Deep Scan=1
-McAfee Stinger=0
-VipreRescueScanner (Manual)=0
-Kaspersky TDSSKiller=0
-102=0
-Autoruns=1
-herdProtect=1
-Should I Remove It=1
-Malwarebytes v2=1
-Autoruns (Verify and Log)=1
-30=1
-98=1
-rkill=1
-VipreRescueScanner (Quick Scan)=0
-VipreRescueScanner (Deep Scan)=1
-Piriform CCleaner (Auto)=1
-[Malware3]
-ComboFix=1
-ComboFix (Uninstall)=1
-ESET Smart Installer=1
-VipreRescueScanner=0
-Malwarebytes v2=1
-AdwCleaner=1
-19=1
-Rogue Killer=1
-GMER=0
-102=0
-0=0
-SuperAntiSpyware=1
-Avast! aswMBR=1
-MBRCheck=1
-MalwareBytes Anti-Rootkit=1
-Bitdefender Rootkit Remover=1
-rkill=1
-OTL=0
-CrowdInspect=0
-Everything Search Engine=1
-30=1
-28=1
-herdProtect=1
-Should I Remove It=1
-Autoruns=1
-Google Chrome Software Removal Tool=1
-HitmanPro (Manual)=1
-105=1
-53=1
-CurrPorts=1
-Opened Files View=1
-[MalwareDefaults]
-KillEmAll=1
-Kill Explorer.exe=1
-RebootOnFinish=0
-[RepairDefaults]
-RebootOnAutoFinish=0
-[Repair2]
-49=1
-48=1
-50=1
-20=1
-22=1
-23=1
-24=1
-26=1
-27=1
-40=1
-41=1
-42=1
-43=1
-44=1
-45=1
-51=1
-52=1
-46=1
-47=0
-[Repair3]
-11=1
-31=0
-21=1
-24=1
-25=1
-36=1
-37=1
-38=1
-Microsoft FixIt Winsock (Auto)=1
-75=0
-[Repair1]
-Microsoft FixIt Portable=0
-Microsoft FixIt Win Update (Auto)=1
-Microsoft FixIt Winsock (Auto)=1
-39=0
-MS Office Config Analyzer Tool (Install)=0
-MS Office Config Analyzer Tool (Portable)=1
-Windows Repair AIO=0
-Windows Repair AIO (Auto)=1
-[Audit1]
-0=1
-1=0
-2=1
-3=1
-4=1
-5=1
-6=1
-Autoruns=0
-CrowdInspect=0
-Belarc Advisor (Install-Report)=0
-OpenHardwareMonitor=0
-BatteryInfoView=0
-BluescreenView=0
-CrystalDiskInfo=0
-AS SSD Benchmark=0
-SpaceSniffer=0
-77=0
-78=0
-Should I Remove It=0
-7=1
-8=1
-CurrPorts=0
-Opened Files View=0
-Piriform Speccy=0
-USB Devices View=0
-[AuditDefaults]
-MoveReportsToFTP=0
-[Audit2]
-82=0
-83=0
-84=0
-85=0
-86=0
-87=0
-88=0
-89=0
-90=0
-91=0
-92=0
-93=0
-94=0
-95=0
-96=0
-97=0
-[Tweaks1]
-Item1=0
-Item2=1
-Item3=0
-Item4=0
-Item5=0
-Item6=1
-Item7=0
-Item8=0
-Item9=0
-Item10=1
-Item11=0
-Item12=0
-Item13=1
-Item14=0
-Item15=1
-Item16=0
-Item17=0
-Item18=0
-Item19=0
-Item20=0
-Item21=0
-Item22=0
-Item23=0
-Item24=0
-Item25=0
-Item26=0
-Item27=0
-Item28=0
-Item29=0
-Item30=0
-Item31=0
-Item32=0
-Item33=0
-Item34=0
-Item35=0
-Item36=0
-Item37=0
-Item38=0
-Item39=0
-Item40=0
-Item41=0
-Item42=0
-Item43=0
-Item44=0
-Item45=0
-Item46=0
-Item47=0
-Item48=0
-Item49=0
-Item50=0
-Item51=0
-Item52=1
-Item53=0
-Item54=0
-Item55=0
-Item56=0
-Item57=0
-Item58=1
-Item59=0
-Item60=0
-Item61=0
-AdwCleaner=1
-[chkNinite]
-0=1
-1=1
-3=1
-4=1
-5=1
-6=0
-[txtNinite]
-0=
-1=
-[NiniteWorkstationInstall]
-.NET=0
-.NET 4=0
-.NET 4.5=0
-.NET 4.5.1=0
-.NET 4.5.2=0
-7-Zip=0
-Acrobat=0
-Ad-Aware=0
-AIM=0
-AIMP=0
-Air=0
-Audacity=0
-Auslogics=0
-Avast=0
-AVG=0
-Avira=0
-BitTorrent Sync=0
-CCCP=0
-CCleaner=0
-CDBurnerXP=0
-Chrome=0
-Citrix Receiver=0
-Classic Start=0
-CutePDF=0
-Defraggler=0
-Digsby=0
-Dropbox=0
-Eclipse=0
-eMule=0
-Essentials=0
-Evernote=0
-Everything=0
-FastStone=0
-FileZilla=0
-Firefox=0
-Firefox ESR=0
-Flash=0
-Flash (IE)=0
-foobar2000=0
-Foxit Reader=0
-GIMP=0
-Glary=0
-GOM=0
-Google Drive=0
-Google Earth=0
-Google Talk=0
-GoToMeeting=0
-Greenshot=0
-Hulu=0
-ImgBurn=0
-InfraRecorder=0
-Inkscape=0
-IrfanView=0
-iTunes=0
-Java=0
-Java 6=0
-Java 8=0
-Java x64=0
-Java x64 6=0
-Java x64 8=0
-JDK=0
-JDK 6=0
-JDK 8=0
-JDK x64=0
-JDK x64 8=0
-K-Lite Codecs=0
-K-Lite Codecs x64=0
-KeePass=0
-KeePass 2=0
-KMPlayer=0
-Launchy=0
-LibreOffice=0
-LogMeIn=0
-Malwarebytes=0
-MediaMonkey=0
-Messenger=0
-Mozy=0
-Notepad++=0
-NVDA=0
-Office=0
-OneDrive=0
-OpenOffice=0
-Opera=0
-Opera Chromium=0
-Paint.NET=0
-PDFCreator=0
-PeaZip=0
-Picasa=0
-Pidgin=0
-PuTTY=0
-Python=0
-qBittorrent=0
-QuickTime=0
-Reader=0
-RealVNC=0
-Recuva=0
-Revo=0
-Safari=0
-Shockwave=0
-Silverlight=0
-SkyDrive=0
-Skype=0
-Songbird=0
-Speccy=0
-Spotify=0
-Spybot=0
-Spybot 2=0
-Steam=0
-SugarSync=0
-SumatraPDF=0
-Super=0
-TeamViewer=0
-TeraCopy=0
-Thunderbird=0
-Thunderbird ESR=0
-Trillian=0
-TrueCrypt=0
-TweetDeck=0
-uTorrent=0
-VLC=0
-WebEx=0
-Winamp=0
-WinDirStat=0
-WinMerge=0
-WinRAR=0
-WinSCP=0
-XnView=0
-Yahoo!=0
-[NiniteWorkstationUpdate]
-.NET=0
-.NET 4=0
-.NET 4.5=0
-.NET 4.5.1=0
-.NET 4.5.2=0
-7-Zip=0
-Acrobat=0
-Ad-Aware=0
-AIM=0
-AIMP=0
-Air=0
-Audacity=0
-Auslogics=0
-Avast=0
-AVG=0
-Avira=0
-BitTorrent Sync=0
-CCCP=0
-CCleaner=0
-CDBurnerXP=0
-Chrome=0
-Citrix Receiver=0
-Classic Start=0
-CutePDF=0
-Defraggler=0
-Digsby=0
-Dropbox=0
-Eclipse=0
-eMule=0
-Essentials=0
-Evernote=0
-Everything=0
-FastStone=0
-FileZilla=0
-Firefox=0
-Firefox ESR=0
-Flash=0
-Flash (IE)=0
-foobar2000=0
-Foxit Reader=0
-GIMP=0
-Glary=0
-GOM=0
-Google Drive=0
-Google Earth=0
-Google Talk=0
-GoToMeeting=0
-Greenshot=0
-Hulu=0
-ImgBurn=0
-InfraRecorder=0
-Inkscape=0
-IrfanView=0
-iTunes=0
-Java=0
-Java 6=0
-Java 8=0
-Java x64=0
-Java x64 6=0
-Java x64 8=0
-JDK=0
-JDK 6=0
-JDK 8=0
-JDK x64=0
-JDK x64 8=0
-K-Lite Codecs=0
-K-Lite Codecs x64=0
-KeePass=0
-KeePass 2=0
-KMPlayer=0
-Launchy=0
-LibreOffice=0
-LogMeIn=0
-Malwarebytes=0
-MediaMonkey=0
-Messenger=0
-Mozy=0
-Notepad++=0
-NVDA=0
-Office=0
-OneDrive=0
-OpenOffice=0
-Opera=0
-Opera Chromium=0
-Paint.NET=0
-PDFCreator=0
-PeaZip=0
-Picasa=0
-Pidgin=0
-PuTTY=0
-Python=0
-qBittorrent=0
-QuickTime=0
-Reader=0
-RealVNC=0
-Recuva=0
-Revo=0
-Safari=0
-Shockwave=0
-Silverlight=0
-SkyDrive=0
-Skype=0
-Songbird=0
-Speccy=0
-Spotify=0
-Spybot=0
-Spybot 2=0
-Steam=0
-SugarSync=0
-SumatraPDF=0
-Super=0
-TeamViewer=0
-TeraCopy=0
-Thunderbird=0
-Thunderbird ESR=0
-Trillian=0
-TrueCrypt=0
-TweetDeck=0
-uTorrent=0
-VLC=0
-WebEx=0
-Winamp=0
-WinDirStat=0
-WinMerge=0
-WinRAR=0
-WinSCP=0
-XnView=0
-Yahoo!=0
-[NiniteServerInstall]
-.NET=0
-.NET 4=0
-.NET 4.5=0
-.NET 4.5.1=0
-.NET 4.5.2=0
-7-Zip=0
-Acrobat=0
-Ad-Aware=0
-AIM=0
-AIMP=0
-Air=0
-Audacity=0
-Auslogics=0
-Avast=0
-AVG=0
-Avira=0
-BitTorrent Sync=0
-CCCP=0
-CCleaner=0
-CDBurnerXP=0
-Chrome=0
-Citrix Receiver=0
-Classic Start=0
-CutePDF=0
-Defraggler=0
-Digsby=0
-Dropbox=0
-Eclipse=0
-eMule=0
-Essentials=0
-Evernote=0
-Everything=0
-FastStone=0
-FileZilla=0
-Firefox=0
-Firefox ESR=0
-Flash=0
-Flash (IE)=0
-foobar2000=0
-Foxit Reader=0
-GIMP=0
-Glary=0
-GOM=0
-Google Drive=0
-Google Earth=0
-Google Talk=0
-GoToMeeting=0
-Greenshot=0
-Hulu=0
-ImgBurn=0
-InfraRecorder=0
-Inkscape=0
-IrfanView=0
-iTunes=0
-Java=0
-Java 6=0
-Java 8=0
-Java x64=0
-Java x64 6=0
-Java x64 8=0
-JDK=0
-JDK 6=0
-JDK 8=0
-JDK x64=0
-JDK x64 8=0
-K-Lite Codecs=0
-K-Lite Codecs x64=0
-KeePass=0
-KeePass 2=0
-KMPlayer=0
-Launchy=0
-LibreOffice=0
-LogMeIn=0
-Malwarebytes=0
-MediaMonkey=0
-Messenger=0
-Mozy=0
-Notepad++=0
-NVDA=0
-Office=0
-OneDrive=0
-OpenOffice=0
-Opera=0
-Opera Chromium=0
-Paint.NET=0
-PDFCreator=0
-PeaZip=0
-Picasa=0
-Pidgin=0
-PuTTY=0
-Python=0
-qBittorrent=0
-QuickTime=0
-Reader=0
-RealVNC=0
-Recuva=0
-Revo=0
-Safari=0
-Shockwave=0
-Silverlight=0
-SkyDrive=0
-Skype=0
-Songbird=0
-Speccy=0
-Spotify=0
-Spybot=0
-Spybot 2=0
-Steam=0
-SugarSync=0
-SumatraPDF=0
-Super=0
-TeamViewer=0
-TeraCopy=0
-Thunderbird=0
-Thunderbird ESR=0
-Trillian=0
-TrueCrypt=0
-TweetDeck=0
-uTorrent=0
-VLC=0
-WebEx=0
-Winamp=0
-WinDirStat=0
-WinMerge=0
-WinRAR=0
-WinSCP=0
-XnView=0
-Yahoo!=0
-[NiniteServerUpdate]
-.NET=0
-.NET 4=0
-.NET 4.5=0
-.NET 4.5.1=0
-.NET 4.5.2=0
-7-Zip=0
-Acrobat=0
-Ad-Aware=0
-AIM=0
-AIMP=0
-Air=0
-Audacity=0
-Auslogics=0
-Avast=0
-AVG=0
-Avira=0
-BitTorrent Sync=0
-CCCP=0
-CCleaner=0
-CDBurnerXP=0
-Chrome=0
-Citrix Receiver=0
-Classic Start=0
-CutePDF=0
-Defraggler=0
-Digsby=0
-Dropbox=0
-Eclipse=0
-eMule=0
-Essentials=0
-Evernote=0
-Everything=0
-FastStone=0
-FileZilla=0
-Firefox=0
-Firefox ESR=0
-Flash=0
-Flash (IE)=0
-foobar2000=0
-Foxit Reader=0
-GIMP=0
-Glary=0
-GOM=0
-Google Drive=0
-Google Earth=0
-Google Talk=0
-GoToMeeting=0
-Greenshot=0
-Hulu=0
-ImgBurn=0
-InfraRecorder=0
-Inkscape=0
-IrfanView=0
-iTunes=0
-Java=0
-Java 6=0
-Java 8=0
-Java x64=0
-Java x64 6=0
-Java x64 8=0
-JDK=0
-JDK 6=0
-JDK 8=0
-JDK x64=0
-JDK x64 8=0
-K-Lite Codecs=0
-K-Lite Codecs x64=0
-KeePass=0
-KeePass 2=0
-KMPlayer=0
-Launchy=0
-LibreOffice=0
-LogMeIn=0
-Malwarebytes=0
-MediaMonkey=0
-Messenger=0
-Mozy=0
-Notepad++=0
-NVDA=0
-Office=0
-OneDrive=0
-OpenOffice=0
-Opera=0
-Opera Chromium=0
-Paint.NET=0
-PDFCreator=0
-PeaZip=0
-Picasa=0
-Pidgin=0
-PuTTY=0
-Python=0
-qBittorrent=0
-QuickTime=0
-Reader=0
-RealVNC=0
-Recuva=0
-Revo=0
-Safari=0
-Shockwave=0
-Silverlight=0
-SkyDrive=0
-Skype=0
-Songbird=0
-Speccy=0
-Spotify=0
-Spybot=0
-Spybot 2=0
-Steam=0
-SugarSync=0
-SumatraPDF=0
-Super=0
-TeamViewer=0
-TeraCopy=0
-Thunderbird=0
-Thunderbird ESR=0
-Trillian=0
-TrueCrypt=0
-TweetDeck=0
-uTorrent=0
-VLC=0
-WebEx=0
-Winamp=0
-WinDirStat=0
-WinMerge=0
-WinRAR=0
-WinSCP=0
-XnView=0
-Yahoo!=0
-[optNinite]
-Cache=1
diff --git a/setup/windows/bin/d7ii/Config/Profiles/Quick.cfg b/setup/windows/bin/d7ii/Config/Profiles/Quick.cfg
deleted file mode 100644
index f6a8a2e0..00000000
--- a/setup/windows/bin/d7ii/Config/Profiles/Quick.cfg
+++ /dev/null
@@ -1,290 +0,0 @@
-[Maintenance3]
-2=0
-StartUpLite=1
-Autoruns=1
-AdwCleaner=1
-Revo Uninstaller=0
-PatchMyPC=0
-Piriform CCleaner=0
-Piriform Defraggler=0
-TCPOptimizer=0
-Unchecky (Install)=0
-28=1
-54=0
-59=0
-[Maintenance2]
-JRT=1
-Piriform CCleaner (Auto)=1
-Piriform Defraggler (Auto)=0
-PatchMyPC (Auto)=1
-Neutron (Sync Time)=1
-Sysinternals PageDefrag (XP)=0
-74=0
-0=1
-55=1
-53=1
-56=1
-[Maintenance1]
-4=1
-1=1
-12=1
-13=1
-67=1
-16=0
-17=0
-57=1
-62=1
-63=0
-65=1
-66=0
-68=1
-33=1
-103=1
-[Offline1]
-Emsisoft a2cmd Deep Scan (Offline)=0
-VipreRescueScanner (Deep Scan)=0
-McAfee Stinger (Silent-Offline)=0
-McAfee Stinger (Offline)=0
-MBRCheck (Offline)=0
-Autoruns=0
-[OfflineDefaults]
-PreMalwareScan=1
-MalwareScan=1
-DelTemps=1
-PurgeSysRest=1
-FixShell=1
-RemovePolicies=1
-KillRenameOps=1
-ResetHiddenVol=0
-CopyD7=1
-IFEOModifier=1
-[Malware1]
-41=0
-29=0
-33=1
-1=1
-32=1
-6=1
-9=1
-10=1
-11=1
-18=1
-12=1
-13=1
-16=1
-17=0
-8=1
-7=0
-53=0
-3=1
-[Malware2]
-34=1
-35=0
-Emsisoft a2cmd Smart Scan=1
-Emsisoft a2cmd Deep Scan=0
-Sophos Virus Removal Tool=0
-McAfee Stinger (Silent)=0
-McAfee Stinger=0
-VipreRescueScanner (Quick Scan)=1
-VipreRescueScanner (Deep Scan)=0
-30=0
-Kaspersky TDSSKiller (Silent)=1
-Kaspersky TDSSKiller=0
-HitmanPro=1
-JRT=1
-rkill=0
-102=0
-0=1
-Piriform CCleaner (Auto)=0
-98=0
-[Malware3]
-ComboFix=0
-ComboFix (Uninstall)=0
-herdProtect=0
-ESET Smart Installer=0
-Malwarebytes v2=1
-SuperAntiSpyware=0
-AdwCleaner=1
-19=1
-Avast! aswMBR=0
-MBRCheck=0
-MalwareBytes Anti-Rootkit=1
-Bitdefender Rootkit Remover=0
-Rogue Killer=0
-GMER=0
-OTL=0
-CrowdInspect=0
-Should I Remove It=0
-Autoruns=1
-Everything Search Engine=0
-28=1
-Google Chrome Software Removal Tool=0
-HitmanPro (Manual)=0
-105=1
-53=0
-CurrPorts=0
-Opened Files View=0
-[MalwareDefaults]
-KillEmAll=1
-Kill Explorer.exe=1
-RebootOnFinish=0
-[RepairDefaults]
-RebootOnAutoFinish=0
-[Repair2]
-49=0
-48=0
-50=0
-20=0
-22=1
-23=1
-24=1
-26=1
-27=1
-40=1
-41=1
-42=1
-43=1
-44=1
-45=1
-51=1
-52=1
-46=0
-47=0
-[Repair3]
-11=1
-31=0
-21=1
-24=1
-25=0
-36=0
-37=1
-38=0
-Microsoft FixIt Winsock (Auto)=1
-75=0
-[Repair1]
-Microsoft FixIt Portable=0
-Microsoft FixIt Win Update (Auto)=1
-MS Office Config Analyzer Tool (Install)=0
-MS Office Config Analyzer Tool (Portable)=0
-Windows Repair AIO=0
-Windows Repair AIO (Auto)=0
-[Audit1]
-0=1
-1=0
-2=1
-3=1
-4=1
-5=1
-6=1
-CrowdInspect=0
-Should I Remove It=0
-Autoruns=0
-Belarc Advisor (Install-Report)=0
-OpenHardwareMonitor=0
-BatteryInfoView=0
-BluescreenView=0
-CrystalDiskInfo=0
-AS SSD Benchmark=0
-SpaceSniffer=0
-77=0
-78=0
-7=1
-8=1
-CurrPorts=0
-Opened Files View=0
-Piriform Speccy=0
-USB Devices View=0
-[AuditDefaults]
-MoveReportsToFTP=0
-[Audit2]
-82=0
-83=0
-84=0
-85=0
-86=0
-87=0
-88=0
-89=0
-90=0
-91=0
-92=0
-93=0
-94=0
-95=0
-96=0
-97=0
-[Tweaks1]
-Item1=0
-Item2=1
-Item3=0
-Item4=0
-Item5=0
-Item6=1
-Item7=0
-Item8=0
-Item9=0
-Item10=1
-Item11=0
-Item12=0
-Item13=1
-Item14=0
-Item15=1
-Item16=0
-Item17=0
-Item18=0
-Item19=0
-Item20=0
-Item21=0
-Item22=0
-Item23=0
-Item24=0
-Item25=0
-Item26=0
-Item27=0
-Item28=0
-Item29=0
-Item30=0
-Item31=0
-Item32=0
-Item33=0
-Item34=0
-Item35=0
-Item36=0
-Item37=0
-Item38=0
-Item39=0
-Item40=0
-Item41=0
-Item42=0
-Item43=0
-Item44=0
-Item45=0
-Item46=0
-Item47=0
-Item48=0
-Item49=0
-Item50=0
-Item51=0
-Item52=1
-Item53=0
-Item54=0
-Item55=0
-Item56=0
-Item57=0
-Item58=1
-Item59=0
-Item60=0
-Item61=0
-AdwCleaner=1
-[chkNinite]
-0=1
-1=1
-3=1
-4=1
-5=1
-6=0
-[txtNinite]
-0=
-1=
-[optNinite]
-Cache=1
diff --git a/setup/windows/bin/d7ii/Config/Reg.Settings.dat b/setup/windows/bin/d7ii/Config/Reg.Settings.dat
deleted file mode 100644
index c99d5622..00000000
Binary files a/setup/windows/bin/d7ii/Config/Reg.Settings.dat and /dev/null differ
diff --git a/setup/windows/bin/d7ii/Config/RegLinks.txt b/setup/windows/bin/d7ii/Config/RegLinks.txt
deleted file mode 100644
index 8b322558..00000000
--- a/setup/windows/bin/d7ii/Config/RegLinks.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-WinNT Current Version,HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion
-Open Optical Drive Filters,HKLM\SYSTEM\CurrentControlSet\Control\Class\{4D36E965-E325-11CE-BFC1-08002BE10318}
diff --git a/setup/windows/bin/d7ii/Config/SiteSearch.txt b/setup/windows/bin/d7ii/Config/SiteSearch.txt
deleted file mode 100644
index 93b8b2a0..00000000
--- a/setup/windows/bin/d7ii/Config/SiteSearch.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-google.com
-foolishit.com
-foolishtech.com
-technibble.com
-technet.microsoft.com
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/AuditBox1.cfg b/setup/windows/bin/d7ii/Config/SortOrder/AuditBox1.cfg
deleted file mode 100644
index 1018d59c..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/AuditBox1.cfg
+++ /dev/null
@@ -1 +0,0 @@
-CrowdInspect|Should I Remove It|Autoruns|Belarc Advisor (Install-Report)|OpenHardwareMonitor|BatteryInfoView|BluescreenView|CrystalDiskInfo|AS SSD Benchmark|SpaceSniffer|77|78|CurrPorts|Opened Files View|Piriform Speccy|USB Devices View|
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/AuditBox2.cfg b/setup/windows/bin/d7ii/Config/SortOrder/AuditBox2.cfg
deleted file mode 100644
index 5b5d1cfd..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/AuditBox2.cfg
+++ /dev/null
@@ -1 +0,0 @@
-82|83|84|85|86|87|88|89|90|91|92|93|94|95|96|97|
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/CustomMaint b/setup/windows/bin/d7ii/Config/SortOrder/CustomMaint
deleted file mode 100644
index 8b137891..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/CustomMaint
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/CustomTools.cfg b/setup/windows/bin/d7ii/Config/SortOrder/CustomTools.cfg
deleted file mode 100644
index a26b06c4..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/CustomTools.cfg
+++ /dev/null
@@ -1 +0,0 @@
-CurrPorts|Opened Files View|RegFromApp-x32|RegFromApp-x64|USB Devices View|WhatIsHang|
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/MaintBox1.cfg b/setup/windows/bin/d7ii/Config/SortOrder/MaintBox1.cfg
deleted file mode 100644
index 7d8eb8d9..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/MaintBox1.cfg
+++ /dev/null
@@ -1 +0,0 @@
-4|33|1|12|13|103|67|16|17|57|62|63|65|66|68|
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/MaintBox2.cfg b/setup/windows/bin/d7ii/Config/SortOrder/MaintBox2.cfg
deleted file mode 100644
index caa7bfe8..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/MaintBox2.cfg
+++ /dev/null
@@ -1 +0,0 @@
-JRT|Piriform CCleaner (Auto)|Piriform Defraggler (Auto)|PatchMyPC (Auto)|Neutron (Sync Time)|Sysinternals PageDefrag (XP)|74|0|55|53|56|
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/MaintBox3.cfg b/setup/windows/bin/d7ii/Config/SortOrder/MaintBox3.cfg
deleted file mode 100644
index 9e760e84..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/MaintBox3.cfg
+++ /dev/null
@@ -1 +0,0 @@
-2|StartUpLite|Autoruns|AdwCleaner|Revo Uninstaller|PatchMyPC|Piriform CCleaner|Piriform Defraggler|TCPOptimizer|Unchecky (Install)|54|59|28|
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/MalwareBox1.cfg b/setup/windows/bin/d7ii/Config/SortOrder/MalwareBox1.cfg
deleted file mode 100644
index 4a075621..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/MalwareBox1.cfg
+++ /dev/null
@@ -1 +0,0 @@
-3|41|33|32|6|9|10|11|18|12|13|8|
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/MalwareBox2.cfg b/setup/windows/bin/d7ii/Config/SortOrder/MalwareBox2.cfg
deleted file mode 100644
index ef117ee8..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/MalwareBox2.cfg
+++ /dev/null
@@ -1 +0,0 @@
-Create Restore Point|Disable Windows Updates|98|RKill (Auto)|Kaspersky TDSSKiller (Silent)|WizardKit System Diagnostics|34|Emsisoft a2cmd Deep Scan|HitmanPro|1|98|
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/MalwareBox3.cfg b/setup/windows/bin/d7ii/Config/SortOrder/MalwareBox3.cfg
deleted file mode 100644
index 8fe9ba8c..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/MalwareBox3.cfg
+++ /dev/null
@@ -1 +0,0 @@
-Malwarebytes Download|Malwarebytes Install|Malwarebytes Scan|Malwarebytes Uninstall|AdwCleaner (Updated)|IObit Uninstaller|Enable Windows Updates|Bitdefender Rootkit Remover|
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/MalwarePost.cfg b/setup/windows/bin/d7ii/Config/SortOrder/MalwarePost.cfg
deleted file mode 100644
index 34fcac3c..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/MalwarePost.cfg
+++ /dev/null
@@ -1 +0,0 @@
-~MalwareScan|~dUninstaller (UI)|~Repair Permissions|~Reset Networking|~Repair Windows Update|~Repair WMI/WBEM/DCOM|~Repair Windows Firewall|~Reset Windows Firewall|~Repair System Restore|~Repair Security Center|~System Restore Point (post)
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/MalwarePre.cfg b/setup/windows/bin/d7ii/Config/SortOrder/MalwarePre.cfg
deleted file mode 100644
index 1cc83eea..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/MalwarePre.cfg
+++ /dev/null
@@ -1 +0,0 @@
-|||||||||||
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/OfflineBox1.cfg b/setup/windows/bin/d7ii/Config/SortOrder/OfflineBox1.cfg
deleted file mode 100644
index 08b6cb1e..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/OfflineBox1.cfg
+++ /dev/null
@@ -1 +0,0 @@
-Emsisoft a2cmd Deep Scan (Offline)|VipreRescueScanner (Deep Scan)|McAfee Stinger (Silent-Offline)|McAfee Stinger (Offline)|MBRCheck (Offline)|Autoruns|
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/RepairBox1.cfg b/setup/windows/bin/d7ii/Config/SortOrder/RepairBox1.cfg
deleted file mode 100644
index 92413abd..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/RepairBox1.cfg
+++ /dev/null
@@ -1 +0,0 @@
-Microsoft FixIt Portable|Microsoft FixIt Win Update (Auto)|MS Office Config Analyzer Tool (Install)|MS Office Config Analyzer Tool (Portable)|Windows Repair AIO|Windows Repair AIO (Auto)|
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/RepairBox2.cfg b/setup/windows/bin/d7ii/Config/SortOrder/RepairBox2.cfg
deleted file mode 100644
index bfec48b6..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/RepairBox2.cfg
+++ /dev/null
@@ -1 +0,0 @@
-49|48|50|20|22|23|24|26|27|40|41|42|43|44|45|51|52|46|47|
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/RepairBox3.cfg b/setup/windows/bin/d7ii/Config/SortOrder/RepairBox3.cfg
deleted file mode 100644
index c7eb9173..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/RepairBox3.cfg
+++ /dev/null
@@ -1 +0,0 @@
-11|31|21|24|25|36|37|38|Microsoft FixIt Winsock (Auto)|75|
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/RepairWin.cfg b/setup/windows/bin/d7ii/Config/SortOrder/RepairWin.cfg
deleted file mode 100644
index 0e54a358..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/RepairWin.cfg
+++ /dev/null
@@ -1 +0,0 @@
-~Default Start Menu LNKs|~Fix File Associations|~Rebuild Icon Cache|~Remove Policies|~Fix Device Manager|~Clear Print Spooler|~Windows Update Svcs|~WMI/WBEM/DCOM|~Security Center|~Windows Defender|~Safe Mode Services|~System Restore|~Installer Service|~VSS Service|~Repair Permissions|~Regsvr32 IE DLLs|~DISM RestoreHealth|~System File Checker
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/TweaksBox1.cfg b/setup/windows/bin/d7ii/Config/SortOrder/TweaksBox1.cfg
deleted file mode 100644
index 8b137891..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/TweaksBox1.cfg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/d7IIEndSession.cfg b/setup/windows/bin/d7ii/Config/SortOrder/d7IIEndSession.cfg
deleted file mode 100644
index a4ac0d7f..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/d7IIEndSession.cfg
+++ /dev/null
@@ -1 +0,0 @@
-28|
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/d7IIStartSession.cfg b/setup/windows/bin/d7ii/Config/SortOrder/d7IIStartSession.cfg
deleted file mode 100644
index a01867fc..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/d7IIStartSession.cfg
+++ /dev/null
@@ -1 +0,0 @@
-32|Neutron (Sync Time)|28|
diff --git a/setup/windows/bin/d7ii/Config/SortOrder/d7IIStartup.cfg b/setup/windows/bin/d7ii/Config/SortOrder/d7IIStartup.cfg
deleted file mode 100644
index a4ac0d7f..00000000
--- a/setup/windows/bin/d7ii/Config/SortOrder/d7IIStartup.cfg
+++ /dev/null
@@ -1 +0,0 @@
-28|
diff --git a/setup/windows/bin/d7ii/Config/Templates/Email/BreakFix Report.txt b/setup/windows/bin/d7ii/Config/Templates/Email/BreakFix Report.txt
deleted file mode 100644
index 2c8ebe2c..00000000
--- a/setup/windows/bin/d7ii/Config/Templates/Email/BreakFix Report.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-{%name% / #%num% / %date% - Break/Fix Report}%name% / #%num% / %date% - Break/Fix Report
-
-Service Type: On-Site
-Service Rate: $XX.XX/hr.
-Service Start Time: XXXXXX
-Service End Time: XXXXXX
-Time Logged: X hours
-
-Service Type: Remote
-Service Rate: $XX.XX/hr. (or use flat-rate)
-Service Start Time: XXXXXX
-Service End Time: XXXXXX
-Time Logged: X hours
-
-Service Type: Shop Service
-Service Rate: $XX.XX/hr. (or use flat-rate)
-Service Start Time: XXXXXX
-Service End Time: XXXXXX
-Time Logged: X hours
-
-Total Time Logged: XX hours
diff --git a/setup/windows/bin/d7ii/Config/Templates/Email/Client Diagnostic Report.txt b/setup/windows/bin/d7ii/Config/Templates/Email/Client Diagnostic Report.txt
deleted file mode 100644
index 18105c0e..00000000
--- a/setup/windows/bin/d7ii/Config/Templates/Email/Client Diagnostic Report.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-{%name% / #%num% / %date% - Break/Fix Report}%name% / #%num% / %date% - Diagnostics Completed
-
-We have finished looking at your computer and
-need your authorization to make one or more changes.
-
-Please get in touch with us by:
-
-Phone:
-Email:
-Website: www.yourwebsite.com
-
-We won't continue working, until after you have
-authorized us to do so.
-
-You can find our Terms of Service online www.yourterms.com
diff --git a/setup/windows/bin/d7ii/Config/Templates/Email/Contract Report.txt b/setup/windows/bin/d7ii/Config/Templates/Email/Contract Report.txt
deleted file mode 100644
index dad8df64..00000000
--- a/setup/windows/bin/d7ii/Config/Templates/Email/Contract Report.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-{%name% / #%num% / %date% - Break/Fix Report}%name% / #%num% / %date% - Contract Report
-
-Service Type: On-Site
-Service Start Time: XXXXXX
-Service End Time: XXXXXX
-Time Logged: X hours
-
-Service Type: Remote
-Service Start Time: XXXXXX
-Service End Time: XXXXXX
-Time Logged: X hours
-
-Service Type: Shop Service
-Service Start Time: XXXXXX
-Service End Time: XXXXXX
-Time Logged: X hours
-
-Total Time Logged: XX hours
-
-Additional Expenses: (list items here)
diff --git a/setup/windows/bin/d7ii/Config/Templates/Notes/Company Info.txt b/setup/windows/bin/d7ii/Config/Templates/Notes/Company Info.txt
deleted file mode 100644
index 04c34628..00000000
--- a/setup/windows/bin/d7ii/Config/Templates/Notes/Company Info.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-Company Name:
-Address:
-Address 2:
-City:
-State:
-Zip:
-Phone:
-Email:
diff --git a/setup/windows/bin/d7ii/Config/Templates/Notes/Detected Infections.txt b/setup/windows/bin/d7ii/Config/Templates/Notes/Detected Infections.txt
deleted file mode 100644
index 5081178a..00000000
--- a/setup/windows/bin/d7ii/Config/Templates/Notes/Detected Infections.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-Scans have detected threats on the computer:
-
-Malwarebytes: YES (optionally list the # and type of infections here)
-Super-AntiSpyware:
-HitmanPro:
-*Add Your AV Product Here*:
diff --git a/setup/windows/bin/d7ii/Config/Templates/Notes/Equipment Received.txt b/setup/windows/bin/d7ii/Config/Templates/Notes/Equipment Received.txt
deleted file mode 100644
index 87200d41..00000000
--- a/setup/windows/bin/d7ii/Config/Templates/Notes/Equipment Received.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-PC Make/Model:
-Type: (desktop, laptop, tablet, etc.)
-OS Type:
-Pwr Cable:
-Mouse:
-Keyboard:
-WebCam:
-ThumbDrive (size): YES (16gb)
-OS Media: NO
-Printer Make/Model:
-Printer USB Cable/Pwr Cable: YES/YES
-Other:
diff --git a/setup/windows/bin/d7ii/Config/Templates/Notes/User Info.txt b/setup/windows/bin/d7ii/Config/Templates/Notes/User Info.txt
deleted file mode 100644
index 1d9f905f..00000000
--- a/setup/windows/bin/d7ii/Config/Templates/Notes/User Info.txt
+++ /dev/null
@@ -1,23 +0,0 @@
-Primary Contact Name:
-Title:
-Address:
-Address 2:
-City:
-State:
-Zip:
-Phone:
-Email:
-User Account:
-Authorized Removal Of Password: YES
-
-Secondary Contact Name:
-Title:
-Address:
-Address 2:
-City:
-State:
-Zip:
-Phone:
-Email:
-User Account:
-Authorized Removal Of Password: NO
diff --git a/setup/windows/bin/d7ii/Config/Templates/Snippets/Diagnostics - Maintenance Needed.txt b/setup/windows/bin/d7ii/Config/Templates/Snippets/Diagnostics - Maintenance Needed.txt
deleted file mode 100644
index 511bf57b..00000000
--- a/setup/windows/bin/d7ii/Config/Templates/Snippets/Diagnostics - Maintenance Needed.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-We have determined that your PC is not working as fast as it should be.
-We can improve speeds, install updates, and fix your security.
-
-But first we need your permission, so please contact us by:
-
-Phone:
-Email:
-Website: www.yourwebsite.comn
-
-Did you know you can have us maintain your computer 24/7/365?
-Take a look at our Maintenance Package here.
-This package includes:
-
-Anti-Virus Software
-Automatic Updates
-Automated Maintenance
-We Block Known Bad Websites
-Keeps Junk Programs Off Your PC
-Easy Access To Our Team Of Experts
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/Templates/Snippets/Diagnostics - PC Repair Needed.txt b/setup/windows/bin/d7ii/Config/Templates/Snippets/Diagnostics - PC Repair Needed.txt
deleted file mode 100644
index d5d5e159..00000000
--- a/setup/windows/bin/d7ii/Config/Templates/Snippets/Diagnostics - PC Repair Needed.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-We have determined that your PC has significant problems.
-We can repair all of the issues for you so that it's healthy again.
-
-But first we need your permission, so please contact us by:
-
-Phone:
-Email:
-Website: www.yourwebsite.comn
-
-Did you know you can have keep your computer running healthy 24/7/365?
-Take a look at our Maintenance Package here.
-This package includes:
-
-Anti-Virus Software
-Automatic Updates
-Automated Maintenance
-We Block Known Bad Websites
-Keeps Junk Programs Off Your PC
-Easy Access To Our Team Of Experts
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/Templates/Snippets/Diagnostics - Virus Detected.txt b/setup/windows/bin/d7ii/Config/Templates/Snippets/Diagnostics - Virus Detected.txt
deleted file mode 100644
index 508d2a24..00000000
--- a/setup/windows/bin/d7ii/Config/Templates/Snippets/Diagnostics - Virus Detected.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-We have detected computer infections on your PC.
-We can remove them and fix your computer so they don't come back.
-
-But first we need your permission, so please contact us by:
-
-Phone:
-Email:
-Website: www.yourwebsite.comn
-
-Did you know you can have us keep your computer free of Viruses 24/7/365?
-Take a look at our Maintenance Package here.
-This package includes:
-
-Anti-Virus Software
-Automatic Updates
-Automated Maintenance
-We Block Known Bad Websites
-Keeps Junk Programs Off Your PC
-Easy Access To Our Team Of Experts
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/Templates/Snippets/Diagnostics Completed.txt b/setup/windows/bin/d7ii/Config/Templates/Snippets/Diagnostics Completed.txt
deleted file mode 100644
index 863af355..00000000
--- a/setup/windows/bin/d7ii/Config/Templates/Snippets/Diagnostics Completed.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-We have finished looking at your computer and
-need your authorization to make one or more changes.
-
-Please get in touch with us by:
-
-Phone:
-Email:
-Website: www.yourwebsite.comn
-
-We won't continue working, until after you have
-authorized us to do so.
-
-You can find our Terms of Service online here.
diff --git a/setup/windows/bin/d7ii/Config/Templates/Snippets/Invoice.txt b/setup/windows/bin/d7ii/Config/Templates/Snippets/Invoice.txt
deleted file mode 100644
index 5f7916a1..00000000
--- a/setup/windows/bin/d7ii/Config/Templates/Snippets/Invoice.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-Thank you for your business!
-Please check us out online by visiting our website or check us out on:
-
-Facebook
-Twitter
-LinkedIn
-Pintrest
-
-What did we do? We are glad you asked, take a look!
-
-Add Activity Logged or Alert Text
-Add Activity Logged or Alert Text
-Add Activity Logged or Alert Text
-
-
-If you would like a more advanced log of work that was performed
-please contact us by:
-
-Phone:
-Email:
-Website: www.yourwebsite.comn
-
-You can pay your bill online by going here.
-
-We will add a 5% late fee for each week your payment is late,
-or the maximum allowable by law.
-Payments not received within 30 days will be sent to collections.
-
-Our office is not a storage facility. All property not picked up
-within 60 days shall become the property of *Your Business Name Here*.
-You agree that *Your Business Name Here* shall retain ownership of
-said property after 60 days notice of this Invoice, and release all rights of
-ownership to *Your Business Name Here*, and hold
-*Your Business Name Here* harmless for all claims, and damages in
-conjunction with said property.
\ No newline at end of file
diff --git a/setup/windows/bin/d7ii/Config/Templates/Snippets/Maintenance Completed.txt b/setup/windows/bin/d7ii/Config/Templates/Snippets/Maintenance Completed.txt
deleted file mode 100644
index 0222aa36..00000000
--- a/setup/windows/bin/d7ii/Config/Templates/Snippets/Maintenance Completed.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-Your computer is running better now that we have finished our maintenance.
-You can pay your bill online by going here.
-
-It's not too late to upgrade your purchase to our Maintenance Package
-
-We are helping people keep their computers running fast,
-and fully updated 24/7/365 with our Maintenance Package
-
-Why keep paying for the same service without getting
-constant protection for nearly the same amount, per year!
-
-We want to help you save as much money through-out the year as
-possible, and avoid the need for repetative costs. Pay once,
-and be done!
-
-Now you can have us keep your computer running fast, and up-to-date 24/7/365!
-Take a look at our Maintenance Package here.
-This package includes:
-
-Anti-Virus Software
-Automatic Updates
-Automated Maintenance
-We Block Known Bad Websites
-Keeps Junk Programs Off Your PC
-Easy Access To Our Team Of Experts
diff --git a/setup/windows/bin/d7ii/Config/Templates/Snippets/PC Repair Completed.txt b/setup/windows/bin/d7ii/Config/Templates/Snippets/PC Repair Completed.txt
deleted file mode 100644
index 9a2fbe31..00000000
--- a/setup/windows/bin/d7ii/Config/Templates/Snippets/PC Repair Completed.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-We have fixed all of the problems we were able to find on your PC.
-You can pay your bill online by going here.
-
-It's not too late to upgrade your purchase to our Maintenance Package
-
-We are helping people keep their computers repaired,
-and working healthy 24/7/365 with our Maintenance Package
-
-Why keep paying for the same service without getting
-constant protection for nearly the same amount, per year!
-
-We want to help you save as much money through-out the year as
-possible, and avoid the need for repetative costs. Pay once,
-and be done!
-
-Now you can have us keep your computer healthy 24/7/365!
-Take a look at our Maintenance Package here.
-This package includes:
-
-Anti-Virus Software
-Automatic Updates
-Automated Maintenance
-We Block Known Bad Websites
-Keeps Junk Programs Off Your PC
-Easy Access To Our Team Of Experts
diff --git a/setup/windows/bin/d7ii/Config/Templates/Snippets/Virus Removal Completed.txt b/setup/windows/bin/d7ii/Config/Templates/Snippets/Virus Removal Completed.txt
deleted file mode 100644
index b1061d17..00000000
--- a/setup/windows/bin/d7ii/Config/Templates/Snippets/Virus Removal Completed.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-We have removed all of the detected computer infections on your PC.
-You can pay your bill online by going here.
-
-It's not too late to upgrade your purchase to our Maintenance Package
-
-We are helping people keep their computers clean of Viruses,
-and other nasty computer infections 24/7/365 with our Maintenance Package
-
-Why keep paying for the same service without getting
-constant protection for nearly the same amount, per year!
-
-We want to help you save as much money through-out the year as
-possible, and avoid the need for repetative costs. Pay once,
-and be done!
-
-Now you can have us keep your computer free of Viruses 24/7/365!
-Take a look at our Maintenance Package here.
-This package includes:
-
-Anti-Virus Software
-Automatic Updates
-Automated Maintenance
-We Block Known Bad Websites
-Keeps Junk Programs Off Your PC
-Easy Access To Our Team Of Experts
diff --git a/setup/windows/bin/d7ii/Config/d7II.ini b/setup/windows/bin/d7ii/Config/d7II.ini
deleted file mode 100644
index c042bfed..00000000
--- a/setup/windows/bin/d7ii/Config/d7II.ini
+++ /dev/null
@@ -1,162 +0,0 @@
-[Reg]
-EULA_Accepted=1
-RegTitle=(503) 523-1012 www.1201.com d7II
-DisplayD7ver=1
-First_v4_Server_Contact=2/25/2015 1:12:37 AM
-[3PTUpdateInfo]
-LastDefaultProfileUpdate=4/6/2015 09:40 AM
-LastDefaultProfileUpdateU=4/6/2015 9:40:27 AM
-d7II_DefaultApps=4/6/2015 09:40 AM
-d7II_DefaultAppsU=4/6/2015 9:40:27 AM
-[CurrentVersions]
-DefaultKetarin=10
-DefaultAppsConfig=58
-TestPack=1
-[Update]
-VMTicker=Try d7II in a real environment for 1 month, Single Tech $19/mo. - cancel anytime or upgrade for a lower rate!
-VMTickerURL=https://www.foolishit.com/d7ii/
-TickerForce=0
-LastDefUpdate=8/21/2015 3:03:18 PM
-Ticker=ATTN: d7II has updated to d7x! Click for info!
-TickerURL=https://www.foolishit.com/d7x/update/
-[d7II]
-LastConfigConversionVer=3.6.87
-[Config]
-Displayd7IINews=0
-DisplayPathInTitleBar=0
-OneNoteColorTabs=1
-HighlightTabs=1
-LongRectangleLogo=0
-AutoSizeLogo=0
-MainLogoName=1201Logo.bmp
-ReportLogoName=CompanyReportLogo.bmp
-AppIconName=Company.ico
-dCloudLogoName=d7II_SFX_Mini.bmp
-SFXMiniLogoName=d7II_SFX_Mini.bmp
-HideCustomItemDetails=0
-HideCustomAppDetails=0
-NoClosePrompt=0
-EndSessionPromptToEnableAV=0
-NoScreenResPrompt=1
-AlwaysIncreaseLowRes=1
-DisableMSSE=0
-RestartSvcs=1
-StartupKill=0
-StartupShutdownPrevention=1
-d7IIDeskShortcut=1
-d7IIDeskShortcutFolder=0
-UseCrucialUKScanner=0
-UTCAdjustment=-8
-StartupCheckAV=1
-StoreLastd7IIRun=1
-ScreenLockSysTrayDefault=0
-FormatDateDayFirst=0
-StartupPriority=3
-StartupSystemPrompt=1
-ReplaceTaskMgr=1
-DropDesktopShortcut=0
-CustomHomePage=www.google.com
-StartupDisableUAC=0
-ShutdownEnableUAC=2
-StartupToggleHiddenON=1
-StartupToggleHiddenOFF=1
-StartupToggleHiddenExtON=1
-StartupToggleHiddenExtOFF=0
-PreventSleep=1
-PreventScreenSaver=1
-StartupCheckTimeZone=1
-StartupLoadTab=Malware
-d7IIUpdateCheck=2
-StartupCheckd7AutoUpdate=0
-SkipRevisionHistoryAfterUpdate=0
-StartupCheckActivation=0
-StartupInstShellExt=0
-StartupBrandOS=0
-UseD7ForGoogle=1
-NoD7inRunOnce=0
-MinimizeToTray2=0
-TimeZone=Pacific Standard Time
-DisableAudibleAlerts=0
-DisableWANAddress=0
-CopyToOSLoc=\1201
-UseRecycleBin=0
-ScreenLockFile=http://www.CompanyName.com/LockScreen.html
-d7IIDeskShortcutName=1201 - d7II
-StartupLoadProfile=Default
-MaxChainApps=1
-AutoGenTicketNumber=0
-DisplaydMZNews=1
-StartSessionInSafeMode=0
-EndSessionURL=http://www.CompanyName.com/WorkComplete.html
-HideInternalFunctionDetails=0
-HideInternalFunctionIcons=0
-HideCustomAppIcons=0
-[ScheduledUpdate]
-KetarinProfile=0
-DefaultApps=0
-[CustomFunctions]
-D7StartupTab=1
-D7Startup=KillEmAll.pif
-MapDrivesOnStartup=0
-RemoveMapDrivesOnClose=0
-[Reports]
-PromptForName=0
-AutoGenInfoReport=0
-StoreLocation=\1201\d7II Reports\%date%
-RemoteFormat=\%name%\%date%\%computername%
-ReportsDirDeskShortcut=0
-ReportsDirDeskShortcutPath=\1201\d7II Reports
-LogAllActions=1
-NoTimeStamp=0
-NoWorkCompleted=0
-ReportsDirDeskShortcutDesc=Copy of reports of work done on the system and the logs from various removal processes.
-ReportsDirDeskShortcutName=1201 Reports
-LogTechEmail=0
-[Cloud]
-AutoCheckConfigUpdate=0
-AutoCheckDefUpdate=0
-AutoCheckUpdateRestart=0
-ConfigName=dMZ Configured
-ConfigDate=4/6/2015 9:32:00 AM
-DefsDate=8/21/2015 3:01:00 PM
-[OS Customization]
-BrowserHomepage=https://www.google.com
-CustomDNS1=8.8.8.8
-CustomDNS2=8.8.4.4
-[CloseDefaults]
-Email=0
-EmailReportsZipped=0
-HTMLEmailBody=1
-EmailBodyActLog=2
-MoveReports=0
-FTPStoreReports=0
-PasswordProtectedLaunch=0
-Cloud=0
-CloudDefs=0
-EmailTemplate=Contract Report
-MoveReportsTod7IIDir=0
-DeleteLocalReportsDir=0
-EndSessionURL=0
-DefaultEmailRecipient=d7ii@CompanyName.com
-DefaultEmailReplyTo=d7ii@CompanyName.com
-[BoxLabels]
-Audit1=Audit/Diagnose
-Audit2=QA/Testing
-Malware1=d7II Internal Automated
-Malware2=Automated
-Malware3=Manual
-Repair1=External Tools
-Repair2=Internal Windows Repair
-Repair3=Networking Related
-Maint1=d7II Internal Automated
-Maint2=General Maintenance
-Maint3=Manual Maintenance
-[StartupDefaults]
-MenuTimer=5
-CustomScript=0
-ServiceMode=0
-SystemMode=0
-Debug=0
-DisableRunOnce=0
-Normal=1
-MergeDefs=0
diff --git a/setup/windows/bin/d7ii/Config/d7II_DefaultApps.INI b/setup/windows/bin/d7ii/Config/d7II_DefaultApps.INI
deleted file mode 100644
index fdf663bd..00000000
--- a/setup/windows/bin/d7ii/Config/d7II_DefaultApps.INI
+++ /dev/null
@@ -1,58 +0,0 @@
-[URL]
-lastactivityview=http://nirsoft.net/panel/lastactivityview.exe
-erunt=http://www.derfisch.de/lars/erunt.zip
-mbrcheck=http://ad13.geekstogo.com/MBRCheck.exe
-desktopcmd=http://www.midiox.com/zip/dtcmd.zip
-batteryinfoview=http://www.nirsoft.net/panel/batteryinfoview.exe
-bluescreenview=http://www.nirsoft.net/panel/bluescreenview.exe
-chromecookiesview=http://www.nirsoft.net/panel/chromecookiesview.exe
-chromehistoryview=http://www.nirsoft.net/panel/chromehistoryview.exe
-cports=http://www.nirsoft.net/utils/cports.zip
-cports-x64=http://www.nirsoft.net/utils/cports-x64.zip
-driverview=http://www.nirsoft.net/utils/driverview.zip
-driverview-x64=http://www.nirsoft.net/utils/driverview-x64.zip
-flashcookiesview=http://www.nirsoft.net/panel/flashcookiesview.exe
-iehv=http://www.nirsoft.net/panel/iehv.exe
-injecteddll=http://www.nirsoft.net/utils/injecteddll.zip
-mailpv=http://www.nirsoft.net/panel/mailpv.exe
-mzcv=http://www.nirsoft.net/panel/mzcv.exe
-mozillahistoryview=http://www.nirsoft.net/panel/mozillahistoryview.exe
-mylastsearch=http://www.nirsoft.net/panel/mylastsearch.exe
-webbrowserpassview=http://nirsoft.net/panel/webbrowserpassview.exe
-myuninst=http://www.nirsoft.net/panel/myuninst.exe
-ntfslinksview=http://www.nirsoft.net/panel/ntfslinksview.exe
-produkey=http://www.nirsoft.net/panel/produkey.exe
-whatishang=http://www.nirsoft.net/panel/whatishang.exe
-wirelesskeyview=http://www.nirsoft.net/toolsdownload/wirelesskeyview.zip
-wirelesskeyview-x64=http://www.nirsoft.net/toolsdownload/wirelesskeyview-x64.zip
-openhardwaremonitor=http://openhardwaremonitor.org/files/openhardwaremonitor-v0.3.2-beta.zip
-otl=http://oldtimer.geekstogo.com/OTL.exe
-ccleaner=http://www.piriform.com/ccleaner/download/portable/downloadfile
-defraggler=http://www.piriform.com/defraggler/download/portable/downloadfile
-recuva=http://www.piriform.com/recuva/download/portable/downloadfile
-speccy=http://www.piriform.com/speccy/download/portable/downloadfile
-revouninstaller=http://www.revouninstaller.com/download/revouninstaller.zip
-spacesniffer=http://www.uderzo.it/main_products/space_sniffer/files/spacesniffer_1_1_4_0.zip
-startuplite=http://www.malwarebytes.org/StartUpLite.exe
-superantispyware=http://www.superantispyware.com/sasportable.php
-autoruns=http://live.sysinternals.com/Files/Autoruns.zip
-contig=http://live.sysinternals.com/Files/Contig.zip
-dbgview=http://live.sysinternals.com/Files/DebugView.zip
-junction=http://live.sysinternals.com/Files/Junction.zip
-listdlls=http://live.sysinternals.com/Files/ListDlls.zip
-pagedfrg=http://live.sysinternals.com/Files/PageDefrag.zip
-procexp=http://live.sysinternals.com/Files/ProcessExplorer.zip
-procmon=http://live.sysinternals.com/Files/ProcessMonitor.zip
-psexec=http://live.sysinternals.com/psexec.exe
-regdelnull=http://live.sysinternals.com/Files/Regdelnull.zip
-sdelete=http://live.sysinternals.com/Files/SDelete.zip
-sigcheck=http://live.sysinternals.com/Files/Sigcheck.zip
-tcpoptimizer=http://www.speedguide.net/files/TCPOptimizer.exe
-unstopcpy=http://www.roadkil.net/download.php?FileID=421&ProgramID=29
-MSIE8PerfFixIt=http://go.microsoft.com/?linkid=9726336
-MSWinUpdFixIt=http://go.microsoft.com/?linkid=9665683
-MSWinsockFixIt=http://go.microsoft.com/?linkid=9662461
-MSOfficeConfigAnalyzer=https://download.microsoft.com/download/5/F/D/5FD540BF-5AC6-4261-895F-676B38AA8406/OffCAT.msi
-VTUploader=https://www.virustotal.com/static/bin/vtuploader2.0.exe
-CrystalDiskInfo=http://jaist.dl.sourceforge.jp/crystaldiskinfo/54663/CrystalDiskInfo4_2_0a.zip
-HDDScan=http://hddscan.com/download/HDDScan-3.3.zip
diff --git a/setup/windows/bin/d7ii/Config/d7II_SFX_Mini.ini b/setup/windows/bin/d7ii/Config/d7II_SFX_Mini.ini
deleted file mode 100644
index caa4724a..00000000
--- a/setup/windows/bin/d7ii/Config/d7II_SFX_Mini.ini
+++ /dev/null
@@ -1,11 +0,0 @@
-[App]
-Ver=3.0.0
-[dCloud]
-FTPServer=gator3279.hostgator.com
-UserName=d7ii@dsupportonline.com
-Password==],6IH50_$Gua~>
-ConfigDir=/Config
-DefsDir=/Defs
-TechPassword==],6IH50_$Gua~>
-DefaultConfig=%prompt%
-DefaultPath=%desktop%
diff --git a/setup/windows/bin/d7ii/Modules/Defs/dUninstaller.txt b/setup/windows/bin/d7ii/Modules/Defs/dUninstaller.txt
deleted file mode 100644
index e69de29b..00000000
diff --git a/setup/windows/bin/d7ii/Modules/Defs/dUninstaller_FileSystemObjects.txt b/setup/windows/bin/d7ii/Modules/Defs/dUninstaller_FileSystemObjects.txt
deleted file mode 100644
index e69de29b..00000000
diff --git a/setup/windows/bin/d7ii/Modules/Defs/dUninstaller_RegKeys.txt b/setup/windows/bin/d7ii/Modules/Defs/dUninstaller_RegKeys.txt
deleted file mode 100644
index e69de29b..00000000
diff --git a/setup/windows/bin/d7ii/Modules/Defs/dUninstaller_RegValues.txt b/setup/windows/bin/d7ii/Modules/Defs/dUninstaller_RegValues.txt
deleted file mode 100644
index e69de29b..00000000
diff --git a/setup/windows/bin/d7ii/Modules/Defs/dUninstaller_RunValues.txt b/setup/windows/bin/d7ii/Modules/Defs/dUninstaller_RunValues.txt
deleted file mode 100644
index e69de29b..00000000
diff --git a/setup/windows/bin/d7ii/Modules/Defs/dUninstaller_StartMenuFolders.txt b/setup/windows/bin/d7ii/Modules/Defs/dUninstaller_StartMenuFolders.txt
deleted file mode 100644
index e69de29b..00000000
diff --git a/setup/windows/bin/d7ii/Modules/Defs/dUninstaller_Whitelist.txt b/setup/windows/bin/d7ii/Modules/Defs/dUninstaller_Whitelist.txt
deleted file mode 100644
index e69de29b..00000000