PowerShell Universal - 5.5.5

avatar

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

Adam Driscoll
PowerShell Expert and Software Architect at Devolutions

All Comments (1)

avatar

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