-
Notifications
You must be signed in to change notification settings - Fork 6
/
PsSuspend.yml
36 lines (36 loc) · 1.36 KB
/
PsSuspend.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.08"
description: PsSuspend. Suspends or resumes processes on a local or remote NT system.
homepage: https://docs.microsoft.com/en-us/sysinternals/downloads/pssuspend
license:
identifier: Freeware
url: https://docs.microsoft.com/en-us/sysinternals/license-terms
architecture:
64bit:
url: https://live.sysinternals.com/PsSuspend64.exe
hash: 4bf8fbb7db583e1aacbf36c5f740d012c8321f221066cc68107031bd8b6bc1ee
bin:
- PsSuspend64.exe
- - PsSuspend64.exe
- PsSuspend
32bit:
url: https://live.sysinternals.com/PsSuspend.exe
hash: 95a922e178075fb771066db4ab1bd70c7016f794709d514ab1c7f11500f016cd
bin: PsSuspend.exe
pre_install: |
$sysint = 'HKCU:\SOFTWARE\Sysinternals'
$fin = "$sysint\PsSuspend"
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\PsSuspend" -ErrorAction 'SilentlyContinue' -Force -Recurse
if ((Get-ChildItem $sysInt).Count -eq 0) { Remove-Item $sysInt -ErrorAction 'SilentlyContinue' -Force -Recurse }
}
checkver: PsSuspend\s+v([\d.]+)</h1
autoupdate:
architecture:
64bit:
url: https://live.sysinternals.com/PsSuspend64.exe
32bit:
url: https://live.sysinternals.com/PsSuspend.exe