Monthly Archives: April 2019

How to show remote desktop in full screen?

You nee to run this: mstsc /f

Posted in Uncategorized | Leave a comment

How to recursively compare two folders for binary differences?

You can user command “./mypowershellscript 2>&1 >>output.txt” and put the following code in your powershell script: $files = Get-ChildItem “C:\mydev” -recurse foreach ($f in $files){ $sourcefile1 = $f.FullName if($f.Mode -ne ‘d—-‘) { $sourcefile2 = $sourcefile1.replace(“mydev”,”myprod”) fc.exe /b $sourcefile1 $sourcefile2 } … Continue reading

Posted in Uncategorized | Leave a comment