-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathInvoke-CMClientUpdateScan.ps1
More file actions
45 lines (40 loc) · 918 Bytes
/
Invoke-CMClientUpdateScan.ps1
File metadata and controls
45 lines (40 loc) · 918 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
#region Invoke-CMClientUpdateScan
<#
.SYNOPSIS
This function invokes an update scan eval on a ConfigMgr client
.DESCRIPTION
.PARAMETER Computername
The name of the system you'd like to invoke the action on
.PARAMETER AsJob
Specify this parameter if you'd like to run this as a background job.
.EXAMPLE
PS C:\> Invoke-CMClientUpdateScan -Computername 'Value1' -AsJob
.NOTES
#>
function Invoke-CMClientUpdateScan {
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true,
ValueFromPipeline = $true,
ValueFromPipelineByPropertyName = $true)]
[string[]]$Computername,
[Parameter()]
[switch]$AsJob
)
Begin {
}
Process {
foreach ($Computer in $Computername) {
$Params = @{
'Computername' = $Computer;
'ClientAction' = 'UpdateScan';
'AsJob' = $AsJob.IsPresent
}
Invoke-CMClientAction @Params
}
}
End {
}
}
#endregion