如果我在Powershell中键入“资源管理器”,则会打开“此PC”。如何使用命令行或Powershell脚本关闭“此PC”?
答案 0 :(得分:1)
通过没有起始位置的PowerShell启动'explorer.exe',您要完成什么工作?
您正在运行什么操作系统?在Win10上,这将在“快速访问”处打开。
您可以使用PowerShell将资源管理器打开到使用
选择的任何目录Invoke-Item -path SomeQuaifiedPath
# or
ii SomeQualifiedPath
您可以获取给定进程的主窗口名称以及它的ID,并使用Stop-Process cmdlet通过任一属性将其停止。
Get-Process |
Where-Object -FilterScript {
$PSItem.MainWindowHandle -ne 0
} |
Select-Object -Property Name, Description, MainWindowTitle, Company, ID |
Out-GridView -Title 'Choose Application to Kill' -PassThru |
Stop-Process -Force -Confirm:$true
答案 1 :(得分:0)
这对我有用
this._searchValue = ''