commandLine Property
Gets the argument used to launch the HTML Application (HTA).
Syntax
HTML N/A Scripting [ sPath = ] HTA:APPLICATION.commandLine
Possible Values
sPath A String that specifies the path and arguments used to launch the HTA. The property is read-only. The property has no default value.
Remarks
The commandLine property returns an empty string when the HTA is launched over the HTTP protocol.
Example
This example shows how to get the commandLine property value.
<HTML> <HEAD> <HTA:APPLICATION ID="oHTA" APPLICATIONNAME="myApp" > <SCRIPT> alert("commandLine = " + oHTA.commandLine); </SCRIPT> </HEAD> <BODY SCROLL="no"> </BODY> </HTML>
Code example: https://samples.msdn.microsoft.com/workshop/samples/author/hta/hta_allEX.hta
Applies To
HTA:APPLICATION
See Also