为什么我无法更改“启动时” Chrome 选项?

为什么我无法更改“启动时” Chrome 选项?

当我转到chrome://settings/下面的选项时On startup,它们被禁用,例如只读选项。我该如何更改这些选项?

答案1

只需删除此 Windows 注册表项下的所有内容即可HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome

笔记:regedit.exe您可以在 Windows 开始框(搜索程序和文件)中输入注册表编辑器来运行

答案2

另一种方法是使用 regedit.exe 并转到该\HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome键。

在里面,RestoreOnStartup改为1

答案3

  1. 从 PowerShell:
notepad $PROFILE.CurrentUserAllHosts
  1. 如果记事本提示您创建新文件,请选择“是”。
  2. 将以下内容添加到文件并保存。调整价值以满足您的偏好。
function Fix-Chrome {
    try {
        # This may be superfluous
        del HKCU:\Software\Policies\Google\Chrome\Recommended\ -Recurse -ErrorAction Stop
    } catch [System.Management.Automation.ItemNotFoundException] {}
    Set-ItemProperty HKCU:\Software\Policies\Google\Chrome HomepageIsNewTabPage 1
    Set-ItemProperty HKCU:\Software\Policies\Google\Chrome ShowHomeButton 0
    Set-ItemProperty HKCU:\Software\Policies\Google\Chrome RestoreOnStartup 1 # Restore the last session
}
  1. 在需要时,在提升的 PS 提示符下运行以下命令,然后重新启动 Chrome:
Fix-Chrome

答案4

您的 Chrome 企业版管理员出于效率或安全原因设置并锁定了这些设置。您可以在 chrome://policy/ 查看管理员的政策

相关内容