.bat Check If The Page Has Flash Yes Or Not
The idea is to create a .bat or .html file that when i run it tells me whether a url has a Flash object or not. If webpage have Flash Object, show me a echo and if don't have show
Solution 1:
try with winhttpjs.bat (it should be in the same directory):
::testing site with flash
call winhttpjs.bat http://flash.org/video.php -saveto res.html
find /i "http://www.adobe.com/go/getflashplayer" "res.html" >nul 2>nul && (
echo site has flash
)||(
echo site has NO flash
)
::testing site WITHOUT flash
call winhttpjs.bat https://www.google.bg -saveto res.html
find /i "http://www.adobe.com/go/getflashplayer" "res.html" >nul 2>nul && (
echo site has flash
)||(
echo site has NO flash
)
Post a Comment for ".bat Check If The Page Has Flash Yes Or Not"