Functions/Sites/Get-RootSite.ps1
1 2 3 4 5 6 7 8 9 10 |
Function Get-RootSite { [CmdletBinding()] Param( ) $uri = $global:PowerGraph_BaseUrl + "sites/root" return Invoke-MSGraphRequest -Uri $uri } |