Paul Martin

Results 8 comments of Paul Martin

Looks like this was fixed here: https://github.com/rubrikinc/rubrik-sdk-for-powershell/commit/004c450ef712a8701ec8ac43c7fccb0071cb492d When will this be released?

Hey @blipson89 , any chance this can make it into the next release?

Never mind. I was mistaken. It does work if I use a nullable datetime for "from". The problem I think is that the JsonSerializer is not using the DateConverter for...

I added the DateConverter to the where clause serialization. The next issue was that the CreatedAt property of the ParseObject I was trying to query was getting serialized as "CreatedAt"...

I've done a bit more digging and found that the Azure.Core assembly that gets loaded into my PowerShell session is the wrong version. I ran this script to identify where...

The simple solution was to import the Microsoft.Graph.Sites module _before_ the SqlServer module. This causes the correct version of Azure.Core to load first. ![image](https://github.com/microsoftgraph/msgraph-sdk-powershell/assets/1508064/5705844b-abbd-46a1-ad05-f64663073dc6) This exhaustive post on [Resolving PowerShell...