我只需要输出所有用户配置文件及其名称,而不需要第一列“所有用户配置文件” 示例:
All User Profile : WifiName
Output:
WifiName
我正在使用:
for /f %%a in ('netsh wlan show profile | find /i "all user profile"') do set "%%~a"
echo %a% > C:\test.txt
答案 0 :(得分:3)
@echo off
for /f "tokens=2 skip=1 delims=:" %%a in ('netsh wlan show profile') do echo %%a >> .\test.txt