Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find Kentico hotfix when KIM is not installed

Tags:

hotfix

kentico

On my development machine I can view the hotfix level of the Kentico website using KIM. KIM isn't installed on our production machines.

In Kentico v7.0 the hotfix level was reported in CMS Desk but that isn't the case in Kentico v9.0.

Is there anywhere I can look to find the hotfix level without using KIM?

like image 787
sixeyes Avatar asked Nov 29 '25 14:11

sixeyes


2 Answers

There are typically a few places you can find this:

  1. Database
  2. File system
  3. Kentico UI

If you get your info from the database, it will only be relevant to the data. If you get your info from the file system, it will tell you the version of the files. If you look in the Kentico UI, it will show you what is in the database.

To get the info out of the database run this query:

SELECT *
FROM CMS_SettingsKey
WHERE KeyName = 'CMSDataVersion' OR
KeyName = 'CMSDBVersion' OR
KeyName = 'CMSHotfixVersion'

The KeyValue fields will have the info you are looking for.

To get the info from the file system, go to the Bin directory and right click on any of the CMS dll's and go to properties>details. The Product Version will provide you with the version information.

In the file system you can also find the hotfix in a txt file under /App_Data/Install/Hotfix.txt

To get the info from the UI, log into Kentico and click the question mark at the top right of the screen, it will show the current version.

like image 150
Brenden Kehren Avatar answered Dec 02 '25 03:12

Brenden Kehren


In the user interface (admin) in Help toolbar. enter image description here

You can also find it in database in CMS_SettingsKey table. Look for CMSHotfixVersion KeyName.

like image 25
Martin Makarsky Avatar answered Dec 02 '25 03:12

Martin Makarsky



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!