Talk:Installing the Microsoft .NET Framework: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
No edit summary
 
(Link for v4)
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
What the heck is !insertmacro PRINT?
What the heck is !insertmacro PRINT?
---
I put this and now works:
!macro Print PARAM
SetDetailsPrint both
DetailPrint "${PARAM}"
SetDetailsPrint textonly
!macroend
And this is my question: Where is the url for dotnet 2.0 files???, someone have a script that install it?
Havoc (soy_un_email @ terra_dot_es  (delete the _ in mail)
I will respond my first question, the url are:
!define BASE_URL http://download.microsoft.com/download
; .NET Framework
; English
!define URL_DOTNET_1033 "${BASE_URL}/5/6/7/567758a3-759e-473e-bf8f-52154438565a/dotnetfx.exe"
; German
!define URL_DOTNET_1031 "${BASE_URL}/9/4/5/945211a0-9ce4-4ab8-be8a-37fff4f3de05/dotnetfx.exe"
; Chinese (Simplified)
!define URL_DOTNET_2052 "${BASE_URL}/6/b/c/6bc5b871-4244-467d-b5f3-a7310d2cbf64/dotnetfx.exe"
----
http://blogs.msdn.com/astebner/archive/2009/04/16/9553804.aspx#Silent1,2,3 and http://blogs.msdn.com/astebner/archive/2010/05/12/10011664.aspx#SilentV4 install, repair and uninstall command lines for each version of the .NET Framework

Latest revision as of 07:09, 13 May 2010

What the heck is !insertmacro PRINT?

---

I put this and now works:

!macro Print PARAM SetDetailsPrint both DetailPrint "${PARAM}" SetDetailsPrint textonly !macroend


And this is my question: Where is the url for dotnet 2.0 files???, someone have a script that install it?

Havoc (soy_un_email @ terra_dot_es (delete the _ in mail)


I will respond my first question, the url are:

!define BASE_URL http://download.microsoft.com/download

.NET Framework
English

!define URL_DOTNET_1033 "${BASE_URL}/5/6/7/567758a3-759e-473e-bf8f-52154438565a/dotnetfx.exe"

German

!define URL_DOTNET_1031 "${BASE_URL}/9/4/5/945211a0-9ce4-4ab8-be8a-37fff4f3de05/dotnetfx.exe"

Chinese (Simplified)

!define URL_DOTNET_2052 "${BASE_URL}/6/b/c/6bc5b871-4244-467d-b5f3-a7310d2cbf64/dotnetfx.exe"



http://blogs.msdn.com/astebner/archive/2009/04/16/9553804.aspx#Silent1,2,3 and http://blogs.msdn.com/astebner/archive/2010/05/12/10011664.aspx#SilentV4 install, repair and uninstall command lines for each version of the .NET Framework