How to see if a HotFix has been installed?

Hi all,

I am a functional consultant and I would like to know if there is a way to find if some Microsoft hot fixes have been installed inside our AX environment ?

Any help will be appreciated. Thanks

check the below link

http://community.dynamics.com/ax/b/brandongeorge/archive/2012/02/03/ax-2012-what-hotfixes-amp-models-are-installed.aspx

Thank you Kumar.

Hi,

Below command will list all the hotfixes in the installed environment as an out file:

Get-AXModel | where-object {$_.name -like “Hotfix”} >> c:\jl_model.out

You can use this command using Dynamics AX Management shell utility using AxUtil command.

Thanks,

Vishal

Good to know that too. thanks Vishal.

You probably don’t need this anymore but there is a class in AX called SysHotfixManifest. For each hotfix installed in your environment, a new method is created in this class.