SyntaxHighlighter

2018年3月8日木曜日

Windows 上で一時的に Python を使って作業する際に使っているバッチファイル

Windows 上で一時的に Python を使って作業する際に使っているバッチファイル

私は、仕事でクリーンな (OS 展開直後の) Windows 実機や Windows PE 上で、Python を用いて作業をすることがしばしばあります。
今回は、その際によく使っているスクリプトを備忘録としてまとめておきます。

いずれも、 Python の -x オプションを使って、バッチファイル先頭行の goto 文をスキップしています。

1バイナリの Python

前提として、1バイナリ化した Python を使います。

以前に書いたように、ほぼすべての標準ライブラリを含んだ StacklessPython を、単一の EXE ファイルをコピーするだけで動作するようにしてあります。
こういった用途のために作ったので、インストールが不要かつコピーするだけで使えるようにしました。

管理者権限で実行する Python スクリプト

下記のようなバッチファイルを用意し、print("hoge") 部分を好きな Python スクリプトに変更すれば、ダブルクリックするだけで、管理者権限の Python スクリプトとして実行することができます。
なお、同じディレクトリに python.exe が必要です。

@goto BEGINNING_OF_CMD
# -*- coding: UTF-8 -*-
"""
:BEGINNING_OF_CMD
@echo off
cd /d "%~dp0"
set PYTHON=python.exe
%PYTHON% -c "import ctypes, sys, ctypes.wintypes; ctypes.windll.shell32.IsUserAnAdmin.restype = ctypes.wintypes.BOOL; sys.exit(ctypes.windll.shell32.IsUserAnAdmin())"
if ERRORLEVEL 2 goto :ERROR
if ERRORLEVEL 1 goto :ADMIN
goto :NON_ADMIN
:ADMIN
%PYTHON% -x "%~nx0"
exit /b %ERRORLEVEL%
:NON_ADMIN
powershell Start-Process "%~0" -Verb runas
exit /b 0
:ERROR
echo IsUserAnAdmin failed.
exit /b 1
"""
print("hoge")

readline を有効にした状態で Python インタプリタを立ち上げるスクリプト

こちらも、下記のようなバッチファイルを用意し、ダブルクリックすれば、 Python のインタプリタが立ち上がります。
pyreadline を使っているので、 Ctrl-f などのキーバインドや、補完、ヒストリ保存もできます。

@goto RUN_PYTHON
# -*- coding: UTF-8 -*-
"""
:RUN_PYTHON
@echo off
cd /d "%~dp0"
python -x -i "%~nx0"
exit /b %ERRORLEVEL%
"""
# from __future__ import print_function, unicode_literals, absolute_import
def main():
import os.path
_history_file_name = os.path.join(os.path.abspath(os.path.dirname(__file__)), "history.txt")
_history_length = 2048
def at_exit_callback():
import readline
try:
readline.write_history_file(_history_file_name)
except IOError:
print("Failed to save history in %s." % _history_file_name)
try:
import pyreadline.rlmain
#pyreadline.rlmain.config_path=r"c:\xxx\pyreadlineconfig.ini"
import readline, atexit
import pyreadline.unicode_helper
#
#
#Normally the codepage for pyreadline is set to be sys.stdout.encoding
#if you need to change this uncomment the following line
#pyreadline.unicode_helper.pyreadline_codepage="utf8"
except ImportError:
print("Module readline not available.")
else:
#import tab completion functionality
import rlcompleter
#Override completer from rlcompleter to disable automatic ( on callable
completer_obj = rlcompleter.Completer()
def nop(val, word):
return word
completer_obj._callable_postfix = nop
readline.set_completer(completer_obj.complete)
#activate tab completion
readline.parse_and_bind("tab: complete")
readline.set_history_length(_history_length)
readline.read_history_file(_history_file_name)
atexit.register(at_exit_callback)
import sys
print("Python " + sys.version + " on " + sys.platform)
main()
del main
view raw interactive.cmd hosted with ❤ by GitHub

作業の内容によっては使えると思いますので、置いておきます。