Como faço para exportar reserva de DCHP de forma legível?
Você pode usar a opção dump
de netsh
para "exportar" os dados como texto simples.
Use o seguinte comando
netsh dhcp server \ServerName dump all > c:.txt
Nota:
The
\ServerName
parameter is optional and can be left unspecified if you are performing commands locally at the DHCP server. If the server being managed is remote, this parameter is required, and the name of the server must be specified.
Fonte Use os comandos DHCP de forma interativa no prompt de comando
Crie uma exportação DHCP legível
Now this works almost the same as an export, but the format is different (ASCII), so it can be read, but you cannot use this for import.
The command is slightly different and is now:
netsh dhcp server \ServerName dump all > d:\backup_DHCP_servernamedump.txt
Opening this file in notepad for example will show a plain text scope of the export.