Last active
July 9, 2019 18:55
-
-
Save Ethanb00/7cc4ba6200cdfdbcae53136a4c89663d to your computer and use it in GitHub Desktop.
For PC only. Open Chrome. Open Powershell. Copy and Paste, Run. Does NOT need to run as admin.
This file contains 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 characters
get-process -name Chrome | stop-process; $badstring1 = '"zoommtg":false'; $badstring2 = "zoomrc:false"; cd $env:userprofile"\AppData\Local\Google\Chrome\User Data\Default"; Set-Content -Path .\Preferences -Value (get-content -Path .\Preferences | Select-String -Pattern $badstring1 -NotMatch); Set-Content -Path .\Preferences -Value (get-content -Path .\Preferences | Select-String -Pattern $badstring2 -NotMatch) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment