Career-Simulation-2

Back to Home 🏠 Previous: Check the Latest Installed Program Next: Summary

Step 9

Write a PowerShell script that gives a list of all running services and puts it in a file named running_services.txt.

Get-WmiObject -Class Win32_Product | Select-Object -Property Name, Version, InstallDate > C:\Users\fstack\Desktop\running_services.txt

alt text



alt text



alt text



alt text


Back to Home 🏠 Previous: Check the Latest Installed Program Next: Summary