@@ -4,7 +4,9 @@ function New-CIPPRestoreTask {
4
4
$Task ,
5
5
$TenantFilter ,
6
6
$backup ,
7
- $overwrite
7
+ $overwrite ,
8
+ $APINAME ,
9
+ $Headers
8
10
)
9
11
$Table = Get-CippTable - tablename ' ScheduledBackup'
10
12
$BackupData = Get-CIPPAzDataTableEntity @Table - Filter " RowKey eq '$backup '"
@@ -99,7 +101,7 @@ function New-CIPPRestoreTask {
99
101
$BackupConfig = $BackupData.intuneconfig | ConvertFrom-Json
100
102
foreach ($backup in $backupConfig ) {
101
103
try {
102
- Set-CIPPIntunePolicy - TemplateType $backup.Type - TenantFilter $TenantFilter - DisplayName $backup.DisplayName - Description $backup.Description - RawJSON ($backup.TemplateJson ) - ErrorAction SilentlyContinue
104
+ Set-CIPPIntunePolicy - TemplateType $backup.Type - TenantFilter $TenantFilter - DisplayName $backup.DisplayName - Description $backup.Description - RawJSON ($backup.TemplateJson ) - Headers $Headers - APINAME $APINAME - ErrorAction SilentlyContinue
103
105
} catch {
104
106
$ErrorMessage = Get-CippException - Exception $_
105
107
" Could not restore Intune Configuration $DisplayName : $ ( $ErrorMessage.NormalizedError ) "
@@ -112,7 +114,7 @@ function New-CIPPRestoreTask {
112
114
$BackupConfig = $BackupData.intunecompliance | ConvertFrom-Json
113
115
foreach ($backup in $backupConfig ) {
114
116
try {
115
- Set-CIPPIntunePolicy - TemplateType $backup.Type - TenantFilter $TenantFilter - DisplayName $backup.DisplayName - Description $backup.Description - RawJSON ($backup.TemplateJson ) - ErrorAction SilentlyContinue
117
+ Set-CIPPIntunePolicy - TemplateType $backup.Type - TenantFilter $TenantFilter - DisplayName $backup.DisplayName - Description $backup.Description - RawJSON ($backup.TemplateJson ) - Headers $Headers - APINAME $APINAME - ErrorAction SilentlyContinue
116
118
} catch {
117
119
$ErrorMessage = Get-CippException - Exception $_
118
120
" Could not restore Intune Compliance $DisplayName : $ ( $ErrorMessage.NormalizedError ) "
@@ -126,7 +128,7 @@ function New-CIPPRestoreTask {
126
128
$BackupConfig = $BackupData.intuneprotection | ConvertFrom-Json
127
129
foreach ($backup in $backupConfig ) {
128
130
try {
129
- Set-CIPPIntunePolicy - TemplateType $backup.Type - TenantFilter $TenantFilter - DisplayName $backup.DisplayName - Description $backup.Description - RawJSON ($backup.TemplateJson ) - ErrorAction SilentlyContinue
131
+ Set-CIPPIntunePolicy - TemplateType $backup.Type - TenantFilter $TenantFilter - DisplayName $backup.DisplayName - Description $backup.Description - RawJSON ($backup.TemplateJson ) - Headers $Headers - APINAME $APINAME - ErrorAction SilentlyContinue
130
132
} catch {
131
133
$ErrorMessage = Get-CippException - Exception $_
132
134
" Could not restore Intune Protection $DisplayName : $ ( $ErrorMessage.NormalizedError ) "
@@ -281,7 +283,7 @@ function New-CIPPRestoreTask {
281
283
foreach ($param in $ruleparams ) {
282
284
if ($rule.PSObject.Properties [$param ]) {
283
285
if ($param -eq ' Enabled' ) {
284
- $cmdparams [$param ] = if ($rule.State -eq ' Enabled' ) {$true } else {$false }
286
+ $cmdparams [$param ] = if ($rule.State -eq ' Enabled' ) { $true } else { $false }
285
287
} else {
286
288
$cmdparams [$param ] = $rule .$param
287
289
}
@@ -301,7 +303,7 @@ function New-CIPPRestoreTask {
301
303
foreach ($param in $ruleparams ) {
302
304
if ($rule.PSObject.Properties [$param ]) {
303
305
if ($param -eq ' Enabled' ) {
304
- $cmdparams [$param ] = if ($rule.State -eq ' Enabled' ) {$true } else {$false }
306
+ $cmdparams [$param ] = if ($rule.State -eq ' Enabled' ) { $true } else { $false }
305
307
} else {
306
308
$cmdparams [$param ] = $rule .$param
307
309
}
@@ -438,7 +440,7 @@ function New-CIPPRestoreTask {
438
440
foreach ($param in $ruleparams ) {
439
441
if ($rule.PSObject.Properties [$param ]) {
440
442
if ($param -eq ' Enabled' ) {
441
- $cmdparams [$param ] = if ($rule.State -eq ' Enabled' ) {$true } else {$false }
443
+ $cmdparams [$param ] = if ($rule.State -eq ' Enabled' ) { $true } else { $false }
442
444
} else {
443
445
$cmdparams [$param ] = $rule .$param
444
446
}
@@ -458,7 +460,7 @@ function New-CIPPRestoreTask {
458
460
foreach ($param in $ruleparams ) {
459
461
if ($rule.PSObject.Properties [$param ]) {
460
462
if ($param -eq ' Enabled' ) {
461
- $cmdparams [$param ] = if ($rule.State -eq ' Enabled' ) {$true } else {$false }
463
+ $cmdparams [$param ] = if ($rule.State -eq ' Enabled' ) { $true } else { $false }
462
464
} else {
463
465
$cmdparams [$param ] = $rule .$param
464
466
}
0 commit comments