Anyone know how to test that the right version of service fabric is installed.
I want to add a section to my build server configuration to ensure that the service fabric cmdlets are installed and can be used by our build processes.
I want to get this exe installed https://download.microsoft.com/dow nload/1/A/A/1AA062F9-0E1D-40E9- BD4F6F12ABB71083/MicrosoftServiceFabri c.6.3.176.9494.exe on windows 2016 boxes if it is not already there.
I have had a look at
get-wmiObject -class Win32_Product
But it doesn't seem to be showing up there, is it a windows update or something?
There are a few ways to identify the Current installed version:
Registry entry
Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Service Fabric
FabricVersion
Get-ItemPropertyValue 'HKLM:\SOFTWARE\Microsoft\Service Fabric\' -Name FabricVersion
Binaries Version
C:\Program Files\Microsoft Service Fabric\bin\
FabricHost.exe
and click properties, go to the tab details, the version will be listed thereInstalled applications
Service Fabric Explorer
Details
Code Version
Manifest Version