Advertisement
Rick0

CHROME_SILENT_INSTALL

Nov 5th, 2019
468
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 2.52 KB | None | 0 0
  1. @echo off
  2. ::pushd "%~dp0"
  3. SET "X86=%PROGRAMFILES%\Google\Chrome\Application\chrome.exe"
  4. SET "X64=%PROGRAMFILES(X86)%\Google\Chrome\Application\chrome.exe"
  5. ::INFORME AQUI O CAMINHO DO INSTALADOR DO CHROME E A VERSAO
  6. SET "VERSAO=78"
  7. SET "ORIGEM=\\servidor\caminho\Chrome\googlechrome%VERSAO%.msi"
  8. SET "DESTINO=%SYSTEMDRIVE%\APP\googlechrome%VERSAO%.msi"
  9.  
  10. IF %PROCESSOR_ARCHITECTURE% EQU AMD64 ( GOTO X64) ELSE ( GOTO X32)
  11.  
  12. :X32
  13. IF NOT EXIST "%X86%" (GOTO INSTALL)
  14. ::VERIFICA VERSAO DO CHROME
  15. for /f %%d in ('%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\powershell.exe -c "[System.Diagnostics.FileVersionInfo]::GetVersionInfo('%X86%').FileVersion"') do SET VERS=%%d
  16. SET VER=%VERS:~0,2%
  17. IF %VER% EQU %VERSAO% (goto END)
  18. IF %VER% NEQ %VERSAO% (goto INSTALL)
  19.  
  20. :X64
  21. IF NOT EXIST "%X64%" (GOTO INSTALL)
  22. ::VERIFICA VERSAO DO CHROME
  23. for /f %%d in ('%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\powershell.exe -c "[System.Diagnostics.FileVersionInfo]::GetVersionInfo('%X64%').FileVersion"') do SET VERS=%%d
  24. SET VER=%VERS:~0,2%
  25. IF %VER% EQU %VERSAO% (goto END)
  26. IF %VER% NEQ %VERSAO% (goto INSTALL)
  27.  
  28. :INSTALL
  29. tasklist | find /i "chrome.exe" && taskkill /im "chrome.exe" /F >nul &cls
  30. tasklist | find /i "msiexec.exe" && taskkill /im "msiexec.exe" /F >nul &cls
  31. tasklist | find /i "googleupdate.exe" && taskkill /im "googleupdate.exe" /F >nul &cls
  32. CLS
  33. for %%d in ("%DESTINO%") do set "APPNAME=%%~nd"
  34. for %%d in ("%DESTINO%") do set "APP=%%~dpd"
  35. IF NOT EXIST "%APP%" MD "%APP%"
  36. IF NOT EXIST "%DESTINO%" copy /y "%ORIGEM%" "%APP%" >NUL
  37. CLS
  38. TITLE INSTALANDO %APPNAME%
  39. echo Instalando %APPNAME% Aguarde...
  40. IF EXIST "%DESTINO%" start /wait msiexec /i "%DESTINO%" ALLOWDOWNGRADE=1 /qn /norestart
  41.  
  42. IF %ERRORLEVEL% NEQ 0 (ECHO %COMPUTERNAME%,CHROME=%VERSAO%,ERRO=%ERRORLEVEL%,%date%-%TIME:~0,8% >>"\\servidor\LOGS\falha.txt" & goto INSTALL) ELSE (ECHO %COMPUTERNAME%,CHROME=%VERSAO%,%date%-%TIME:~0,8% >>"\\servidor\sucesso.txt" & GOTO END)
  43.  
  44. :END
  45. ::REMOVENDO TAREFAS AGENDADAS CHROME
  46. for /f "tokens=2 delims=\" %%x in ('schtasks /query /fo:list ^| findstr ^^GoogleUpdateTask') do SCHTASKS /End /TN "%%x" >nul && SCHTASKS /Delete /TN "%%x" /F >nul
  47. cls
  48. ::DESABILITANDO SERVICOS
  49. SET "disable_services=gupdatem,GoogleChromeElevationService,gusvc,gupdate"
  50. for %%i in (%disable_services%) do (
  51. SC query %%i | FIND /i "STOPPED" >nul & IF ERRORLEVEL 1 SC stop %%i >nul
  52. SC config %%i start= disabled >nul
  53. )
  54. ::REMOVENDO ATALHO DO CHROME DA AREA DE TRABALHO PUBLICA
  55. IF EXIST "%PUBLIC%\Desktop\Google Chrome.lnk" del /f /q "%PUBLIC%\Desktop\Google Chrome.lnk"
  56. EXIT
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement