Use the Out-File cmdlet
Compare-Object ... | Out-File C:\filename.txt
Optionally, add -Encoding utf8 to Out-File as the default encoding is not really ideal for many uses.
Use the Out-File cmdlet
Compare-Object ... | Out-File C:\filename.txt
Optionally, add -Encoding utf8 to Out-File as the default encoding is not really ideal for many uses.