Last active
November 3, 2021 23:33
-
-
Save wpsmith/ad50f8e7c2c63296587af8d5d40c0233 to your computer and use it in GitHub Desktop.
Revisions
-
wpsmith revised this gist
Nov 3, 2021 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,6 @@ #!/bin/sh defaults write com.google.Chrome BrowserGuestModeEnabled -bool false defaults write com.google.chrome IncognitoModeAvailability -integer 1 defaults write com.google.Chrome BrowserAddPersonEnabled -bool false defaults write com.google.chrome AllowDeletetingBrowserHistory -bool false -
wpsmith revised this gist
Sep 18, 2020 . 1 changed file with 4 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,8 @@ $registryPath = "HKLM:\SOFTWARE\Policies\Google\Chrome" IF(!(Test-Path $registryPath)) { New-Item -Path $registryPath -Confirm:$false -Force | Out-Null } New-ItemProperty -Name BrowserGuestModeEnabled -Path $registryPath -Confirm:$false -Force -Value 0 -PropertyType DWORD New-ItemProperty -Name IncognitoModeAvailability -Path $registryPath -Confirm:$false -Force -Value 1 -PropertyType DWORD -
wpsmith renamed this gist
Sep 18, 2020 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
wpsmith created this gist
Sep 18, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ #!/bin/sh defaults write com.google.Chrome BrowserGuestModeEnabled -bool false defaults write com.google.chrome IncognitoModeAvailability -integer 1 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome BrowserGuestModeEnabled: 0 HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome IncognitoModeAvailability: 1 Binary file not shown.