Advertisement
adamchilcott

autoCCCT.cmd

Jun 3rd, 2019
348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 2.55 KB | None | 0 0
  1. @echo off
  2.  
  3. cls
  4.  
  5. REM #############################################
  6. REM # Uninstall The Majority of Adobe CC Products
  7. REM # Then Install Adobe CC 20XX & Restart
  8. REM #############################################
  9.  
  10. AdobeCreativeCloudCleanerTool.exe --removeAll=CREATIVECLOUDCS6PRODUCTS
  11. ping -n 6 127.0.0.1>nul
  12.  
  13. pushd \\my-enterprise-server\c$
  14. %cd%MY\ADOBE\BUILD\PATH\setup.exe
  15.  
  16. ping -n 6 127.0.0.1>nul
  17. popd
  18.  
  19. ping -n 6 127.0.0.1>nul
  20. shutdown /r /t 0
  21.  
  22. REM #############
  23. REM # START NOTES
  24. REM #############
  25.  
  26. REM ## Please note that you do need the Adobe Creative Cloud Cleaner Tool
  27. REM ## in the same path as this Script and running as an Administrator
  28.  
  29. REM ## Reference:
  30. REM ## <https://helpx.adobe.com/au/creative-cloud/kb/cc-cleaner-tool-installation-problems.html>
  31.  
  32. REM # 2-clause license ("Simplified BSD License" or "FreeBSD License")
  33. REM #
  34. REM # Copyright © 2018, Adam Brian Chilcott
  35. REM # All rights reserved.
  36. REM #
  37. REM # Redistribution and use in source and binary forms, with or without
  38. REM # modification, are permitted provided that the following conditions are met:
  39. REM #
  40. REM # 1. Redistributions of source code must retain the above copyright notice, this
  41. REM # list of conditions and the following disclaimer.
  42. REM # 2. Redistributions in binary form must reproduce the above copyright notice,
  43. REM # this list of conditions and the following disclaimer in the documentation
  44. REM # and/or other materials provided with the distribution.
  45. REM #
  46. REM # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  47. REM # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  48. REM # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  49. REM # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
  50. REM # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  51. REM # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  52. REM # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  53. REM # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  54. REM # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  55. REM # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  56. REM #
  57. REM # The views and conclusions contained in the software and documentation are those
  58. REM # of the authors and should not be interpreted as representing official policies,
  59. REM # either expressed or implied, of the FreeBSD Project.
  60.  
  61. REM ###########
  62. REM # END NOTES
  63. REM ###########
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement