Display Windows OS Name in a string: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (SF: Joelito -> Joel.)
m (Adding new author and category links.)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{PageAuthor|Joel}}
== The Script ==
== The Script ==
<highlight-nsis>
<highlight-nsis>
Line 24: Line 26:
</highlight-nsis>
</highlight-nsis>


Page author: [[User:Joel|Joel]]
[[Category:Other Products Handling Functions]]

Latest revision as of 12:08, 24 June 2005

Author: Joel (talk, contrib)


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