如何使用PowerShell固定到任务栏

时间:2012-03-16 15:09:20

标签: powershell windows-7 taskbar

如何使用在Windows 7上将某些程序固定到任务栏 电源外壳?请逐步解释。

如何修改以下代码以固定文件夹 任务栏?例如

$folder = $shell.Namespace('D:\Work') 

在此路径中,example命名了文件夹。

3 个答案:

答案 0 :(得分:21)

您可以使用Shell.Application COM对象调用Verb(Pin to Taskbar)。这是一些示例代码:

http://gallery.technet.microsoft.com/scriptcenter/b66434f1-4b3f-4a94-8dc3-e406eb30b750

这个例子有些复杂。这是一个简化版本:

$shell = new-object -com "Shell.Application"  
$folder = $shell.Namespace('C:\Windows')    
$item = $folder.Parsename('notepad.exe')
$verb = $item.Verbs() | ? {$_.Name -eq 'Pin to Tas&kbar'}
if ($verb) {$verb.DoIt()}

答案 1 :(得分:17)

另一种方式

$sa = new-object -c shell.application
$pn = $sa.namespace($env:windir).parsename('notepad.exe')
$pn.invokeverb('taskbarpin')

或取消固定

$pn.invokeverb('taskbarunpin')

注意:notepad.exe可能不在%windir%下,它可能存在于服务器操作系统的%windir%\system32下。

答案 2 :(得分:8)

由于我需要通过PowerShell执行此操作,因此我使用了其他人提供的方法。这是我的实现,最后我添加到PowerShell模块:


function Get-ComFolderItem() {
    [CMDLetBinding()]
    param(
        [Parameter(Mandatory=$true)] $Path
    )

    $ShellApp = New-Object -ComObject 'Shell.Application'

    $Item = Get-Item $Path -ErrorAction Stop

    if ($Item -is [System.IO.FileInfo]) {
        $ComFolderItem = $ShellApp.Namespace($Item.Directory.FullName).ParseName($Item.Name)
    } elseif ($Item -is [System.IO.DirectoryInfo]) {
        $ComFolderItem = $ShellApp.Namespace($Item.Parent.FullName).ParseName($Item.Name)
    } else {
        throw "Path is not a file nor a directory"
    }

    return $ComFolderItem
}

function Install-TaskBarPinnedItem() {
    [CMDLetBinding()]
    param(
        [Parameter(Mandatory=$true)] [System.IO.FileInfo] $Item
    )

    $Pinned = Get-ComFolderItem -Path $Item

    $Pinned.invokeverb('taskbarpin')
}

function Uninstall-TaskBarPinnedItem() {
    [CMDLetBinding()]
    param(
        [Parameter(Mandatory=$true)] [System.IO.FileInfo] $Item
    )

    $Pinned = Get-ComFolderItem -Path $Item

    $Pinned.invokeverb('taskbarunpin')
}

供应脚本的示例用法:


# The order results in a left to right ordering
$PinnedItems = @(
    'C:\Program Files\Oracle\VirtualBox\VirtualBox.exe'
    'C:\Program Files (x86)\Mozilla Firefox\firefox.exe'
)

# Removing each item and adding it again results in an idempotent ordering
# of the items. If order doesn't matter, there is no need to uninstall the
# item first.
foreach($Item in $PinnedItems) {
    Uninstall-TaskBarPinnedItem -Item $Item
    Install-TaskBarPinnedItem   -Item $Item
}