GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Program Files/WinMerge/Commands/q/ |
Upload File : |
@echo off if "%PROCESSOR_ARCHITECTURE%" == "AMD64" goto :next if "%PROCESSOR_ARCHITEW6432%" == "AMD64" goto :next if "%PROCESSOR_ARCHITECTURE%" == "ARM64" ( rem Check if the OS is Windows 11 (ver | findstr /c:"Version 10.0.2") > NUL && goto :next ) echo QueryCSV and QueryTSV plugins are only supported on x64 systems goto :eof :next set DOWNLOAD_URL=https://github.com/harelba/q/releases/download/2.0.19/q-AMD64-Windows.exe set Q_PATH=Commands\q\q-AMD64-Windows.exe set MESSAGE='q command is not installed. Do you want to download it from %DOWNLOAD_URL%?' set TITLE='CSV/TSV Data Querier Plugin' set SHA256=f534ab37868d4fd5a472f8be0936b42583bc08860f92fa8135ab16c0d80a03f1 cd "%APPDATA%\WinMerge" if not exist %Q_PATH% ( cd "%~dp0..\.." if not exist %Q_PATH% ( mkdir "%APPDATA%\WinMerge" 2> NUL cd "%APPDATA%\WinMerge" for %%i in (%Q_PATH%) do mkdir %%~pi 2> NUL powershell "if ((New-Object -com WScript.Shell).Popup(%MESSAGE%,0,%TITLE%,1) -ne 1) { throw }" > NUL if errorlevel 1 ( echo "download is canceled" 1>&2 ) else ( start "Downloading..." /WAIT powershell -command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri %DOWNLOAD_URL% -UseBasicParsing -Outfile %Q_PATH%" powershell -command "$(CertUtil -hashfile %Q_PATH% SHA256)[1] -replace ' ','' -eq '%SHA256%'" | findstr True > NUL if errorlevel 1 ( echo %Q_PATH%: download failed 1>&2 del %Q_PATH% 2> NUL ) ) ) ) %Q_PATH% %*