currently I can use Beyond Compare script to output results to a file. You all were able to help me in figuring out how to check for differences in the result text file via Powershell. However, I do have another question. To get the results into a text file, Beyond Compare has you use a basic script and then run the script via cmd. My question is how do I run the script via Powershell instead of cmd? Below is the command used in cmd to run the script.
c:\Program Files\Beyond Compare 4>bcompare.exe @"C:\script.txt" "C:\test1" "C:\test" "C:\bcreport\report.txt"
The script that it is referencing is below.
load "%1" "%2"
expand all
folder-report layout:side-by-side options:display-mismatches output-to:"%3"
Thanks for any input. Getting this to work is all part of a much larger Powershell script I am working on. If I can get this to run from Powershell, it will save me a ton of time as I will be able to script something that takes hours.