简体   繁体   中英

Batch Script that saves log files

I am currently using a program called USBDeviewer for auditing purposes. Basically what it does is it gets a list of USB devices that were used on a particular PC. The program can create a log file but you have to do it manually. The keyboard command to save a log file is ctrl + A to select all devices and then ctrl + S to save. After you select save you are prompted to enter a filename and location to save it.

I need a batch script that will automatically run this program and save the information on the log file to a folder automatically without any human intervention such as typing in the name (it needs a different name every time, perhaps the filename can include a different date every time).

This is a simple script but I am not familiar with batch scripting so any help would be appreciated.

Save Command-Line Options for usbdeview.exe

/stext Filename : Save the list of all USB devices into a regular text file.

@echo off
set Log=c:\temp\logfile.txt
usbdeview.exe /stext %Log%

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM