在Windows 10中使用Powershell取消固定任务栏项

时间:2019-04-25 06:54:38

标签: powershell taskbar

我尝试使用Powershell从任务栏中取消Internet Explorer的锁定。

Taskbar.reg是注册表中没有IE的Taskband文件夹。 执行完图标后,图标仍然存在并且可以使用,但是右键单击时,我可以选择将其固定到任务栏,而不是取消固定

let tapGesture = UITapGestureRecognizer(target: self, action: #selector(attachImage))
    let longGesture = UILongPressGestureRecognizer(target: self, action: #selector(longPress))
    tapGesture.numberOfTapsRequired = 1
    cell.image.addGestureRecognizer(tapGesture)
    cell.image.addGestureRecognizer(longGesture)

@objc func longPress(_ btn : UIButton) {
        selectedImageIndex = btn.tag
    }
@objc func attachImage(_ btn : UIButton) {
        selectedImageIndex = btn.tag
    }

1 个答案:

答案 0 :(得分:0)

要在PowerShell中执行此操作而不使用注册机,将使用以下命令:Pin and unpin applications from the taskbar and Start-menu

下载后将其保存到同一目录并使用,例如:

Import-Module './downloaded_script.ps1'

 Set-PinnedApplication -Action UnPinFromTaskbar -FilePath "C:\WINDOWS\system32\notepad.exe"