我在上传之前使用 SEP 的 Doscan.exe 扫描文件,但 SEP 没有提供为每个扫描文件生成单独的日志文件的规定,这就是为什么我无法确定文件是否正常的原因上传。
如果有人有办法检查这件事,请告诉我。
我正在使用版本 14.2
谢谢。
ProcessStartInfo start = new ProcessStartInfo();
start.Arguments = " /ScanFile C:\\Users\\New Text Document (2).txt";
start.FileName = @"C:\Program Files (x86)\Symantec\Symantec Endpoint Protection\14.2.3332.1000.105\Bin\DoScan.exe";
start.WindowStyle = ProcessWindowStyle.Hidden;
start.CreateNoWindow = true;
using (Process proc = Process.Start(start))
{
proc.WaitForExit();
}