Advertisement
adamchilcott

upStudioInstall.cmd

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