コンテキストメニューからオンデマンドスキャンタスクの開始を有効にする
Microsoft Windows エクスプローラーのコンテキストメニューから、1 つまたは複数のファイルのオンデマンドスキャンタスクの開始を有効にできます。
コンテキストメニューからオンデマンドスキャンタスクの開始を有効にするには:
- REG ファイルを次のように作成します:
Windows Registry Editor Version 5.0.0
[HKEY_CLASSES_ROOT\Directory\shell\ksws\command]
@="C:\\Temp\\scan.cmd \"%1\""
[HKEY_CLASSES_ROOT\*\shell\ksws\command]
@="C:\\Temp\\scan.cmd \"%1\""
[HKEY_CLASSES_ROOT\Directory\shell\ksws]
@="Scan with Kaspersky Security for Windows Server\"
"Icon"="\"C:\\Program Files (x86)\\Kaspersky Lab\\Kaspersky Security for Windows Server\\kavtrayr.dll\",0"
[HKEY_CLASSES_ROOT\Directory\shell\ksws\DefaultIcon]
@="\"C:\\Program Files (x86)\\Kaspersky Lab\\Kaspersky Security for Windows Server\\kavtrayr.dll\",0"
[HKEY_CLASSES_ROOT\*\shell\ksws]
@="Scan with Kaspersky Security for Windows Server\"
"Icon"="\"C:\\Program Files (x86)\\Kaspersky Lab\\Kaspersky Security for Windows Server\\kavtrayr.dll\",0"
[HKEY_CLASSES_ROOT\*\shell\ksws\DefaultIcon]
@="\"C:\\Program Files (x86)\\Kaspersky Lab\\Kaspersky Security for Windows Server\\kavtrayr.dll\",0"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers]
"C:\\Program Files (x86)\\Kaspersky Lab\\Kaspersky Security for Windows Server\\kavshell.exe"="~ RUNASADMIN"
Kaspersky Security for Windows Server インストールフォルダーの実際の場所を指定する必要があります。
scan.cmd
ファイルを次の内容で作成します:@echo off
set LOGNAME=%RANDOM%
"C:\Program Files (x86)\Kaspersky Lab\Kaspersky Security for Windows Server\kavshell.exe" scan "%~1" /W:c:\temp\%LOGNAME%.txt
echo Scanning is in progress...
type c:\temp\%LOGNAME%.txt
del c:\temp\%LOGNAME%.txt
timeout /t -1
scan.cmd
ファイルには、次の情報を含める必要があります:kavshell.exe
ファイルの場所。- スキャン結果を含む一時ファイルの場所。
KAVSHELL SCAN
コマンドのパラメータ。- タスクが完了した時にコンソールウィンドウを閉じるためのタイムアウト値。
scan.cmd
ファイルを、REG ファイル[HKEY_CLASSES_ROOT\Directory\shell\ksws\
で指定されたフォルダーにコピーします。command
]例では、
C:\Temp
フォルダーを使用しています。
オペレーティングシステムを再起動する必要はありません。