document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. REM Delete all old upgrade download and install files for Google Products
  2. REM Fri 20-Mar-15 metadataconsulting.ca
  3. REM RMDIR DOS COMMAND
  4. REM /S = Removes all directories and files in the specified directory in addition to the directory itself. Used to remove a directory tree.
  5. REM /Q = Quiet mode, do not ask if OK to remove a directory tree with /S.
  6.  
  7. echo. Begin delete all old upgrade download files for Google Products
  8. RMDIR /S /Q "%HOMEPATH%\\AppData\\Local\\Google\\Update\\Download"
  9. MKDIR "%HOMEPATH%\\AppData\\Local\\Google\\Update\\Download"
  10. echo. End delete all old upgrade download files for Google Products
  11.  
  12. echo. Begin delete all old upgrade install files for Google Products
  13. RMDIR /S /Q "%HOMEPATH%\\AppData\\Local\\Google\\Update\\Install"
  14. MKDIR "%HOMEPATH%\\AppData\\Local\\Google\\Update\\Install"
  15. echo. End delete all old upgrade install files for Google Products
');