码迷,mamicode.com
首页 > 其他好文 > 详细

显示、隐藏 PowerShell

时间:2014-07-01 16:22:22      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:blog   http   2014   os   cti   代码   

以下是一个快速实现该需求的 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 passThru

function 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 PowerShell
Hide-PowerShell
sleep 2
# Then Restore it
Show-PowerShell

from:http://blog.vichamp.com/powershell/2014/06/23/show-powershell-hide-powershell/

    http://technet.microsoft.com/zh-cn/magazine/ms633548.aspx

 

显示、隐藏 PowerShell,布布扣,bubuko.com

显示、隐藏 PowerShell

标签:blog   http   2014   os   cti   代码   

原文地址:http://www.cnblogs.com/dreamer-fish/p/3817912.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!