Hi,
is it possible to collect the Exchange version including build number of security patch?
Based on the following link, the full version number can be queried with "Get-Command Exsetup.exe | ForEach {$_.FileVersionInfo}" in the PS console
https://docs.microsoft.com/en-us/exchange/new-features/build-numbers-and-release-dates?view=exchserver-2019#exchange-server-2013
PS: The following data collection shows only the CU version, without security patch level:
table = AgentReadTable($node, "System.InstalledProducts");
colNameIndex = table->getColumnIndex("NAME");
colVersionIndex = table->getColumnIndex("VERSION");
BR,
Bernhard
is it possible to collect the Exchange version including build number of security patch?
Based on the following link, the full version number can be queried with "Get-Command Exsetup.exe | ForEach {$_.FileVersionInfo}" in the PS console
https://docs.microsoft.com/en-us/exchange/new-features/build-numbers-and-release-dates?view=exchserver-2019#exchange-server-2013
PS: The following data collection shows only the CU version, without security patch level:
table = AgentReadTable($node, "System.InstalledProducts");
colNameIndex = table->getColumnIndex("NAME");
colVersionIndex = table->getColumnIndex("VERSION");
BR,
Bernhard