Kirk Munro
Kirk Munro
Love this idea, I'm going to want to play with this myself. When I look at the module though, I tend to think Invoke-PSIS should be broken into multiple commands:...
# Summary of the new feature/enhancement As a PowerShell scripter who uses named custom types often I want to be able to use the `-is` and `-isnot` operators to determine...
## 1. General summary of the issue PowerShell supports custom object types via the `PSTypeNames` parameter on `PSObject` instances. Pester has a `-BeOfType` parameter on the `Should` command to allow...
Have you thought about adding to this library so that it supports HTML to Markdown as well? There are a number of other libraries out there that are really basic...
If I attempt to retrieve a resource that does not exist, I get an exception. That exception currently shows the category for the error as `InvalidOperation`, which is incorrect. The...
I want to be able to easily retrieve bulk data sets from commands that normally return single data records by using batching. For example, consider the `Get-MgUserManager` cmdlet. This cmdlet...
Would you please consider making sure that anywhere that the Graph module bundle invokes an async operation that you return PowerShell progress records by invoking Write-Progress as you poll for...
Consider this command: ```powershell Get-MgUser -All -ExpandProperty Manager | Add-Member -Force -MemberType ScriptProperty -Name Manager -Value {$this.PSBase.Manager['userPrincipalName']} -PassThru | Select -First 1 | ConvertTo-Json ``` In the JSON that is...
I'm trying to create groups using `New-MgGroup`. I have signed in using certificate-based authentication, so there is no concept of "me". I want the groups I create to have one...
When analyzing my projects, including projects I have converted to .NET Standard already that use the [Npgsql](https://www.nuget.org/packages/Npgsql/) Nuget package, all references to npgsql show up as red X's, yet the...