Talk:DotNET: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
No edit summary
 
(4 intermediate revisions by 3 users not shown)
Line 20: Line 20:


== DotNET3Point5 ==
== DotNET3Point5 ==
Why does the system call to GetCORVersion not work for .NET 3.5 ? It returns "v2.0.xxxx" here.


I hacked this up for 3.5
Using registry key "hack": [[How_to_Detect_any_.NET_Framework]]


<highlight-nsis>
== Using inetc plug-in for download ==
# DotNET version checking macro.
# Written by AnarkiNet(AnarkiNet@gmail.com) originally, modified by eyal0 (for use in http://www.sourceforge.net/projects/itwister), hacked up by PSIMS APS MEDILINK 20090703 for dotnet 3.5
# Downloads and runs the Microsoft .NET Framework version 2.0 Redistributable and runs it if the user does not have the correct version.
# To use, call the macro with a string:
# 'CheckDotNET3Point5'
# All register variables are saved and restored by CheckDotNet
# No output


!macro CheckDotNET3Point5
I prefer the [[Inetc plug-in]] because it has a better proxy support than [[Builtin_NSISdl_plug-in|NSISdl]].
  !define DOTNET_URL "http://download.microsoft.com/download/7/0/3/703455ee-a747-4cc8-bd3e-98a615c3aedb/dotNetFx35setup.exe"
  DetailPrint "Checking your .NET Framework version..."
  ;callee register save
  Push $0
  Push $1
  Push $2
  Push $3
  Push $4
  Push $5
  Push $6 ;backup of intsalled ver
  Push $7 ;backup of DoNetReqVer
  Push $8


  StrCpy $7 "3.5.0"
Just download the [[Inetc plug-in]] ZIP file, extract the ''inetc.dll'' and put it into your plugin folder.


  loop:
Than replace these lines within DotNET.nsh
  EnumRegKey $1 HKLM "SOFTWARE\Microsoft\NET Framework Setup\NDP" $8
<highlight-nsis>
  StrCmp $1 "" done ;jump to end if no more registry keys
  IntOp $8 $8 + 1
  StrCpy $0 $1
  goto loop
  done:
 
  ${If} $0 == 0
    DetailPrint ".NET Framework not found, download is required for program to run."
    Goto NoDotNET
  ${EndIf}
 
  StrCpy $1 $0 1 1
 
  ${If} $1 > 3
    Goto NewDotNET
  ${EndIf}
 
  StrCpy $2 $0 1 3
 
  ${If} $2 > 4
    Goto NewDotNET
  ${EndIf}
 
  StrCpy $3 $0 "" 5
 
  ${If} $3 == ""
    StrCpy $3 "0"
  ${EndIf}
 
  StrCpy $6 "$1.$2.$3"
 
  Goto OldDotNET
 
  ${If} $0 < 0
    DetailPrint ".NET Framework Version found: $6, but is older than the required version: $7"
    Goto OldDotNET
  ${Else}
    DetailPrint ".NET Framework Version found: $6, equal or newer to required version: $7."
    Goto NewDotNET
  ${EndIf}
 
NoDotNET:
    MessageBox MB_YESNOCANCEL|MB_ICONEXCLAMATION \
    ".NET Framework not installed.$\nRequired Version: $7 or greater.$\nDownload .NET Framework version from www.microsoft.com?" \
    /SD IDYES IDYES DownloadDotNET IDNO NewDotNET
    goto GiveUpDotNET ;IDCANCEL
OldDotNET:
    MessageBox MB_YESNOCANCEL|MB_ICONEXCLAMATION \
    "Your .NET Framework version: $6.$\nRequired Version: $7 or greater.$\nDownload .NET Framework version from www.microsoft.com?" \
    /SD IDYES IDYES DownloadDotNET IDNO NewDotNET
    goto GiveUpDotNET ;IDCANCEL
DownloadDotNET:
DownloadDotNET:
   DetailPrint "Beginning download of latest .NET Framework version."
   DetailPrint "Beginning download of latest .NET Framework version."
   NSISDL::download ${DOTNET_URL} "$TEMP\dotNetFx35setup.exe"
   NSISDL::download ${DOTNET_URL} "$TEMP\dotnetfx.exe"
   DetailPrint "Completed download."
   DetailPrint "Completed download."
   Pop $0
   Pop $0
