Write text to a file: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Updated author and download links, and changed format of some pages.)
m (Updated author links.)
Line 1: Line 1:
{|align=right
|<small>Author: [[{{ns:2}}:rainmanp7|rainmanp7]] ([[{{ns:3}}:rainmanp7|talk]], [[{{ns:-1}}:Contributions/rainmanp7|contrib]])</small>
|}
<br style="clear:both;">
== Description ==
== Description ==
This example shows you how to write text to a new file.
This example shows you how to write text to a new file.
Line 11: Line 15:
FileClose $9 ;Closes the empty file
FileClose $9 ;Closes the empty file
</highlight-nsis>
</highlight-nsis>
Page author: [[User:rainmanp7|rainmanp7]]

Revision as of 03:06, 30 April 2005

Author: rainmanp7 (talk, contrib)


Description

This example shows you how to write text to a new file.

The Script

FileOpen $9 apachesrvin.bat w ;Opens a Empty File an fills it
FileWrite $9 "cd $INSTDIR\apache$\r$\n"
FileWrite $9 "apache -n Apache -k install$\r$\n"
FileWrite $9 "net start Apache$\r$\n"
FileWrite $9 "exit$\r$\n"
FileClose $9 ;Closes the empty file