Junior — Middle
What skills and experience do you have in working with PowerShell?
sobes.tech AI
Answer from AI
I have experience writing and debugging PowerShell scripts for automating routine tasks such as user management, system configuration, and application deployment. I am proficient in using basic PowerShell commands and constructs, working with objects, files, and the registry, as well as creating functions and modules for code reuse.
An example of a simple script to get a list of processes:
Get-Process | Where-Object { $_.CPU -gt 100 }
This script outputs processes that consume more than 100 seconds of CPU time.