(imported topic written by okole91)
None of my computers are reporting on the property/relevance below:
(it = “4.2.1”) of version of file “c:\program files\research in motion\blackberry\desktopmgr.exe”
any ideas?
(imported topic written by okole91)
None of my computers are reporting on the property/relevance below:
(it = “4.2.1”) of version of file “c:\program files\research in motion\blackberry\desktopmgr.exe”
any ideas?
(imported comment written by lmpymilk91)
yeah, you’re missing part of the
version…
maybe the build or revision
[major.minor[.build
.revision]]
here is what I did for mine. Notice the extra “.”
q:(it = "4.7.0.37") of version of file "c:\program files\research in motion\blackberry\desktopmgr.exe"
A: True
try something like this first to get your version
version of file "c:\program files\research in motion\blackberry\desktopmgr.exe"
(imported comment written by jessewk)
If you want to match on just “4.2.1” and don’t care about the build/revision, just cast the string to a version.
Q: “4.2.1” as version = “4.2.1.9” as version
A: True
So try this:
(it = “4.2.1” as version) of version of file “c:\program files\research in motion\blackberry\desktopmgr.exe”