Advertisement
Guest User

Untitled

a guest
Sep 16th, 2016
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. @echo off
  2.  
  3. mkdir tmp
  4.  
  5. echo Downloading RTLSDR Driver
  6. httpget http://sdr.osmocom.org/trac/raw-attachment/wiki/rtl-sdr/RelWithDebInfo.zip tmp\RelWithDebInfo.zip
  7.  
  8. echo Downloading Zadig
  9. set zadig_exe=zadig.exe
  10. ver | findstr /l "5.1." > NUL
  11. if %errorlevel% equ 0 set zadig_exe=zadig_xp.exe
  12. httpget http://zadig.akeo.ie/downloads/%zadig_exe% %zadig_exe%
  13.  
  14. unzip -o tmp\RelWithDebInfo.zip -d tmp
  15. move tmp\rtl-sdr-release\x32\rtlsdr.dll .
  16.  
  17. rmdir tmp /S /Q
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement