I am looking to compare two exe files. I should ensure that the existing exe on the server is a product of the code I have now.
I am using
>dumpbin /rawdata oldfile.exe > oldfile.txt
>dumpbin /rawdata newfile.exe > newfile.txt
>fc /b oldfile.txt newfile.txt //compare them like this
>windiff oldfile.txt newfile.txt // or this
I guess they should only differ by the timestamp. These are VB.net exes from visual studio 2003.
Any thoughts?
Thanks.