C# .net windows application setup not running in windows 7 [closed]
hello i have created one windows application in c# .net and its wo开发者_如何转开发rking fine in windows xp, but when i try to install the setup in windows 7 or vista,the setup never runs.. should i have to write some code for it...?
please help
Assuming your installer is an MSI, turn logging on to find out why.
msiexec NameOfYour.msi /l*v log.txt
Make sure you installed the correct version of .net Framework on your box.
精彩评论