首页 > 代码库 > 显示、隐藏 PowerShell
显示、隐藏 PowerShell
以下是一个快速实现该需求的 module。只要将以下代码复制粘贴到 Documents\WindowsPowerShell\Packages\PowerShell\PowerShell.psm1 即可。
$script:showWindowAsync = Add-Type –memberDefinition @"[DllImport("user32.dll")]public static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow);"@ -name "Win32ShowWindowAsync" -namespace Win32Functions –passThrufunction Show-PowerShell() {$null = $showWindowAsync::ShowWindowAsync((Get-Process –id $pid).MainWindowHandle, 10)}function Hide-PowerShell() {$null = $showWindowAsync::ShowWindowAsync((Get-Process –id $pid).MainWindowHandle, 2)}
现在,您可以用这段代码来显示或隐藏 PowerShell:
Add-Module PowerShell# Minimize PowerShellHide-PowerShellsleep 2# Then Restore itShow-PowerShell
from:http://blog.vichamp.com/powershell/2014/06/23/show-powershell-hide-powershell/
http://technet.microsoft.com/zh-cn/magazine/ms633548.aspx
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。