Hayır, Windows 10'da desteklenmemektedir. Winver 1703'te bile değil.
Öğeleri Görev Çubuğuna sabitlemek yerine Araç Çubukları'na geçtim .
- Görev çubuğuna sağ tıklayın
- Araç Çubukları Seç
- Dosya Seç
Araç Çubuklarında istediğiniz kadar kolay Kısayollar Sürükle ve Bırak yapabilirsiniz. Ek olarak, komut dosyasıyla kısayollar oluşturarak farklı dallar arasında kolayca geçiş yapabilirsiniz:
set 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 içinde kullanım:
#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"
...
Bundan sonra, Araç Çubuğunuzdaki Dosyaları, Klasörleri ve Kısayolları Sürükleyip Bırakabilirsiniz ve ayrıca ilişkili Simgeleri göreceksiniz:
Ayrıca, simgeleri sürükle ve bırak yöntemiyle yeniden düzenleyebilirsiniz.