Get-Process notepad |
Where-Object {
$time = (New-TimeSpan $_.StartTime (Get-Date)).TotalSeconds;
($time -lt 180)
} |
ForEach-Object {
“Stop process $($_.id) after $time seconds…”;
$_.Kill()
}
please explain what “;” does and explain about the varible they assigned, please explain about what they have assigned to the varialbe, the above program which i got from a book i very complicated to me, can you pleas explain it.