Runing a .exe file on Windows Start: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Adding new author and category links.)
No edit summary
 
Line 1: Line 1:
{{PageAuthor|Julio Chinchilla}}
#redirect [[Running_a_.exe_file_on_Windows_Start]]
 
== The Script ==
<highlight-nsis>
;Runing a .exe file on Windows Start
!include "MUI.nsh"
 
Name "START WINDOWS"
OutFile "STRWIN.exe"
 
!insertmacro MUI_LANGUAGE "Spanish"
 
Section
  WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Run" "Notepad" "$WinDir\Notepad.exe"
  MessageBox MB_OK "The Notepad Runing as Windows Start"
SectionEnd
</highlight-nsis>
 
[[Category:Code Examples]]

Latest revision as of 23:48, 4 August 2007