We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 425b6ed commit 070a419Copy full SHA for 070a419
wd_core.au3
@@ -1557,12 +1557,14 @@ EndFunc ;==>__WD_Error
1557
; Example .......: No
1558
; ===============================================================================================================================
1559
Func __WD_CloseDriver($sDriver = Default)
1560
- Local $iID, $aData
+ Local $sFile, $iID, $aData
1561
1562
If $sDriver = Default Then $sDriver = $_WD_DRIVER
1563
1564
+ $sFile = StringRegExpReplace($sDriver, "^.*\\(.*)$", "$1")
1565
+
1566
Do
- $iID = ProcessExists($sDriver)
1567
+ $iID = ProcessExists($sFile)
1568
1569
If $iID Then
1570
$aData = _WinAPI_EnumChildProcess($iID)
0 commit comments