Kennedy Kang'ethe

Results 158 comments of Kennedy Kang'ethe

Closing this since we are tracking #1242

We need to configure `Format.ps1xml` files to change the display of errors

AzureAD to MsGraph doc https://github.com/microsoft/AzureAD-to-MSGraph/blob/main/docs/AzureADPreview/Get-CrossCloudVerificationCode.md AzureAD doc https://learn.microsoft.com/en-us/powershell/module/azuread/get-crosscloudverificationcode?view=azureadps-2.0&viewFallbackFrom=azureadps-2.0-preview

Graph PowerShell example - `Get-MgGroup` InputObject as a parameter - https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.groups/get-mggroup?view=graph-powershell-1.0#getviaidentity

`Set-EntraDirSyncFeature` calls the Graph cmdlet `Update-MgDirectoryOnPremiseSynchronization` https://github.com/microsoftgraph/entra-powershell/blob/3fa0e2762e30ccba1abb7aba2a2ff680c3f1bcb5/module/Entra/Microsoft.Entra/DirectoryManagement/Set-EntraDirSyncFeature.ps1#L91

@deadpoint This works correctly ```PowerShell $everyone | where-object { $group1.id -notcontains $_.id } | Measure-Object ```

AzureAD cmdlet didn't have a `Proof` parameter https://github.com/Azure/azure-docs-powershell-azuread/blob/main/azureadps-2.0/AzureAD/Remove-AzureADServicePrincipalKeyCredential.md Graph cmdlet has the `Proof` parameter https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.applications/remove-mgserviceprincipalkey?view=graph-powershell-1.0 API reference https://learn.microsoft.com/en-us/graph/api/serviceprincipal-removekey?view=graph-rest-1.0&tabs=http

For backwards compatibility with AzureAD cmdlet, `Proof` should not be a required parameter.