Софт и сайты для создания схем компьютерных сетей

Я и не подозревал, что есть такой продвинутый софт, который умеет прямо со схемы пинг, телнет и т.п.

www.kilievich.com/rus/
https://www.10-strike.com/rus/network-diagram/
https://www.networknotepad.com/index.shtml
www.edrawsoft.com/Network-Diagrams.php
https://dia-installer.de/index.html.en

Полезные сайты для онлайн диаграмм и т.п.:
https://www.draw.io
https://www.gliffy.com

Полезные команды CMD Windows + контекст .BAT файлов

Узнать модель материнской платы из cmd:

wmic baseboard get product,Manufacturer,version,serialnumber

https://x-flame.ru/kak-uznat-model-materinskoj-platy-cherez-cmd/

Узнать подробности видимых WiFi сетей:

netsh wlan show networks mode=bssid

Запустить программу из .bat файла с параметрами:<

start "" "c:\program files\Microsoft Virtual PC\Virtual PC.exe" -pc MY-PC -launch
In other words, give it an empty title before the name of the program to fake it out.

https://stackoverflow.com/questions/154075/using-the-start-command-with-parameters-passed-to-the-started-program

Save output to file:

command.name > fileName.txt

Remove text from file:

findstr /v /i /L /c:"Mabrur" text.txt >out.txt

/v means “lines that do not contain
/i means “case-insensitive”.
*all lines containing the /L literal string Mabrur, whether it is as product or some other column, or is part of a longer string will be excluded.

https://stackoverflow.com/questions/49569889/how-to-delete-some-line-from-txt-file-using-batch