, , - - , Windows, . , .bat .
.bat Actions > Start a Program > Program/Script: " ".
set original_dir=%CD%
set venv_root_dir="C:\Python-Venvs\env-name"
cd %venv_root_dir%
call %venv_root_dir%\Scripts\activate.bat
python your_script.py <arg1> <arg2>
call %venv_root_dir%\Scripts\deactivate.bat
cd %original_dir%
exit /B 1
python your_script.py <arg1> <arg2>... <program name> <arg1> <arg2>...
, , .