Line 117: Line 46:
     IDYES NewDotNET IDNO GiveUpDotNET
     IDYES NewDotNET IDNO GiveUpDotNET
   ${EndIf}
   ${EndIf}
   DetailPrint "Pausing installation while downloaded .NET Framework installer runs."
</highlight-nsis>
   ExecWait "$TEMP\dotNetFx35setup.exe /qb"
with those lines
  DetailPrint "Completed .NET Framework install/update. Removing .NET Framework installer."
<highlight-nsis>
  Delete "$TEMP\dotNetFx35setup.exe"
DownloadDotNET:
  DetailPrint ".NET Framework installer removed."
   DetailPrint "Beginning download of latest .NET Framework version."
  goto NewDotNet
   inetc::get "${DOTNET_URL}" "$TEMP\dotnetfx.exe" "/end"
   DetailPrint "Completed download."
GiveUpDotNET:
  Abort "Installation cancelled by user."
NewDotNET:
   DetailPrint "Proceeding with remainder of installation."
   Pop $0
   Pop $0
   Pop $1
   ${If} $0 == "Cancelled"
   Pop $2
    MessageBox MB_YESNO|MB_ICONEXCLAMATION \
  Pop $3
    "Download cancelled.  Continue Installation?" \
  Pop $4
    IDYES NewDotNET IDNO GiveUpDotNET
  Pop $5
   ${ElseIf} $0 != "OK"
  Pop $6 ;backup of intsalled ver
    MessageBox MB_YESNO|MB_ICONEXCLAMATION \
  Pop $7 ;backup of DoNetReqVer
    "Download failed:$\n$0$\n$\nContinue Installation?" \
   Pop $8
    IDYES NewDotNET IDNO GiveUpDotNET
 
   ${EndIf}
!macroend
</highlight-nsis>
</highlight-nsis>

Latest revision as of 10:18, 5 January 2010

In the script for the first example the pops for the register restore are in the wrong order.

--PLJ-- Some day someone will work out how to:
a) Detect .Net 3.5
b) Install into it!
If anyone knows how, document it, please.

Installing on non English systems

This script fails on Japanese windows XP with the error:

"Command line option syntax error. Type Command /? for Help"

The fix is simple: Encase the path in ExecWait with inverted commas '"'.

I.e. change to:

ExecWait '"$TEMP\dotnetfx.exe" /q /c:"install /q"'


DotNET3Point5

Why does the system call to GetCORVersion not work for .NET 3.5 ? It returns "v2.0.xxxx" here.

Using registry key "hack": How_to_Detect_any_.NET_Framework

Using inetc plug-in for download

I prefer the Inetc plug-in because it has a better proxy support than NSISdl.

Just download the Inetc plug-in ZIP file, extract the inetc.dll and put it into your plugin folder.

Than replace these lines within DotNET.nsh

DownloadDotNET:
  DetailPrint "Beginning download of latest .NET Framework version."
  NSISDL::download ${DOTNET_URL} "$TEMP\dotnetfx.exe"
  DetailPrint "Completed download."
  Pop $0
  ${If} $0 == "cancel"
    MessageBox MB_YESNO|MB_ICONEXCLAMATION \
    "Download cancelled.  Continue Installation?" \
    IDYES NewDotNET IDNO GiveUpDotNET
  ${ElseIf} $0 != "success"
    MessageBox MB_YESNO|MB_ICONEXCLAMATION \
    "Download failed:$\n$0$\n$\nContinue Installation?" \
    IDYES NewDotNET IDNO GiveUpDotNET
  ${EndIf}

with those lines

DownloadDotNET:
  DetailPrint "Beginning download of latest .NET Framework version."
  inetc::get "${DOTNET_URL}" "$TEMP\dotnetfx.exe" "/end"
  DetailPrint "Completed download."
  Pop $0
  ${If} $0 == "Cancelled"
    MessageBox MB_YESNO|MB_ICONEXCLAMATION \
    "Download cancelled.  Continue Installation?" \
    IDYES NewDotNET IDNO GiveUpDotNET
  ${ElseIf} $0 != "OK"
    MessageBox MB_YESNO|MB_ICONEXCLAMATION \
    "Download failed:$\n$0$\n$\nContinue Installation?" \
    IDYES NewDotNET IDNO GiveUpDotNET
  ${EndIf}