i have a csv file with following output iexplorer.exe 3620 TCP 7059 192.168.1.2 192.168.1.10
svhost.exe 3562 UDP 1526 159.62.2.5 55.12.26.21I WAT TO CHANGE THE OUTPUT TO
PROCESSNAME PROCID PROTOCOL PORT LOCALIP REMOTEIP
iexplorer.exe 3620 TCP 7059 192.168.1.2 192.168.1.10
svhost.exe 3562 UDP 1526 159.62.2.5 55.12.26.21How can i do the above through batch script.... i.e i want to insert heading to the following fields..
any suggestions in this regard is greatly appreciated..
thanks in advance
@echo off & setLocal EnableDELAYedeXpansion > new.csv echo.PROCESSNAME PROCID PROTOCOL PORT LOCALIP REMOTEIP
>> new.csv type my.csv
=====================================
Helping others achieve escape felicityM2
thank u very much....... it runs successfully!!!!!!!!!!!!!!!
Yes (14) | ![]() | |
No (14) | ![]() | |
I don't know (15) | ![]() |