使用 Powershell 的网站快捷方式
Website shortcut with Powershell
大家好,
我的目标是我可以 运行 一个 Powershell 脚本,然后创建一个当前打开的网站的快捷方式。我知道从路径或文档创建快捷方式没有问题,但现在我必须从网站上创建快捷方式。
首先,这可能吗?如果是,我需要添加一个插件还是只能与 Powershell 一起使用?
我在互联网上找不到任何有用的东西。我对 Powershell 不是很熟练,所以我不确定这是否可行。
我很感激任何提示。
你好。
你好
我不知道如何在 powershell 中执行此操作,但还有另一种名为 AutoIt 的编程语言。它专为自动化而设计,就像这样。只需从 AutoIt 页面下载即可。
这是对我有用的代码。如果您需要将它导入到您的 powershell 脚本中,只需将 AutoIt 代码编译成 .exe,运行 使用 powershell 并从 .txt 文件中读取输出。
Syntax:
#include <IE.au3>
$oIE = _IEAttach("*TITLE OF THE PAGE*")
$url = _IEPropertyGet($oIE, "locationurl")
Example:
#include <IE.au3>
#include <MsgBoxConstants.au3>
$oIE = _IEAttach("Google")
$url = _IEPropertyGet($oIE, "locationurl")
MsgBox(0,$url,$url)
据我所知,它只适用于 IE。很抱歉没有适用于 Powershell 的解决方案。
大家好,
我的目标是我可以 运行 一个 Powershell 脚本,然后创建一个当前打开的网站的快捷方式。我知道从路径或文档创建快捷方式没有问题,但现在我必须从网站上创建快捷方式。 首先,这可能吗?如果是,我需要添加一个插件还是只能与 Powershell 一起使用?
我在互联网上找不到任何有用的东西。我对 Powershell 不是很熟练,所以我不确定这是否可行。
我很感激任何提示。
你好。
你好
我不知道如何在 powershell 中执行此操作,但还有另一种名为 AutoIt 的编程语言。它专为自动化而设计,就像这样。只需从 AutoIt 页面下载即可。
这是对我有用的代码。如果您需要将它导入到您的 powershell 脚本中,只需将 AutoIt 代码编译成 .exe,运行 使用 powershell 并从 .txt 文件中读取输出。
Syntax:
#include <IE.au3>
$oIE = _IEAttach("*TITLE OF THE PAGE*")
$url = _IEPropertyGet($oIE, "locationurl")
Example:
#include <IE.au3>
#include <MsgBoxConstants.au3>
$oIE = _IEAttach("Google")
$url = _IEPropertyGet($oIE, "locationurl")
MsgBox(0,$url,$url)
据我所知,它只适用于 IE。很抱歉没有适用于 Powershell 的解决方案。