I am getting an error here and I am not too sure why as my other OS logics are identical and it seems to work.
Received error:
PHP Code:
${If} ${IsWin10}
MessageBox MB_OK|MB_ICONEXCLAMATION "You are using an elite version of Windows 10 bro" IDOK
${EndIf}
As this works:code:
!insertmacro: macro "_If" requires 4 parameter(s), passed 2!
PHP Code:
${If} ${IsWin8}
${OrIf} ${IsWin8.1}
MessageBox MB_YESNO|MB_ICONEXCLAMATION|MB_TOPMOST|MB_DEFBUTTON2 \
"This Foobar, Inc software package is being tested on, but is not fully supported on Windows 8.$\r$\n$\r$\nFoobar Inc. cannot \
provide technical support for this installation.$\r$\n$\r$\nDo you still want to continue with the installation?" \
IDYES further IDNO done
${EndIf}
Comment