Files
macOS_IntuneManagement/Start-IntuneManagement.ps1
2021-04-13 17:57:12 +10:00

7 lines
258 B
PowerShell

[CmdletBinding(SupportsShouldProcess=$True)]
param(
[switch]
$ShowConsoleWindow
)
Import-Module ($PSScriptRoot + "\CloudAPIPowerShellManagement.psd1") -Force
Initialize-CloudAPIManagement -View "IntuneGraphAPI" -ShowConsoleWindow:($ShowConsoleWindow)