.exe 検索バッチ
Windows PCにおいて下記条件の下、.exeファイルを検索するバッチです。
--条件
・検索PC: 192.168.0.1~192.168.0.255
・書き出しファイル: IP_address.txt
・対象ドライブ: Cドライブ, Dドライブ
*Windows7にて動作確認しました。
----
@echo off
set IP=192.168.0.
for /l %%i in (1,1,255) do dir \\%IP%%%i\C$ /s *.exe | find "exe" >> %IP%%%i-C.txt
for /l %%i in (1,1,255) do dir \\%IP%%%i\D$ /s *.exe | find "exe" >> %IP%%%i-D.txt
----
%がたくさんあり見難いのですが、
%IP-ADDRESS% 192.168.0.
%%i i
%IP-ADDRESS%%%i 192.168.0.1~
想定外な実行ファイル.exeがないかの検索に使いました。
参考までに下記Webサービスにて、テキストの比較も可能です。
テキストの比較ツール
--difff - デュフフ
http://altair.dbcls.jp/difff/
過去記事
--コマンド・プロンプトでイベント・ログを表示する
--ExcelとbatでDisk容量チェック
--音を鳴らすバッチ
「Windows」カテゴリの記事
- スティックPC(2015.04.07)
- Windows10 Technical Preview版(2015.03.20)
- 0バイトファイル 削除方法(2014.09.19)
- WULF2 (Windows Update List & File)(2014.09.07)
- Brynhildr と KeroRemote(2014.09.05)
「コマンド」カテゴリの記事
- PsExec リモートインストール(2014.08.27)
- Flash リモートインストール(2014.07.11)
- cmd cacls(2014.05.27)
- cmd driverquery(2014.05.23)
- cmd システムファイルチェッカー(2014.05.20)
「Script」カテゴリの記事
- PsExec リモートインストール(2014.08.27)
- PowerShell学習支援ツール Script Browser & Script Analyzer(2014.05.12)
- 複数のサブフォルダ内のファイルを一括コピー(2013.06.12)
- Gmail 自動削除(2013.03.13)
- Proxy自動設定 pacファイル(2012.08.15)
The comments to this entry are closed.
Comments