hi i need to use netstat and send the results to a text file for a my ip to find an issue ,can anyone help please i am using windows 10 os
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
enter: netstat (options) > filename.txt
filename.txt is in the current directory
eg: c:\users\yourusername > netstat -a > netstat.txt
“>” will write the output in the named file. The existing content is overwriten.
“>>” will append the output to the named file.