ไม่มันไม่รองรับใน Windows 10 แม้จะไม่ใช่ใน winver 1703
ฉันสลับไปที่แถบเครื่องมือแทนการตรึงรายการไว้ที่แถบงาน
- คลิกขวาที่ทาสก์บาร์
- เลือกแถบเครื่องมือ
- เลือกโฟลเดอร์
ในแถบเครื่องมือคุณสามารถลาก & วาง ShortCuts ได้ง่าย ๆ ตามที่คุณต้องการ เพิ่มเติมคุณสามารถสลับระหว่างสาขาต่าง ๆ ได้ง่ายโดยสร้างทางลัดด้วยสคริปต์:
ตั้ง shortcut.ps1:
<#
.SYNOPSIS
create-shortcut
.DESCRIPTION
creates a shortcut to a file
.NOTES
File Name : set-shortcut.ps1
Author : http://stackoverflow.com/a/9701907
Prerequisite : PowerShell V2
.LINK
http://stackoverflow.com/a/9701907
.EXAMPLE
set-shortCut "$SourceCodeBasePath\SpecialPath\YourSolution.sln" "$ShortCutDestination\InternalReferences.sln.lnk"
.EXAMPLE
set-shortCut "$SourceCodeBasePath\OtherPath\Setup.sln" "$ShortCutDestination\Setup.sln.lnk"
#>
function set-shortcut
( [string]$SourceExe, [string]$DestinationPath )
{
$WshShell = New-Object -comObject WScript.Shell
$Shortcut = $WshShell.CreateShortcut($DestinationPath)
$Shortcut.TargetPath = $SourceExe
$Shortcut.Save()
}
การใช้งานใน CreateShortCuts.ps1:
#include Commands
. "$PSScriptRoot\set-shortcut.ps1"
. "$PSScriptRoot\set-shortcut-extended.ps1"
$ShortCutDestination = "C:\Toolbars\MyNewToolbarFolder"
$SourceCodeBasePath = "G:\x\Main2017"
#Create Shortcuts for Toolbar
set-shortCut "$SourceCodeBasePath\SomeSpecialPath\YourSolution.sln" "$ShortCutDestination\0.1YourSolution.sln.lnk"
set-shortCut "$SourceCodeBasePath\OtherSpecialPath\NextSolution.sln" "$ShortCutDestination\0.2NextSolution.sln.lnk"
...
หลังจากนี้คุณสามารถลากและวางไฟล์โฟลเดอร์และทางลัดใน Toolbar ของคุณและคุณจะเห็นไอคอนที่เกี่ยวข้อง:
นอกจากนี้คุณสามารถจัดเรียงไอคอนใหม่ด้วยการลากและวาง