Skip to content

Commit

Permalink
Fix ProcessClose
Browse files Browse the repository at this point in the history
  • Loading branch information
rcmaehl committed Dec 15, 2021
1 parent 28c25b1 commit 8cf7ce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MSEdgeRedirect.au3
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ Func RunRemoval($bUpdate = False)

$aPIDs = ProcessList("msedgeredirect.exe")
For $iLoop = 1 To $aPIDs[0][0] Step 1
If Not $aPIDs[$iLoop][1] = @AutoItPID Then ProcessClose($aPIDs[$iLoop][0])
If Not $aPIDs[$iLoop][1] = @AutoItPID Then ProcessClose($aPIDs[$iLoop][1])
Next

If IsAdmin() Then
Expand Down

0 comments on commit 8cf7ce9

Please sign in to comment.