OSDN Git Service

Allow escape sequences such as \t, \x09 or strings such as "tab" as a delimiter for...
[winmerge-jp/winmerge-jp.git] / UploadToVirusTotal.cmd
index 389e86c..17c8194 100644 (file)
@@ -4,5 +4,12 @@ set DISTDIR=.\Build\Releases
 
 for /F "delims=" %%f in ('type "%DISTDIR%\files.txt"') do (
   "%ProgramFiles(x86)%\VirusTotalUploader2\VirusTotalUploader2.2.exe" %%f
+  timeout 30
+)
+
+@echo off
+echo.
+for /F "delims=" %%f in ('type "%DISTDIR%\files.txt"') do (
+  for /F %%h in ('certutil -hashfile %%f SHA256 ^| findstr -v hash') do echo %%~nxf: https://www.virustotal.com/en/file/%%h/analysis/
 )