Advertisement
adamchilcott

f360sUninstall.cmd

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