You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To implement. consider a policy typed option in which the command line options of an existing Prg process are required, or no. Looks to be somewhat out of the scope of PrgLnch in any case.
The text was updated successfully, but these errors were encountered:
To repro,
To the rescue is code from an old AHK thread that will do the task:
for Item in ComObjGet( "winmgmts:" ).ExecQuery("Select * from Win32_Process")
{
Commandline := Item.Commandline
StringReplace Parameters, Commandline, % Item.ExecutablePath
StringReplace Parameters, Parameters, ""
` if (Trim(Parameters) <> "")
MsgBox % "Name: " Item.Name "
nnParameters: " Parameters
}
To implement. consider a policy typed option in which the command line options of an existing Prg process are required, or no. Looks to be somewhat out of the scope of PrgLnch in any case.
The text was updated successfully, but these errors were encountered: