微信搜一搜关注公众号

Microsoft Edge浏览器批处理设置主页

DNPU2026-02-25

Microsoft Edge浏览器批处理设置主页的方法,创建脚本免去手动设置,适合快速装机设置。

powshell

$regPath = "HKCU:\Software\Microsoft\Edge\BLBeacon\settings"
$homePageKey = "HomePage"
$homePageValue = "https://dnpu.com"
if (-not (Test-Path $regPath)) {
    New-Item -Path $regPath -Force | Out-Null
}
Set-ItemProperty -Path $regPath -Name $homePageKey -Value $homePageValue

批处理

@echo off
reg add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /f /v "HomepageLocation" /t REG_SZ /d "https://dnpu.com"
reg add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /f /v "OpenHomepageOnStart" /t REG_DWORD /d 1
exit

注册表

Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge]
"HomepageLocation"="https://dnpu.com"
"OpenHomepageOnStart"=dword:00000001

本文链接:https://dnpu.com/777.html

edge浏览器

网友评论

  • 点击刷新验证码