| Code Comments | Top Previous Next | 
| 
 Either a semi-colon or an asterisk may be used to denote the beginning of a comment. A comment may be a on separate line by itself or it may share a line with a script command; assuming the script command appears first. All comments run from the point they begin until the end of the line. 
 Consider the following examples of valid script file comments: 
 ; Log on to an FTP site 
 * this is a comment line MESSAGEBOX "hello world" DIALNET "My Connection" ;; use Dial-Up Networking 
 Text appearing after a semi-colon or asterisk character on a line is a comment. This may cause unintended consequences. In the following example a parsing error could occur if the portion of the line after the asterisk character is interpreted as a comment: 
 FTPLOGON "192.168.1.15" /user=Robo /pw=secr*t /servertype=FTPS 
 The issue may be prevented by using quotes as follows: 
 FTPLOGON "192.168.1.15" /user=Robo /pw="secr*t" /servertype=FTPS 
 |