Bartek Bielawski

Results 7 comments of Bartek Bielawski

I like this idea but I guess we would need to include _all_ cmdlets that support binding ByPropertyName for any of their parameters too... Even if none of the properties...

Looks promising. Does that one support autodiscover? I believe current version works fine as long as you don't use that capability: ![ews-linux-nodiscovery](https://user-images.githubusercontent.com/3310142/39203414-fedda098-47f4-11e8-8ada-ea3e0992425f.png)

As far as I can tell it's already implemented? Get-EWSItem -Limit ```powershell Get-Help Get-EWSItem -Parameter Limit ``` At the moment there is no default value, meaning PageSize is limiting your...

Could you please name the platform where you've tried it? It was working fine for me in the past w/o additional dlls.

I suspect that this might be hard sell and not easy thing to do - but I'd love to see posh-git implementing new way of tab-completing command elements (assuming you...

The purpose of ArgumentList is to pass positional arguments to a given command: E.g. to see `-Concatenate` on `Set-Item` you would do this: `Get-Command Set-Item -ArgumentList WSMan:\localhost\Client\TrustedHosts -Syntax` Another example:...

Generally, I would argue that `-Arguments` that would take a hash table would be much cleaner: ```powershell Get-Command -Arguments @{ PSProvider = 'ActiveDirectory' } -Name New-PSDrive -Syntax ``` I believe...