windows - naming IP scan results with unique file name -
i found ip scanner can run in batch file , saves results of scan csv file. need naming file. goal have ssid (currently connected to), date, , time part of file name. hyphens/dashes fine, prefer no spaces in file name.
the command below works fine , saves results same file every time, overwriting previous scan results.
wnetwatcher.exe /scomma scan-results.csv
thank help.
a basic framework how craft filename batch files -- you'll need magic ensure filename results. i'd recommend investigating text replacement feature of set
command.
@echo off set wnw_curdat=%date% wnetwatcher.exe /scomma "scan-results-%wnw_curdat%.csv"
good luck, , holler if stuck.
Comments
Post a Comment