Hi
I have two csv files
Oldcsv
Server | IP | State |
Box1 | 192.168.25.1 | Enabled |
Box2 | 192.168.25.2 | Enabled |
Box3 | 192.168.25.3 | Enabled |
newcsv
Server | IP | State |
Box1 | 192.168.25.1 | Enabled |
Box2 | 192.168.25.2 | Disabled |
Box3 | 192.168.25.3 | Disabled |
OUtput should be
Server | IP | OldState | NewState |
Box2 | 192.168.25.2 | Enabled | Disabled |
Box3 | 192.168.25.3 | Enabled | Disabled |
Actuall files contains thousand of boxes.
I have tried compare-object with passthru . But unable to get the desired result. Please Assit/Guide Me.
Thanks
Neo