Win10 22H2通过IE打开指定网址

$Url = "https://www.bing.com" 
 
$IE = New-Object -com internetexplorer.application;
$IE.visible = $true;
$IE.navigate($url)

  

posted @ 2025-08-06 15:16  tec2019  阅读(8)  评论(0)    收藏  举报