Skip to content

Commit

Permalink
Fix kernel perf finally script (microsoft#1712)
Browse files Browse the repository at this point in the history
Finally was killing the wrong driver name, which is a problem
  • Loading branch information
ThadHouse authored Jun 14, 2021
1 parent 60b627a commit 790e796
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/performance.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -450,8 +450,9 @@ function Invoke-Test {
}
} finally {
if ($Kernel) {
net.exe stop secnetperfdrvpriv /y | Out-Null
net.exe stop msquicpriv /y | Out-Null
sc.exe delete msquictestpriv | Out-Null
sc.exe delete secnetperfdrvpriv | Out-Null
sc.exe delete msquicpriv | Out-Null
}

Expand Down

0 comments on commit 790e796

Please sign in to comment.