zapret2-youtube-discord/utils/run-tests.bat
loop-uh 7d5aec1bc7
All checks were successful
Проверка восстановленного репозитория / validate (push) Successful in 4s
Выпуск Zapret2 для Windows / release (push) Successful in 7s
Восстановить полный Zapret2 и перенести выпуск в Forgejo
2026-08-07 17:10:02 +03:00

16 lines
751 B
Batchfile
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@echo off
%SystemRoot%\System32\chcp.com 65001 >nul 2>&1
:: Запуск тестирования пресетов с обходом политики выполнения PowerShell
:: Можно запускать двойным кликом — права администратора будут запрошены автоматически
set "SYS32=%SystemRoot%\System32"
set "PS_EXE=%SYS32%\WindowsPowerShell\v1.0\powershell.exe"
%SYS32%\net.exe session >nul 2>&1
if %errorlevel% neq 0 (
echo [!] Требуются права администратора. Перезапуск...
%PS_EXE% -NoProfile -Command "Start-Process '%~f0' -Verb RunAs"
exit /b
)
%PS_EXE% -NoProfile -ExecutionPolicy Bypass -File "%~dp0test-presets.ps1"