Posts by UnanTec • 146 points
2 posts
-
2
votes1
answer839
viewsA: Windows Ping should return only the package response values
I executed your command on cmd and I switched the find for findstr as below. for /f "tokens=* delims= " %i in ('ping -n 4 172.16.7.144 ^| findstr /i "pacotes"') do set "tempo=%i" The result that…
-
11
votes5
answers22737
viewsQ: How to turn the output of a command into a variable in CMD?
Hello, since I started researching about these commands of CMD, this doubt about how to turn the output of a command into a variable has been the one that took me the most time. I saw a lot of codes…