I am having problems getting this script to work. Can someone help?
Display a list of processes where the process ID is between 100 and 200; sort the display by process:
Get-Process |where { $_.'ID' -gt 100 and $_.’ID’ –lt 200[System.Management.Automation.PSObject]' } |Sort-Object-property'ID'
Thanks