Scripting and security

Operating Systems, software development, scripting, PowerShell tips, network and security

Primary Menu
  • Home
  • Categories
  • Books
  • Courses
  • Top posts
  • Projects
  • Scripts
Skip to content

Comparar en PowerShell

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...

PowerShell
1
2
3
4
5
6
7
#Comparar por nombre de proceso
 
$data=Get-Process
Start-Process notepad
$data2=Get-Process
 
Compare-Object -ReferenceObject $data -DifferenceObject $data2 -Property ProcessName -PassThru


PowerShell Compare-Object, data, Get-Process, Start-Process

Related Articles

PRO POWERSHELL FOR DATABASE DEVELOPERS (CAFFERKY, BRYAN P.)

Listar los archivos de un directorio

Crear objetos en PowerShell 5

Post navigation

Previous Previous post: Gets information about .pfx certificate files on the computer
Next Next post: Recopilación de Scripts día 01/11/2017