zPcj0=95~8lJV<%TG*x3!A`Y0Tr>e2|CazJY;we(dXGw>io&_8F3<+ttH$?7Gt;;}l
z#YC;el)3ykXGUyI*>UpMC{G^gSo!WQ|I5o*=P4!qXSq9Vdn7i#*eleVimu*E)SasH
GZ}tUsXC{aM
literal 0
HcmV?d00001
diff --git a/.bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/a2cmd.cmd b/.bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/a2cmd.cmd
new file mode 100644
index 00000000..bf44096b
--- /dev/null
+++ b/.bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/a2cmd.cmd
@@ -0,0 +1,167 @@
+::
+:: --- 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/.bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/cpuz.ini b/.bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/cpuz.ini
new file mode 100644
index 0000000000000000000000000000000000000000..e31404cd18862f8868b933b570578587c3a09d56
GIT binary patch
literal 504
zcmZ{hT}uK%6o#K`p`W6-($|d_I-9VNwlr;s;f2+Ll9}WN){n2=nc2q5Vi}fm&ii#{
zKHhII_J>rUzEfoWvSm{4v#-n=OKc|)jZ+@Cc
z!#Vus8|f@{o~6*Pzth_5T-vu{FaL4dpYQwi{EnI5#rfx|chyi1+q&21g^h3>jyU#N
zQ-R2`a|l#T^fkX_!lK?fF&g
dT5;1@jrCeaRd^xCC~+Evc=yUtsdk%%grB#oN(cY|
literal 0
HcmV?d00001
diff --git a/.bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/pagedfrg.reg b/.bin/d7ii/Config/CustomApps_d7II/3rd Party Configs/pagedfrg.reg
new file mode 100644
index 0000000000000000000000000000000000000000..de812262c28e168b707a45fdbaf70ec792a02046
GIT binary patch
literal 256
zcmX|*-3o$G5QM+$pmz`-AnKx%a#2C*z>XXfneeBMV2
z90?^2H68&exwx7q6|I=1)Iz8f_Bcqdq!z+Xc+7yIs!z}Q%!;*kPF$H2$}bSwuon*5
zX%2|=mSpm5h~<_V)0(Rj+g)%{?qVXgnsRXqbta`l7rW)l?WJEaGj6JshixbLOqIH^
P%n1`q*roi{=%4lry7w!7
literal 0
HcmV?d00001
diff --git a/.bin/d7ii/Config/CustomApps_d7II/Emsisoft a2cmd Deep Scan.cfg b/.bin/d7ii/Config/CustomApps_d7II/Emsisoft a2cmd Deep Scan.cfg
index 8c65a911..570ca229 100644
--- a/.bin/d7ii/Config/CustomApps_d7II/Emsisoft a2cmd Deep Scan.cfg
+++ b/.bin/d7ii/Config/CustomApps_d7II/Emsisoft a2cmd Deep Scan.cfg
@@ -39,4 +39,4 @@ AutoFlag=1
App=Emsisoft_a2cmd\a2cmd.cmd
CopyConfigFirst=a2cmd.cmd
WaitOnProcesses=a2cmd.exe
-LastDownload=8/31/2018
+LastDownload=10/7/2018
diff --git a/.bin/d7ii/Config/CustomApps_d7II/ExecutedProgramsList.cfg b/.bin/d7ii/Config/CustomApps_d7II/ExecutedProgramsList.cfg
new file mode 100644
index 00000000..ceecc1fc
--- /dev/null
+++ b/.bin/d7ii/Config/CustomApps_d7II/ExecutedProgramsList.cfg
@@ -0,0 +1,37 @@
+[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/.bin/d7ii/Config/CustomApps_d7II/HitmanPro.cfg b/.bin/d7ii/Config/CustomApps_d7II/HitmanPro.cfg
index 7e8feef6..9a9655ed 100644
--- a/.bin/d7ii/Config/CustomApps_d7II/HitmanPro.cfg
+++ b/.bin/d7ii/Config/CustomApps_d7II/HitmanPro.cfg
@@ -42,4 +42,4 @@ Vista=1
Servers=1
NonDirectURLs=0
AutoFlag=1
-LastDownload=8/31/2018
+LastDownload=10/7/2018
diff --git a/.bin/d7ii/Config/CustomApps_d7II/Kaspersky TDSSKiller (Silent).cfg b/.bin/d7ii/Config/CustomApps_d7II/Kaspersky TDSSKiller (Silent).cfg
index 1ffc505b..4b1a5000 100644
--- a/.bin/d7ii/Config/CustomApps_d7II/Kaspersky TDSSKiller (Silent).cfg
+++ b/.bin/d7ii/Config/CustomApps_d7II/Kaspersky TDSSKiller (Silent).cfg
@@ -32,4 +32,4 @@ Vista=1
Servers=1
NonDirectURLs=0
AutoFlag=2
-LastDownload=8/31/2018
+LastDownload=10/7/2018
diff --git a/.bin/d7ii/Config/Links.txt b/.bin/d7ii/Config/Links.txt
index 3869db96..753bc8d2 100644
--- a/.bin/d7ii/Config/Links.txt
+++ b/.bin/d7ii/Config/Links.txt
@@ -1,3 +1,4 @@
+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/
diff --git a/.bin/d7ii/Config/Reg.Settings.dat b/.bin/d7ii/Config/Reg.Settings.dat
index 13f8c77e17e38e39beb78cedd5a968d73cb4b731..c99d5622b9876935a2497233a6fb4e15a3b4ba93 100644
GIT binary patch
delta 41
wcmdnZxR-H)gSl2MMHy|KTqwqaI?*~Hj50Pb1~YybcN
delta 39
ucmdnXxSMf;gRCrrQkb^6iKUj8iK1O_x|^d-xQCgJReVW~p;E}i_&5O06biop
diff --git a/.bin/d7ii/Config/RegLinks.txt b/.bin/d7ii/Config/RegLinks.txt
index fcc8aafa..8b322558 100644
--- a/.bin/d7ii/Config/RegLinks.txt
+++ b/.bin/d7ii/Config/RegLinks.txt
@@ -1 +1,2 @@
+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/.bin/d7ii/Config/SiteSearch.txt b/.bin/d7ii/Config/SiteSearch.txt
index 402e5315..93b8b2a0 100644
--- a/.bin/d7ii/Config/SiteSearch.txt
+++ b/.bin/d7ii/Config/SiteSearch.txt
@@ -1,3 +1,4 @@
+google.com
foolishit.com
foolishtech.com
technibble.com
diff --git a/.bin/d7ii/Modules/Defs/dUninstaller.txt b/.bin/d7ii/Modules/Defs/dUninstaller.txt
index 8b137891..e69de29b 100644
--- a/.bin/d7ii/Modules/Defs/dUninstaller.txt
+++ b/.bin/d7ii/Modules/Defs/dUninstaller.txt
@@ -1 +0,0 @@
-
diff --git a/.bin/d7ii/Modules/Defs/dUninstaller_FileSystemObjects.txt b/.bin/d7ii/Modules/Defs/dUninstaller_FileSystemObjects.txt
index ffa379f9..e69de29b 100644
--- a/.bin/d7ii/Modules/Defs/dUninstaller_FileSystemObjects.txt
+++ b/.bin/d7ii/Modules/Defs/dUninstaller_FileSystemObjects.txt
@@ -1,2 +0,0 @@
-
-%userprofile%\foo.txt
diff --git a/.bin/d7ii/Modules/Defs/dUninstaller_RegKeys.txt b/.bin/d7ii/Modules/Defs/dUninstaller_RegKeys.txt
index 7c8f50d9..e69de29b 100644
--- a/.bin/d7ii/Modules/Defs/dUninstaller_RegKeys.txt
+++ b/.bin/d7ii/Modules/Defs/dUninstaller_RegKeys.txt
@@ -1 +0,0 @@
-Software\Test Key
diff --git a/.bin/d7ii/Modules/Defs/dUninstaller_RegValues.txt b/.bin/d7ii/Modules/Defs/dUninstaller_RegValues.txt
index c006bcc9..e69de29b 100644
--- a/.bin/d7ii/Modules/Defs/dUninstaller_RegValues.txt
+++ b/.bin/d7ii/Modules/Defs/dUninstaller_RegValues.txt
@@ -1,2 +0,0 @@
-Software\Test\Test Value
-Software\test
diff --git a/.bin/d7ii/Modules/Defs/dUninstaller_RunValues.txt b/.bin/d7ii/Modules/Defs/dUninstaller_RunValues.txt
index 3586f6b9..e69de29b 100644
--- a/.bin/d7ii/Modules/Defs/dUninstaller_RunValues.txt
+++ b/.bin/d7ii/Modules/Defs/dUninstaller_RunValues.txt
@@ -1,2 +0,0 @@
-Test Value
-test
diff --git a/.bin/d7ii/Modules/Defs/dUninstaller_StartMenuFolders.txt b/.bin/d7ii/Modules/Defs/dUninstaller_StartMenuFolders.txt
index 8b137891..e69de29b 100644
--- a/.bin/d7ii/Modules/Defs/dUninstaller_StartMenuFolders.txt
+++ b/.bin/d7ii/Modules/Defs/dUninstaller_StartMenuFolders.txt
@@ -1 +0,0 @@
-
diff --git a/.bin/d7ii/Modules/Defs/dUninstaller_Whitelist.txt b/.bin/d7ii/Modules/Defs/dUninstaller_Whitelist.txt
index 9c558e35..e69de29b 100644
--- a/.bin/d7ii/Modules/Defs/dUninstaller_Whitelist.txt
+++ b/.bin/d7ii/Modules/Defs/dUninstaller_Whitelist.txt
@@ -1 +0,0 @@
-.
From b4acdad3f0065df471666297deca14f3c6b90dc5 Mon Sep 17 00:00:00 2001
From: 2Shirt <1923621+2Shirt@users.noreply.github.com>
Date: Tue, 9 Oct 2018 00:24:35 -0600
Subject: [PATCH 3/4] Adjusted tool download frequency
---
.bin/d7ii/Config/AppOverrides.ini | 4 ++--
.bin/d7ii/Config/CustomApps/AdwCleaner (Updated).cfg | 4 ++--
.bin/d7ii/Config/CustomApps/HitmanPro (Auto).cfg | 4 ++--
.bin/d7ii/Config/CustomApps/Malwarebytes Download.cfg | 4 ++--
.bin/d7ii/Config/CustomApps/RKill (Auto).cfg | 4 ++--
.bin/d7ii/Config/CustomApps_d7II/Neutron (Sync Time).cfg | 2 +-
6 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/.bin/d7ii/Config/AppOverrides.ini b/.bin/d7ii/Config/AppOverrides.ini
index 9c73b9b3..2d55f1f7 100644
--- a/.bin/d7ii/Config/AppOverrides.ini
+++ b/.bin/d7ii/Config/AppOverrides.ini
@@ -36,7 +36,7 @@ EmailBeforeExecution=0
PriorAlert=0
[]
PostRunApp=
-AlwaysAttemptDownload=0
-DLafterXdays=0
+AlwaysAttemptDownload=1
+DLafterXdays=.5
EmailBeforeExecution=0
PriorAlert=0
diff --git a/.bin/d7ii/Config/CustomApps/AdwCleaner (Updated).cfg b/.bin/d7ii/Config/CustomApps/AdwCleaner (Updated).cfg
index 91ece4b2..c4fcef59 100644
--- a/.bin/d7ii/Config/CustomApps/AdwCleaner (Updated).cfg
+++ b/.bin/d7ii/Config/CustomApps/AdwCleaner (Updated).cfg
@@ -1,5 +1,5 @@
[Config]
-LastEditDate=8/13/2018 5:54:29 PM
+LastEditDate=10/8/2018 10:56:15 PM
PostRunApp=
AppWebsite=https://www.malwarebytes.com/adwcleaner/
AppDLPage=https://downloads.malwarebytes.com/file/adwcleaner
@@ -8,7 +8,7 @@ App=AdwCleaner.exe
UseFTPServer=0
AppURL=https://downloads.malwarebytes.com/file/adwcleaner
AppDLName=AdwCleaner.exe
-AlwaysAttemptDownload=0
+AlwaysAttemptDownload=1
DLafterXdays=.5
AppWait=1
EmailBeforeExecution=0
diff --git a/.bin/d7ii/Config/CustomApps/HitmanPro (Auto).cfg b/.bin/d7ii/Config/CustomApps/HitmanPro (Auto).cfg
index decb9549..b2ec938d 100644
--- a/.bin/d7ii/Config/CustomApps/HitmanPro (Auto).cfg
+++ b/.bin/d7ii/Config/CustomApps/HitmanPro (Auto).cfg
@@ -1,6 +1,6 @@
[Config]
Author=2Shirt
-LastEditDate=8/19/2018 3:48:33 PM
+LastEditDate=10/8/2018 10:56:18 PM
PostRunApp=
AppWebsite=http://www.surfright.nl/en/hitmanpro/
AppDLPage=http://www.surfright.nl/en/downloads/
@@ -16,7 +16,7 @@ AppURL=https://dl.surfright.nl/HitmanPro.exe
AppURLB=http://dl.surfright.nl/FoolishIT/HitmanPro.exe
AppDLName=HitmanPro.exe
AlwaysAttemptDownload=1
-DLafterXdays=3
+DLafterXdays=.5
AppWait=1
EmailBeforeExecution=0
PriorAlert=0
diff --git a/.bin/d7ii/Config/CustomApps/Malwarebytes Download.cfg b/.bin/d7ii/Config/CustomApps/Malwarebytes Download.cfg
index 75eed91d..c321701a 100644
--- a/.bin/d7ii/Config/CustomApps/Malwarebytes Download.cfg
+++ b/.bin/d7ii/Config/CustomApps/Malwarebytes Download.cfg
@@ -1,5 +1,5 @@
[Config]
-LastEditDate=8/18/2018 6:36:00 PM
+LastEditDate=10/8/2018 10:55:27 PM
PostRunApp=
AppWebsite=https://www.malwarebytes.com/
AppDLPage=https://downloads.malwarebytes.com/file/mb3/
@@ -8,7 +8,7 @@ UseFTPServer=0
AppURL=https://downloads.malwarebytes.com/file/mb3/
AppDLName=mbam-setup.exe
AlwaysAttemptDownload=1
-DLafterXdays=0
+DLafterXdays=3
AppWait=1
EmailBeforeExecution=0
PriorAlert=0
diff --git a/.bin/d7ii/Config/CustomApps/RKill (Auto).cfg b/.bin/d7ii/Config/CustomApps/RKill (Auto).cfg
index ead5cbe7..3cbf5939 100644
--- a/.bin/d7ii/Config/CustomApps/RKill (Auto).cfg
+++ b/.bin/d7ii/Config/CustomApps/RKill (Auto).cfg
@@ -1,6 +1,6 @@
[Config]
Author=2Shirt
-LastEditDate=8/19/2018 3:31:04 PM
+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/
@@ -11,7 +11,7 @@ UseFTPServer=0
AppURL=https://download.bleepingcomputer.com/grinler/rkill.exe
AppDLName=rkill.exe
AlwaysAttemptDownload=1
-DLafterXdays=0
+DLafterXdays=.5
AppWait=1
EmailBeforeExecution=0
PriorAlert=0
diff --git a/.bin/d7ii/Config/CustomApps_d7II/Neutron (Sync Time).cfg b/.bin/d7ii/Config/CustomApps_d7II/Neutron (Sync Time).cfg
index 79267d14..41d9c8d2 100644
--- a/.bin/d7ii/Config/CustomApps_d7II/Neutron (Sync Time).cfg
+++ b/.bin/d7ii/Config/CustomApps_d7II/Neutron (Sync Time).cfg
@@ -32,4 +32,4 @@ AppDLPage=http://keir.net/neutron.html
AppDesc=Sync time with an internet time server
NonDirectURLs=0
AutoFlag=1
-LastDownload=10/27/2017
+LastDownload=10/8/2018
From 09994a7c73329a8be23427b33d2dac15c9517474 Mon Sep 17 00:00:00 2001
From: 2Shirt <1923621+2Shirt@users.noreply.github.com>
Date: Tue, 9 Oct 2018 00:25:23 -0600
Subject: [PATCH 4/4] Adjusted main d7II settings
* Added 1201 logo
* Disabled news bar
---
.bin/d7ii/Config/1201Logo.bmp | Bin 0 -> 2038 bytes
.bin/d7ii/Config/d7II.ini | 6 +++---
2 files changed, 3 insertions(+), 3 deletions(-)
create mode 100644 .bin/d7ii/Config/1201Logo.bmp
diff --git a/.bin/d7ii/Config/1201Logo.bmp b/.bin/d7ii/Config/1201Logo.bmp
new file mode 100644
index 0000000000000000000000000000000000000000..99c948f76acdc30d3f9807aaef961c98f88cdfe6
GIT binary patch
literal 2038
zcmb`HPe@cj9LK-vrZ3yVLm(bPp-W!MQ+bG7LI@$LYf&`m;elzpt&90BS^n>@_yx-^dZ+`RV{AjrYT5i+(
z1U+Z%(}I-N^XvFY^F)eNo5buRiIEYB5B61Q$jY-~t$cT3FAOI*Do@$I|B
z;2DY6ZzQr=3Arbs{wnydy!Lgj=X%~x=*O=;$?&97i=KtYO9iGZ>2Vh#=G6?5;Nshm
zKMRq80_nJ2(*LopTdzwtkfDVu*z`J?9Kr?9j~Ib*&R;aCnoR_TOnqe>YG(Yu#6`1zc7OHE%Ul5S90%GjMI1D|
zFTEeKra-eM|4P`B%)5da=0&t6^8w0Bys8_KV3MT{5-;OZ0wk5Bc@f{nt7N{5Q_Lkc
zlldM6*1Xr_)A4vKfgkl&+Ho(wpgBik<8S-z7v55rO?_OZ6X6xh6QlaJaLHjMyk_j6
zmwCxwet`~Wyo7P)H5_m%@{fNmBhOqF^iDQ5!ktW|1g$&sHE&J=q%=|q>CiAA&^tZy
zr=Uivyzb1UHvs`E%E%5+g?WiLnib-cc9>&J=Bf}EK-_kt5^^P)uf#h*1W`A3aX8|;
zaRSjA+GIKHr2Q+QTNTmXXSz{`PO79=t`CE4@XKx(K_kd??uEy5&cD@U{4=h(*?#|t!<5CS_&s@YQUus@QsHZpY
zWL!NFR}?Y0F~b(qr^6_ltB=%QK-c!mp1EHI8jP|bi}P3N8tJXPGq91Xa~XqEKOOe{
bm8y-s7#?0;&&Rltd-`bT<&RVi-+%Kz6jAbg
literal 0
HcmV?d00001
diff --git a/.bin/d7ii/Config/d7II.ini b/.bin/d7ii/Config/d7II.ini
index cce77946..c042bfed 100644
--- a/.bin/d7ii/Config/d7II.ini
+++ b/.bin/d7ii/Config/d7II.ini
@@ -1,6 +1,6 @@
[Reg]
EULA_Accepted=1
-RegTitle=(503) 523-1012 www.1201.com d7II
+RegTitle=(503) 523-1012 www.1201.com d7II
DisplayD7ver=1
First_v4_Server_Contact=2/25/2015 1:12:37 AM
[3PTUpdateInfo]
@@ -22,13 +22,13 @@ TickerURL=https://www.foolishit.com/d7x/update/
[d7II]
LastConfigConversionVer=3.6.87
[Config]
-Displayd7IINews=1
+Displayd7IINews=0
DisplayPathInTitleBar=0
OneNoteColorTabs=1
HighlightTabs=1
LongRectangleLogo=0
AutoSizeLogo=0
-MainLogoName=CompanyLogo.bmp
+MainLogoName=1201Logo.bmp
ReportLogoName=CompanyReportLogo.bmp
AppIconName=Company.ico
dCloudLogoName=d7II_SFX_Mini.bmp