PowerShell Universal - 5.0.12
Release Notes
Security
Admin Console
API
Apps
Automation
Platform
Security
Downloads
Adam Driscoll
PowerShell Expert and Developer at Devolutions
I’m assuming this is related, but I’m now receiving this error when trying to load any of my apps:
What can be done to resolve this? Nothing was found in the logs to corroborate this error.
22112c2c92e88e35bdfc2cbd2d99ac4749dd9b8a.png
This typically happens when you download the ZIP file and extract it without unblocking the files. Run Get-ChildItem -Recurse | Unblock-File against the installation directory.
Adam Driscoll
PowerShell Expert and Developer at Devolutions
Thank you - I would miss an easy part of the process during an update that addresses an authorization issue… Classic!
seems in this version the following is broken
New-UDTabs -Tabs {
New-UDTab -Text 'Item One' -Content { }
i have a page that uses the above and it was show up blank , the moment i removed New-UDTabs -Tabs {
New-UDTab -Text 'Item One' -Content { }
its working again without a TabIt’s been reported and resolved: Tabs feature broken in apps in PowerShell Universal 5.0.12 · Issue #3928 · ironmansoftware/powershell-universal · GitHub
Likely will have another release early next week as we had to shuffle this one out to get the CVE handled.
Adam Driscoll
PowerShell Expert and Developer at Devolutions