PowerShell Universal - 5.5.5

PowerShell Universal - 5.5.5

Release Notes

Features

Bug Fixes

Admin Console

  • Fixed an issue with built-in widgets

APIs

  • Fixed an issue invalid Event Hub data

Automation

  • Fixed issues with Windows PowerShell 5.1 compatibility
  • Fixed an issue with run as credentials
  • Fixes to admin console script management
  • Fixed concurrency issue with jobs

Platform

  • Memory and performance improvements

Downloads

1 Like

We moved from 5.5.1 to 5.5.5 and AutoComplete with AutoCompleteOptions is completely broken:

New-UDAutocomplete -Label "Computer Group" -Id "txtComputerGroup" -OnLoadOptions {
   if ($body -gt 2) {
        $computerGroups = Get-PSUDataComputerGroups -Name $body
        foreach ($computerGroup in $computerGroups) {
        	New-UDAutocompleteOption -Name $computerGroup.Name -Value $computerGroup.Id
        }
   }
} -FullWidth -Value $EventData.ComputerGroupId