[Solved] How can I find the source code for a website using only cmd?
You could use the Microsoft.XMLHTTP COM object in Windows Scripting Host (VBScript or JScript). Here’s a hybrid Batch + JScript example (should be saved with a .bat extension): @if (@CodeSection == @Batch) @then @echo off & setlocal set “url=https://www.faa.gov/air_traffic/flight_info/aeronav/digital_products/vfr/” cscript /nologo /e:JScript “%~f0” “%url%” goto :EOF @end // end Batch / begin JScript var xhr … Read more