PowerShell - System Administration
Which of the following is the correct syntax to stop a process named 'notepad' in PowerShell?
Stop-Process. The parameter to specify process by name is -Name.Stop-Process -Name notepad. Get-Process -Stop notepad uses wrong cmdlet and parameter. Stop-Process notepad -Force misses the parameter name before 'notepad'. Kill-Process -Name notepad uses a non-existent cmdlet.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions