We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ab8876 commit 2f6ac75Copy full SHA for 2f6ac75
Modules/CIPPCore/Public/Entrypoints/Activity Triggers/Standards/Push-CIPPStandardsApplyBatch.ps1
@@ -21,9 +21,9 @@ function Push-CIPPStandardsApplyBatch {
21
OrchestratorName = 'StandardsApply'
22
Batch = @($AllStandards)
23
SkipLog = $true
24
- }
25
-
26
- $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject ($InputObject | ConvertTo-Json -Depth 25 -Compress)
+ } | ConvertTo-Json -Depth 25 -Compress
+ Write-Host "Standards InputObject: $InputObject"
+ $InstanceId = Start-NewOrchestration -FunctionName 'CIPPOrchestrator' -InputObject $InputObject
27
Write-Information "Started standards apply orchestrator with ID = '$InstanceId'"
28
29
} catch {
0 commit comments