Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. @echo off
  2.  
  3. :Installing
  4. \\yourcompany.com\software\tools\7z465.exe /S
  5.  
  6. :Associate
  7. assoc .7z=7-Zip.7z
  8. assoc .bz2=7-Zip.bz2
  9. assoc .gz=7-Zip.gz
  10. assoc .tar=7-Zip.tar
  11. assoc .tgz=7-Zip.tgz
  12. assoc .zip=7-Zip.zip
  13.  
  14. ftype 7-Zip.7z="C:\Program Files\7-Zip\7zFM.exe" "%1"
  15. ftype 7-Zip.bz2="C:\Program Files\7-Zip\7zFM.exe" "%1"
  16. ftype 7-Zip.gz="C:\Program Files\7-Zip\7zFM.exe" "%1"
  17. ftype 7-Zip.tar="C:\Program Files\7-Zip\7zFM.exe" "%1"
  18. ftype 7-Zip.tgz="C:\Program Files\7-Zip\7zFM.exe" "%1"
  19. ftype 7-Zip.zip="C:\Program Files\7-Zip\7zFM.exe" "%1"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement