gpt4 book ai didi

powershell - 如何为 Internet Explorer 创建 URL 快捷方式

转载 作者:行者123 更新时间:2023-12-04 17:21:34 24 4
gpt4 key购买 nike

我有一个 PowerShell 脚本,可以在 Internet Explorer 中打开某个链接。到目前为止,我有以下代码。它会打开链接,但当我特别需要它在 Internet Explorer 中打开时,它会发送到我的默认浏览器。

$Shell = New-Object -ComObject ("WScript.Shell")
$ShortCut = $Shell.CreateShortcut($env:USERPROFILE + "\Desktop\TMW.lnk")
$ShortCut.TargetPath="http://tmw1.casttrans.com/rdweb"
$ShortCut.WorkingDirectory = "C:\Program Files (x86)\Internet Explorer";
$ShortCut.WindowStyle = 1;
$ShortCut.IconLocation = "iexplore.exe, 0";

$ShortCut.Save()

最佳答案

URL 快捷方式使用默认浏览器打开。要使用特定浏览器打开,您需要调用该应用程序并将其传递给网页。特别是iexplore.exe打开传入第一个参数的网页。

$Shell = New-Object -ComObject ("WScript.Shell")
$ShortCut = $Shell.CreateShortcut($env:USERPROFILE + "\Desktop\TMW.lnk")
$ShortCut.TargetPath = "C:\Program Files (x86)\Internet Explorer\iexplore.exe"
$ShortCut.Arguments = "http://tmw1.casttrans.com/rdweb"
$ShortCut.WorkingDirectory = "C:\Program Files (x86)\Internet Explorer"
$ShortCut.WindowStyle = 1
$ShortCut.IconLocation = "iexplore.exe, 0"

$ShortCut.Save()

关于powershell - 如何为 Internet Explorer 创建 URL 快捷方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46004906/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com