Which PowerShell cmdlet will display the command line parameters used to launch a Windows process?
Which PowerShell cmdlet will display the command line parameters used to launch a Windows process?
The PowerShell cmdlet 'Get-Process' is used to get information about running processes, including their command line parameters. It provides detailed information about processes, which can include details like process names, IDs, and command line arguments.
Get-CimInstance -ClassName Win32_Service | FL Name, PathName
Answer is "B"