本帖最后由 BLUE7777777 于 2023-5-23 16:16 编辑
https://www.52pojie.cn/forum.php?mod=redirect&goto=findpost&ptid=1788583&pid=46787593
有人提出了高阶压缩套娃法,我也压缩成一行。
[PowerShell] 纯文本查看 复制代码 foreach ($item in (netsh wlan show profile|where{ $_ -match "文件"})){netsh wlan show profile name=($item -replace " 所有用户配置文件 : ","") key=clear|where{ $_ -match " 名称|关键内容"}}
初始代码:
[PowerShell] 纯文本查看 复制代码
$WiFiProfiles=netsh wlan show profile|where{ $_ -match "文件"}
for($i=0;$i -lt $WiFiProfiles.Count;$i++)
{netsh wlan show profile name=($WiFiProfiles[$i] -replace " 所有用户配置文件 : ","") key=clear|where{ $_ -match " 名称|关键内容"}}
测试结果:
一行版
三行版
|