VZEditor/VZ157/CHKTSR.DOC
Yoshihiko Hyodo 6f06b9514a first commit
2024-11-18 22:21:26 +09:00

43 lines
1.6 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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.

==============================================================================
CHKTSR Version 1.00 Copyright (C) 1990 by c.mos
  
==============================================================================
 CHKTSR.COM は、VZやEZKEY等の常駐プログラムが、メモリ上に常駐しているか
どうかを判定するコマンドです。
■ 使用方法
chktsr <割り込み番号(16進)> <コマンド名>
 コマンドが見つかれば、エラーレベル1を、見つからなければ0を返します。
■ バッチファイルでの使用例
-------- vzr.bat --------
echo off
chktsr 21 vz
if errorlevel 1 vz -z
-------------------------
■ 常駐コマンドの検索方法
・<割り込み番号>は、常駐プログラムがフックしている割り込み番号のいずれかを指定
 します。
・<コマンド名>は、チェックするコマンドのコマンド名です。MS-DOSのバージョ
 ンが3.0以上で、常駐プログラムが環境領域を解放していない場合は、環境領域中
 のコマンド名の中に指定した文字列が含まれるかどうかをチェックします。大文字/
 小文字は認識しません。
・環境領域がないか、あるいは文字列が見つからない場合は、次に常駐プログラムの
 PSPの80h~に格納されているコマンドラインパラメータ領域で、同様のチェッ
 クを行ないます。その結果をエラーレベルに返します。
・どのような<割り込み番号>、<コマンド名>を指定したらよいかは、VMAPで確認
 して下さい。
・環境領域を解放して、PSPにコマンド名をコピーしない常駐プログラムでは、
 <コマンド名>の代りに、適当なパラメータを指定して下さい。
==============================================================================
End of chktsr.doc
==============================================================================