返回列表 发帖
回复 1# ngd

taskkill /fi "WINDOWTITLE eq 管理员:  BBB"
#&cls&@powershell "Invoke-Expression ([Io.File]::ReadAllText('%~0',[Text.Encoding]::UTF8))" &pause&exit

TOP

回复 5# ngd

使用这个工具检测标题文字,复制过来,看看是不是少空格什么
   
Microsoft Spy++
#&cls&@powershell "Invoke-Expression ([Io.File]::ReadAllText('%~0',[Text.Encoding]::UTF8))" &pause&exit

TOP

本帖最后由 ivor 于 2016-3-9 21:57 编辑

回复 9# ngd
powershell -c "&{Get-Process | ? {$_.MainWindowTitle -like '*bbb'}}"COPY
结束进程版:
powershell -c "&{Get-Process | ? {$_.MainWindowTitle -like '*bbb'} | Stop-Process}"COPY
#&cls&@powershell "Invoke-Expression ([Io.File]::ReadAllText('%~0',[Text.Encoding]::UTF8))" &pause&exit

TOP

返回列表