我试着看一些东西,但我无法找到我想要的东西。
我想有一个代码可以做到这一点:
所以它看起来像这样:
GetSysteminfo.bat
Scan domain for every pc >> PcNames.txt
For %%EveryPC IN (PcNames.txt) Do (
Commands (i will post them if neccesary)
)
输出文件如下所示: PcInfo.txt
PC01
information
PC02
information
PC03
information
etc.
我希望你明白我想要的东西。 提前感谢您试图帮助我。
答案 0 :(得分:1)
您需要工具netdom
(https://technet.microsoft.com/en-us/library/cc772217.aspx)和域名管理凭据。
然后你可能
for /f "tokens=*" %%a in ('netdom query WORKSTATION') do (
echo %%a >>results.txt
yourcommand %%a >>results.txt
echo. >>results.txt
)