Igor Abade

Results 8 comments of Igor Abade

For future reference: ```powershell ((iwr "https://api.github.com/repos/igoravl/tfscmdlets/releases/latest").content | convertfrom-json).tag_name ```

Missing pipeline support: ```powershell New-TfsTeamProject MyProject -Passthru | Import-TfsTeamProjectAvatar -Path "C:\foo\bar\MyProject.png" # Import-TfsTeamProjectAvatar: The input object cannot be bound to any parameters for the command # either because the command...

Thanks for the heads-up, @panda7789 . Things have been a bit busy on my side lately. I'll take a look at that.

@JustinGrote and what are those tools? Any pointers to share? Thx!

Fixed in #214. Release available at https://github.com/igoravl/TfsCmdlets/releases/tag/v2.6.1%2B3491.1

Fixed in #214. Release available at https://github.com/igoravl/TfsCmdlets/releases/tag/v2.6.1%2B3491.1 Thanks for the assit, @panda7789 !

Windows Server 2019 version 1809 is a rather old build. I'm assuming neither of you can either update Windows PowerShell (by installing the latest Windows Management Framework) or install PowerShell...

@MSIH @PhmAnthony any chance could you share the loaded modules in your PowerShell session, and also the copies of Newtonsoft.Json loaded in the PS AppDomain? ```powershell Get-Module [System.AppDomain]::CurrentDomain.GetAssemblies() | where...