powershell PowerShell:在“发送到”文件夹中创建“发送到”快捷方式。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell PowerShell:在“发送到”文件夹中创建“发送到”快捷方式。相关的知识,希望对你有一定的参考价值。

$sendToPath = "$env:USERPROFILE\AppData\Roaming\Microsoft\Windows\SendTo"
$shortcutPath = "$sendToPath\SendTo.lnk"
try {
	$WshShell = New-Object -ComObject WScript.Shell
	$Shortcut = $WshShell.CreateShortcut($shortcutPath)
	$Shortcut.TargetPath = "$($sendToPath)"
	$Shortcut.Description = "Send shortcut to this folder"
	$Shortcut.Save()
	"Shortcut created successfully"
	return
} catch {
	"Failed to create shortcut"
	return
} finally {
	# Cleanup
	Remove-Variable sendToPath -ErrorAction SilentlyContinue
	Remove-Variable shortcutPath -ErrorAction SilentlyContinue
	Remove-Variable Shortcut -ErrorAction SilentlyContinue
	Remove-Variable WshShell -ErrorAction SilentlyContinue
}

以上是关于powershell PowerShell:在“发送到”文件夹中创建“发送到”快捷方式。的主要内容,如果未能解决你的问题,请参考以下文章

什么是 PowerShell?

什么是 PowerShell?

PowerShell 学习笔记——对象

veil-catapult

PowerShell 历史发展版本及路线图

PowerShell 历史发展版本及路线图