Comparar en PowerShell mostrando la diferencia
Comparar en PowerShell mostrando la diferencia
$data=Get-Process Start-Process notepad $data2=Get-Process Compare-Object -ReferenceObject $data -DifferenceObject $data2 -Property ProcessName -PassThru | Sort-Object -Property ProcessName | Select-Object -Property ProcessName, Id, SideIndicator
View On WordPress
















