I have a PowerShell script that starts a process:
$pythodDir, $argsOriginalList = $args
$pythonExePath = Join-Path $pythodDir "python.exe"
$argsList = @("--no-render") + $argsOriginalList
Start-Process -FilePath $pythonExePath -ArgumentList $argsList
I wish to see the full command line of the Start-Process
for example:
C:\python\python.exe --no-render --arg1 value
I didn't find a flag to render the full command that Start-Process
creates. Is there any way to verbose it?