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

From NSIS Wiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 6: Line 6:


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


Line 15: Line 15:


Havoc (soy_un_email @ terra_dot_es  (delete the _ in mail)
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"




---
---

Revision as of 10:49, 8 January 2006

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"


---