registry launch condition for ie version?
i am using vs2005 deployment project to build setup for my application. my application runs well in ie versions 6,7,8 but not supports ie version more than 8. i have created a registry launch condition for that but it even not allowing me to install in ie 8 machine also
here is the details of r开发者_StackOverflow社区egistry launch condition
Search for registry launch condition properties:
Progperty = IEVER
RegKey = SOFTWARE\Microsoft\Internet Explorer\Version Vector
Root= vsdrrHKLM
value = IE
launch condition properties: - i have tried those diffent kinds of conditions
- Condition:
IEVER <= "8.0.0.0"
- Condition:
IEVER <= "#8.0"
- Condition:
IEVER <= "#8.0.0.0"
- Condition:
IEVER <= 8
can anybody help me to overcome the problem
At last we found solution, here it is
registry launch condition properties:
Progperty = IEVER
RegKey = SOFTWARE\Microsoft\Internet Explorer
Root= vsdrrHKLM
value = Version
Condition: IEVER < "9.0.0.0"
精彩评论