Если вы наберете:
Echo Net Accounts > C:\Users\PeKa\Documents\Document.HTML
Вы создадите файл с именем «document.HTML» в патче «C: \ Users \ PeKa \ Documents \», содержимое которого будет выглядеть следующим образом::
Чистые счета
Причина этого заключается в том, что echo используется для отображения сообщений.Я предполагаю, что вам действительно нужно направить net account результаты в файл .html, а также для net group , которая, кстати, может использоваться только наКонтроллер домена Windows.
Чтобы ваш код работал, просто устраните эхо.Вот и все.Вот с комментариями:
@echo off
rem Everytime you see a line that starts with REM or ::, it is a comment and won't be executed.
rem echo off will only type on the screen the relevant information, without the need to call the patch each time.
rem This will pipe the result of Net Accounts and Net Group execution to a file.
rem The use of > instead of >> will rewrite the whole document, if it exists.
Net Accounts > C:\Users\PeKa\Documents\Document.HTML
Net Group >> C:\Users\PeKa\Documents\Document.HTML
rem A pause just before your script ends will allow you to review any in screen message before it closes.
rem However, if an error takes place, the pause command will not avoid the script to close.
pause
Тот же сценарий, без комментариев:
@echo off
Net Accounts > C:\Users\PeKa\Documents\Document.HTML
Net Group >> C:\Users\PeKa\Documents\Document.HTML
pause