Compare two text files with duplicates and write the distinct differences to text file
问题 I want to compare 2 text files and output the difference in another text file. compare-object (get-content c:\temp\hostname_old.txt) (get-content c:\temp\hostname_new.txt) | Select-Object -ExpandProperty InputObject | Out-File $Location hostname_old.txt server02 server05 server04 server06 server01 hostname_new.txt (has duplicate names) server04 server01 server02 server04 server02 Result: server04 server02 server05 server06 Note how server04 and server02 are present in this list of differences