Sharepoint - where to check CU version for workflow manager 1.0 in SharePoint 2013
Another old fashioned way to check it.
- Go to Control Panel > Programs and Features
- You will see the Service bus and Worklfow Manager witht heir curernt build version number.
- If you click on the Installed Updates > then you will see all the Installed updates / KB for Workflow manager and Service bus.
To see which version of Workflow Manager and Service Bus are installed, use the following PowerShell:
(Get-ChildItem -Path "C:\Program Files\Workflow Manager\1.0\Workflow\Artifacts\Microsoft.Workflow.Service.dll").VersionInfo
(Get-ChildItem -Path "C:\Program Files\Service Bus\1.0\Microsoft.ServiceBus.dll").VersionInfo
or
(Get-ChildItem -Path "C:\Program Files\Service Bus\1.1\Microsoft.ServiceBus.dll").VersionInfo
Reference: SharePoint 2013 Build Numbers. This post also includes a list of available versions and download-links.