当我转到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
- 从 PowerShell:
notepad $PROFILE.CurrentUserAllHosts
- 如果记事本提示您创建新文件,请选择“是”。
- 将以下内容添加到文件并保存。调整价值以满足您的偏好。
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
}
- 在需要时,在提升的 PS 提示符下运行以下命令,然后重新启动 Chrome:
Fix-Chrome
答案4
您的 Chrome 企业版管理员出于效率或安全原因设置并锁定了这些设置。您可以在 chrome://policy/ 查看管理员的政策