/
githubmirror
/
nmap
Обзор
Документация
Войти
/
githubmirror
/
nmap
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
mswin32/python-wrap.bat
50 строк
1 KB
nnposter
Add locations used by the official Python installer
19 окт 2025, 05:33
19 окт 2025, 05:33
384113e
Код
Авторство
О чём код?
@echo off rem This batch file searches for a Python interpreter and uses it to run a rem script. It displays an error message if not Python is found. The script rem to run must have the same filename as the batch file, with an extension of rem .py rather than .bat. setlocal EnableDelayedExpansion rem %0 is the name of the batch file. "dpn" means drive, path, filename rem (excluding extension). set PROG=%~dpn0.py if not exist "%PROG%" ( echo Cannot run !PROG! echo because that file does not exist. exit /B 1 ) set NMAPDIR=%~dp0 set PATH=%NMAPDIR%\zenmap\bin;%PATH% for /D %%P in ("%ProgramFiles%\Python 3.*", "%ProgramFiles(x86)%\Python 3.*", "%ProgramFiles%\Python3*", "%ProgramFiles(x86)%\Python3*", "%LocalAppData%\Programs\Python\Python3*" ) do set PATH=!PATH!;%%~P for %%P in ( py.exe, python.exe) do ( set PYTHON=%%~f$PATH:P if exist "!PYTHON!" GOTO:EXEC ) if not exist "%PYTHON%" GOTO:NOPYTHON GOTO:EXEC :NOPYTHON echo Cannot run %PROG% echo because python.exe was not found anywhere in echo %PATH%. echo. echo To run this program, download and install Python from echo http://www.python.org/download. exit /B 1 :EXEC rem This command chaining allows the exit code to propagate. endlocal & "%PYTHON%" "%PROG%" %*