Files
macOS_IntuneManagement/Start-IntuneManagement.ps1
Mikael Karlsson 46435b5717 3.4.0
New features and fixes
2022-03-01 17:54:14 +11:00

25 lines
490 B
PowerShell

[CmdletBinding(SupportsShouldProcess=$True)]
param(
[switch]
$ShowConsoleWindow,
[switch]
$JSonSettings,
[string]
$JSonFile,
[switch]
$Silent,
[string]
$SilentBatchFile = "",
[string]
$TenantId,
[string]
$AppId,
[string]
$Secret,
[string]
$Certificate
)
Import-Module ($PSScriptRoot + "\CloudAPIPowerShellManagement.psd1") -Force
$param = $PSBoundParameters
Initialize-CloudAPIManagement -View "IntuneGraphAPI" @param