Chrome, Edge 브라우저 자동 업데이트 막는 방법
- microsofe windows edge browser auto update disable setting,
(엣지 업데이트 막기, 크롬 업데이트 막기)
- 기본 방법 : 레지스트리에서 업데이트 정책을 수정한다
- 주의! 브라우저를 통한 수동 업데이트도 중지 된다.
* 크롬(Chrome)
rem 주의! 수동 업데이트도 중지된다.
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Update" /v UpdateDefault /t REG_DWORD /d 0 /f
* 엣지(Edge)
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\EdgeUpdate" /v UpdateDefault /t REG_DWORD /d 0 /f
//-----------------------------------------------------------------------------
< 다시 가능하게 하는 방법 >
* 크롬(Chrome)
rem 레지스트리 차단 정책 삭제
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Update" /v UpdateDefault /f
* 엣지(Edge)
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\EdgeUpdate" /v UpdateDefault /f
-------------------------------------------------------------------------------
크롬 업데이트 막기 스크립트
//
@echo on
chcp 65001
rem 주의! 수동 업데이트도 중지된다.
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Update" /v UpdateDefault /t REG_DWORD /d 0 /f
netsh advfirewall firewall delete rule name="Disable Chrome Updates"
netsh advfirewall firewall add rule name="Disable Chrome Updates" dir=out action=block program="C:\Program Files (x86)\Google\Update\GoogleUpdate.exe"
sc config "gupdate" start=disabled
sc config "gupdatem" start=disabled
sc config "GoogleChromeDevTracingService" start=disabled
sc config "GoogleChromeBetaElevationService" start=disabled
sc config "GoogleChromeDevElevationService" start=disabled
sc config "GoogleChromeElevationService" start=disabled
rem GoogleUpdaterInternalService 로 시작하는 모든 서비스 처리
powershell -Command "Get-Service -Name 'GoogleUpdaterInternalService*' | Set-Service -StartupType Disabled"
powershell -Command "Get-Service -Name 'GoogleUpdaterService*' | Set-Service -StartupType Disabled"
pause
//
크롬 업데이트 가능(막기 해제)스크립트
//
@echo on
chcp 65001
rem 레지스트리 차단 정책 삭제
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Update" /v UpdateDefault /f
netsh advfirewall firewall delete rule name="Disable Chrome Updates"
sc config "gupdate" start=demand
sc config "gupdatem" start=demand
sc config "GoogleChromeDevTracingService" start=demand
sc config "GoogleChromeBetaElevationService" start=demand
sc config "GoogleChromeDevElevationService" start=demand
sc config "GoogleChromeElevationService" start=demand
powershell -Command "Get-Service -Name 'GoogleUpdaterInternalService*' | Set-Service -StartupType Manual"
powershell -Command "Get-Service -Name 'GoogleUpdaterService*' | Set-Service -StartupType Manual"
pause
//
'Tips' 카테고리의 다른 글
| AWS 로그인 내역 확인하는 방법 (0) | 2024.03.03 |
|---|---|
| 크롬, 엣지 브라우저 이전 버전 다운로드 방법 (0) | 2024.03.02 |
| vi (vim) 에디터 사용법 (0) | 2024.02.15 |
| FileZilla FTP 업데이트 체크 방지 (0) | 2024.01.13 |
| 엘프 반주기 (ELF) ELFWIN5 사용법, 에러 해결 방법 (1) | 2024.01.06 |



