Display Windows OS Name in a string: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
m (Updated author and download links, and changed format of some pages.) |
(SF: Lobo Lunar -> Joel) |
||
Line 2: | Line 2: | ||
<highlight-nsis> | <highlight-nsis> | ||
; This Function will display the Name of your OS installed. | ; This Function will display the Name of your OS installed. | ||
; Created by | ; Created by Joel | ||
Name "Windows OS Name" | Name "Windows OS Name" |
Revision as of 15:48, 27 April 2005
The Script
; This Function will display the Name of your OS installed. ; Created by Joel Name "Windows OS Name" OutFile "OSName.exe" Function "GetWIN" ReadRegStr $0 HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion" ProductName StrCmp $0 "" +1 +2 ReadRegStr $0 HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion" ProductName FunctionEnd Function .onInit Call "GetWin" MessageBox MB_OK|MB_ICONINFORMATION $0 Quit FunctionEnd Section -Ghost ; Hide Me Sectionend
Page author: Joelito