Starts a Windows application
(startapp appcmd[file])
An integer greater than 0, if successful; otherwise nil.
The following code starts Windows Notepad and opens the acad.lsp file.
Command: (startapp "notepad" "acad.lsp")
33
If an argument has embedded spaces, it must be surrounded by literal double quotes. For example, to edit the file my stuff.txt with Notepad, use the following syntax:
Command: (startapp "notepad.exe" "\"my stuff.txt\"")
33