Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have written nsis script for java project.I have Batch file in my project.I have written batch file for commonly windows 32bit and 64 bit.After installing i have started batch file automatically using Exec command.Its woks fine in 32bit windows.but the same time this is not worked well in 64 bit.so i suspect that before installing i should check whether windows is 32 bit or 64 bit version.please share your views how to check?

share|improve this question

1 Answer

up vote 2 down vote accepted

Use the RunningX64 macro in the x64.nsh header...

share|improve this answer
Thanks.In that url said ; File some.dll # extracts to C:\Windows\System32. what is some.dll? which file it mean to?. i could not able to understand – ILLA Nov 6 '12 at 3:45
That is just some example code, the {If} line is the important part... – Anders Nov 6 '12 at 5:06
oh thanks.that {If} part where am i put in my script? .oninit()? or some other place? – ILLA Nov 6 '12 at 5:21
thanks anders. i have used {If} and working fine. – ILLA Nov 7 '12 at 4:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.