Aleksandar Nikolić
Aleksandar Nikolić
### Summary of the new feature / enhancement As about_ articles are just .txt files and don't have a HelpUri attached to them, why can't we with Update-Help download an...
Fix the release notes.
## Description of the new feature An object returned by the Get-AzConnectedMachineExtension cmdlet doesn't have the MachineName property, so it's not easy to tell what machine has been queried when...
Attached images explain the problem. The following image compares the `Get-MgApplication` to the correct implementation in `Get-AzAdApplication`: The second image gives a short analysis of the problem:
Different versions of SDK and Graph API cause different, inconsistent, behavior for the UserType property. SDK v1, v1.0 endpoint: Get-MgUser doesn't return UserType by default SDK v1, beta endpoint: Get-MgUser...
This line in .pssc file: ScriptsToProcess = 'C:\PowerShellRemoting\dynamicmodulesstartup.ps1' worked only because you've created and tested a session configuration on the localhost. An installation step is needed that explains that you...
According to the [List manager](https://learn.microsoft.com/en-us/graph/api/user-list-manager) API doc, you need to use `Get-MgUser` cmdlet and specify `-UserId`, `-ExpandProperty`, `-CountVariable`, and `-ConsistencyLevel` parameters to get the list of transitive managers for a...
`https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.authentication/find-mggraphpermission?view=graph-powershell-1.0` Help for Find-MgGraphPermission used to have parameter descriptions. Not anymore.
### Describe the bug It doesn't make sense to ask command to return all pages and also limited number of items. One parameter set should support `-Top` and `-PageSize`. (With...
### Describe the bug When used together, `-Top` and `-PageSize` return incorrect number of items when $topValue cannot be divided by $PageSizeValue without a remainder. ```powershell # it returns 4...