Skip to content

Commit

Permalink
Doctor Web Cureit
Browse files Browse the repository at this point in the history
  • Loading branch information
Mickaël Mathieu committed Mar 18, 2024
1 parent b7646d7 commit e41fd95
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 5 additions & 1 deletion src/config/tools.xml
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,13 @@
<download companyName="" pattern="(?i)^defogger.*\.(log|exe)$" type="file"/>
<process companyName="" force="0" process="(?i)^defogger.*\.exe$"/>
</tool>
<tool name="Dr.Web Cureit">
<homeDrive companyName="" pattern="(?i)^DrWeb Quarantine$" type="folder" quarantine="1"/>
<folder force="1" path="@UserProfileDir\Doctor Web" quarantine="1"/>
</tool>
<tool name="Dr.Web LiveDisk">
<desktop companyName="" pattern="(?i)^drweb\-livedisk.*\.(iso|exe)$" type="file"/>
<desktop companyName="" pattern="(?i)^drweb\-livedisk.*\.(iso|exe)$" type="file"/>
<download companyName="" pattern="(?i)^drweb\-livedisk.*\.(iso|exe)$" type="file"/>
<homeDrive companyName="" pattern="(?i)^DrWeb Quarantine$" type="folder" quarantine="1"/>
</tool>
<tool name="Easy Restore Point">
Expand Down
4 changes: 2 additions & 2 deletions src/kpRm.au3
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
#AutoIt3Wrapper_Outfile=KpRm.exe
#AutoIt3Wrapper_Res_Comment=Delete all removal tools
#AutoIt3Wrapper_Res_Description=KpRm By Kernel-Panik
#AutoIt3Wrapper_Res_Fileversion=2.0.0.16
#AutoIt3Wrapper_Res_Fileversion=2.0.0.17
#AutoIt3Wrapper_Res_ProductName=KpRm
#AutoIt3Wrapper_Res_ProductVersion=2.16.0
#AutoIt3Wrapper_Res_ProductVersion=2.17.0
#AutoIt3Wrapper_Res_CompanyName=kernel-panik
#AutoIt3Wrapper_Res_LegalCopyright=kernel-panik
#AutoIt3Wrapper_Res_LegalTradeMarks=kernel-panik
Expand Down
2 changes: 2 additions & 0 deletions src/kp_includes/functions/utils.au3
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ Func FormatPathWithMacro($sPath)
$sPath = @HomeDrive & StringReplace($sPath, "@HomeDrive", "")
Case StringRegExp($sPath, "^@TempDir")
$sPath = @TempDir & StringReplace($sPath, "@TempDir", "")
Case StringRegExp($sPath, "^@UserProfileDir")
$sPath = @UserProfileDir & StringReplace($sPath, "@UserProfileDir", "")
EndSelect

Return $sPath
Expand Down
2 changes: 1 addition & 1 deletion src/kp_includes/variables.au3
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Global $bKpRmDev = False
Global $sKprmVersion = "2.16.0"
Global $sKprmVersion = "2.17.0"
Global $sTmpDir = @TempDir & "\KPRM"
Global $sProgramName = "KpRm"
Global $sCurrentTime = @YEAR & @MON & @MDAY & @HOUR & @MIN & @SEC
Expand Down

0 comments on commit e41fd95

Please sign in to comment.