-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpsp.ps1
More file actions
61 lines (25 loc) · 967 Bytes
/
psp.ps1
File metadata and controls
61 lines (25 loc) · 967 Bytes
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
Function psp {
param($InputObject = $null)
BEGIN {$status = $True}
PROCESS {
if ($InputObject -and $_) {
throw 'ParameterBinderStrings\AmbiguousParameterSet'
} elseif ($InputObject -or $_) {
$processObject = $(if ($InputObject) {$InputObject} else {$_})
write-host "Ping [$processObject]"
$result = Get-CIMinstance win32_pingstatus -Filter "address = '$processObject' and Timeout=1000"
if ($result.StatusCode -eq 0) {
write-host "Ping response OK" -ForegroundColor DarkGreen
# write-host $result.protocoladdress
}
else {
write-host "Ping failed - host not found" -ForegroundColor red
$status = $False
}
}
else {throw 'ParameterBinderStrings\InputObjectNotBound'}
# next processObject
}
# Return True if pings to all machines succeed:
END {return $status}
}