我想在脚本中创建一个无窗口的快捷方式

我想在脚本中创建一个无窗口的快捷方式

我的 Win-10 电脑上有几个快捷方式。它们都运行正常,但它们会显示此窗口一秒钟左右。我已将它们全部编辑为窗口样式 7,但问题仍然存在。

我应该做哪些更改才能让每个窗口都显示为隐形窗口?谢谢

$Links = GCI "D:\*.lnk" -EA:0
foreach ($Link in $Links) {
        # Display the current shortcut's full path
    Write-Output $Link.FullName
        # Edit the shortcut
    $WshShell = New-Object -ComObject WScript.Shell
    $Shortcut = $WshShell.CreateShortcut($Link.FullName)
    # Set target path and working directory
    $Shortcut.WindowStyle = 7
        # Save changes
    $Shortcut.Save()
}

相关内容