Advertisement
adamchilcott

upStudioUninstall.cmd

May 20th, 2019
356
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 2.06 KB | None | 0 0
  1. @echo off
  2.  
  3. cls
  4.  
  5. REM #####################
  6. REM # Uninstall UP Studio
  7. REM #####################
  8.  
  9. wmic product where name="UP Studio" call uninstall
  10.  
  11. REM #############
  12. REM # START NOTES
  13. REM #############
  14.  
  15. REM ## Reference:
  16. REM ## <https://www.tiertime.com/downloads/software/>
  17.  
  18. REM # 2-clause license ("Simplified BSD License" or "FreeBSD License")
  19. REM #
  20. REM # Copyright © 2018, Adam Brian Chilcott
  21. REM # All rights reserved.
  22. REM #
  23. REM # Redistribution and use in source and binary forms, with or without
  24. REM # modification, are permitted provided that the following conditions are met:
  25. REM #
  26. REM # 1. Redistributions of source code must retain the above copyright notice, this
  27. REM # list of conditions and the following disclaimer.
  28. REM # 2. Redistributions in binary form must reproduce the above copyright notice,
  29. REM # this list of conditions and the following disclaimer in the documentation
  30. REM # and/or other materials provided with the distribution.
  31. REM #
  32. REM # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  33. REM # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  34. REM # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  35. REM # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
  36. REM # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  37. REM # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  38. REM # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  39. REM # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  40. REM # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  41. REM # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  42. REM #
  43. REM # The views and conclusions contained in the software and documentation are those
  44. REM # of the authors and should not be interpreted as representing official policies,
  45. REM # either expressed or implied, of the FreeBSD Project.
  46.  
  47. REM ###########
  48. REM # END NOTES
  49. REM ###########
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement