以变​​量显示所有用户配置文件

时间:2018-07-05 12:27:15

标签: cmd

我只需要输出所有用户配置文件及其名称,而不需要第一列“所有用户配置文件” 示例:

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

1 个答案:

答案 0 :(得分:3)

@echo off

for /f "tokens=2 skip=1 delims=:" %%a in ('netsh wlan show profile') do echo %%a >> .\test.txt