将项目添加到固定快捷方式跳转列表

时间:2015-05-13 19:00:40

标签: powershell batch-file command-line vbscript jump-list

我正在寻找this script的扩展程序(或者可能是另一个......不是100%确定我在哪里使用的脚本):

'* File:           PinItem.vbs
'* Date:           03/04/2009
'* Version:        1.0.2
'* Main Function:  VBScipt to pin an item to the Start Menu or Taskbar
'* Usage:  cscript PinItem.vbs /item:<path to exe> [/taskbar] [/?]

例如,我可以使用以下命令将记事本固定到我的任务栏:

cscript "PinItem.vbs" /taskbar /item:"%windir%\system32\notepad.exe"

此脚本将项目固定到任务栏。

当程序在任务栏上时,您可以使用“最近的项目”将内容固定到跳转列表 - 或者您可以将文件拖放到任务栏以将它们固定到跳转列表。在这里,我有最近的项目和跳转列表上的固定项目:

enter image description here

(如何)我可以将项目添加(和/或固定)到任务栏上项目的跳转列表中吗?假设我想添加一个固定链接到C:\logs\mylog.txt,以便它在跳转列表中?以编程方式完成的事情:

cscript "AddToJumplist.vbs" "%windir%\system32\notepad.exe" "C:\logs\mylog.txt"

(我特别不是在寻找vbs,powershell,批处理等等......我想知道是否可以将mylog.txt之类的内容写入notepad.exe任务栏项目跳转列表)

0 个答案:

没有答案