Process Management Lab
Objective: Create basic PowerShell commands to perform tasks
Write a PowerShell script that lists every process for which ProcessName starts with 'C'.
Get-Process | Where-Object {$_.Name -ilike "C*"} 
Write a PowerShell script that lists every process for which the path does not include the string "system32"

Write a PowerShell script that lists every stopped service, orders it alphabetically, and saves it to a csv file

Write a PowerShell script that If an instance of it is not running already, it starts Google Chrome web browser and directs it Champlain.edu. If an instance is already running, stops

Last updated