|
Command Syntax:
|
:SYSTem:VSA:STARt [newInstance] [,version] [,hostname] [,port] [,waitSecs] [,createOptions] [,commandLineArgs]
|
<newInstance>
|
::= |
0 | 1 |
|
<version>
|
::= |
String |
|
<hostname>
|
::= |
String |
|
<port>
|
::= |
Integer number |
|
<waitSecs>
|
::= |
Integer number |
|
<createOptions>
|
::= |
Integer number |
|
<commandLineArgs>
|
::= |
String |
|
|
Example:
|
// Startup, no options specified (uses defaults)
:SYST:VSA:STAR
// Startup new instance, version 15.0, localhost, default port (60189), wait 50 seconds
:SYST:VSA:STAR 1,"15.0",,-1,50
// Startup new instance, version 15.0, localhost, port 60189, wait 50 seconds,
// use 32-bit
:SYST:VSA:STAR 1,"15.0",,60189,50,1
// Startup new instance, version 15.0, localhost, port 60189, wait 50 seconds,
// use 32-bit, use specified setup file
:SYST:VSA:STAR 1,"15.0",,60189,50,1,'/SETUP:"C:\Temp\setup.setx"'
or
:SYST:VSA:STAR 1,"15.0",,60189,50,1,"/SETUP:""C:\Temp\setup.setx"""
|