gpt4 book ai didi

powershell - 从 Windows Server 2008 上的脚本打开 url

转载 作者:行者123 更新时间:2023-12-04 13:07:36 25 4
gpt4 key购买 nike

我想编写一个自动加载 url(例如 http://google.com )的脚本。但我不想在服务器上安装任何 3rd 方库或程序。最简单的方法是什么?

我只是我的选项是批处理脚本、vb 脚本或 powershell,对吗?

最佳答案

来自 PowerShell 的仅供引用,如果您想检索 URL 的内容,您可以这样做;

$page = (new-object net.webclient).DownloadString("http://www.bing.com")
$page # writes the contents to the console

如果您只想在浏览器中打开它:
Start-Process http://www.bing.com

或者使用开始别名
start http://www.bing.com

Start-Process 是 PowerShell 2.0 中的新增功能。

关于powershell - 从 Windows Server 2008 上的脚本打开 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3947142/

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