-
Notifications
You must be signed in to change notification settings - Fork 6
/
PsKill.yml
36 lines (36 loc) · 1.3 KB
/
PsKill.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: "1.17"
description: PsKill. Local and remote processes killer
homepage: https://docs.microsoft.com/en-us/sysinternals/downloads/pskill
license:
identifier: Freeware
url: https://docs.microsoft.com/en-us/sysinternals/license-terms
architecture:
64bit:
url: https://live.sysinternals.com/PsKill64.exe
hash: 7ba47558c99e18c2c6449be804b5e765c48d3a70ceaa04c1e0fae67ff1d7178d
bin:
- PsKill64.exe
- - PsKill64.exe
- PsKill
32bit:
url: https://live.sysinternals.com/PsKill.exe
hash: 5ef168f83b55d2cbd2426afc5e6fa8161270fa6a2a312831332dc472c95dfa42
bin: PsKill.exe
pre_install: |
$sysint = 'HKCU:\SOFTWARE\Sysinternals'
$fin = "$sysint\PsKill"
New-Item $sysint, $fin -ErrorAction 'SilentlyContinue' | Out-Null
Set-ItemProperty -Path $fin -Name 'EulaAccepted' -Value 1 -Type 'DWord' -Force | Out-Null
pre_uninstall: |
if ($purge) {
$sysInt = 'HKCU:\SOFTWARE\Sysinternals'
Remove-Item "$sysInt\PsKill" -ErrorAction 'SilentlyContinue' -Force -Recurse
if ((Get-ChildItem $sysInt).Count -eq 0) { Remove-Item $sysInt -ErrorAction 'SilentlyContinue' -Force -Recurse }
}
checkver: PsKill\s+v([\d.]+)</h1
autoupdate:
architecture:
64bit:
url: https://live.sysinternals.com/PsKill64.exe
32bit:
url: https://live.sysinternals.com/PsKill.exe