summaryrefslogtreecommitdiffstats
path: root/win/C#/Installer
diff options
context:
space:
mode:
authorsr55 <[email protected]>2007-10-12 17:23:37 +0000
committersr55 <[email protected]>2007-10-12 17:23:37 +0000
commitd388cdcaeed4ce4f4defd3487d3958d85554897e (patch)
treefe16168f34449516afc8fcb00508597f2a5835db /win/C#/Installer
parentd2cf0f6b0d880540c7f84b9affa6764854654408 (diff)
WinGUI:
- Updated installer with .Net information for lazy users. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1022 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Installer')
-rw-r--r--win/C#/Installer/Installer.nsi4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/C#/Installer/Installer.nsi b/win/C#/Installer/Installer.nsi
index c1bda6f8c..411506504 100644
--- a/win/C#/Installer/Installer.nsi
+++ b/win/C#/Installer/Installer.nsi
@@ -47,7 +47,7 @@ Function .onInit
Call GetDotNETVersion
Pop $0
${If} $0 == "not found"
- MessageBox MB_OK|MB_ICONSTOP ".NET runtime library is not installed."
+ MessageBox MB_OK|MB_ICONSTOP ".NET runtime library is not installed. $\r$\n You can download .Net Framework 2 from the microsoft website. $\r$\n Alternatively you can use google for a direct download URL"
Abort
${EndIf}
@@ -55,7 +55,7 @@ Function .onInit
${VersionCompare} $0 "2.0" $1
${If} $1 == 2
- MessageBox MB_OK|MB_ICONSTOP ".NET runtime library v2.0 or newer is required. You have $0."
+ MessageBox MB_OK|MB_ICONSTOP ".NET runtime library v2.0 or newer is required. You have $0. $\r$\n You can download .Net Framework 2 from the microsoft website. $\r$\n Alternatively you can use google for a direct download URL"
Abort
${EndIf}
FunctionEnd