is it possible to check if an application (foxitreader.exe) name has been changed via bigfix?
You can definitely get close to it.
value "OriginalFilename" of version block of file "Notepad.exe" of windows folder
should i create a relevance with value “OriginalFilename” of version block of file “Notepad.exe” of windows folder?
is that the correct way
thanks again
On my machine this came back with “Notepad.exe.mui” as the answer so you might need to look at other header blocks in the version block area as it might not be the right field but that is the area you should look at. In this case you could do something like
if ((value "OriginalFilename" of version block of it as string as lowercase) starts with (name of it as lowercase)) of file "Notepad.exe" of windows folder) then "Name is original" else "Name has been changed"