Advertisement
Guest User

Untitled

a guest
Feb 14th, 2011
1,664
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. @echo off
  2.  
  3. copy /b/y NUL %WINDIR%\06CF2EB6-94E6-4a60-91D8-AB945AE8CF38 >NUL 2>&1
  4. if ERRORLEVEL 1 goto notadmin
  5. goto admin
  6.  
  7. :notadmin
  8. echo This script must be run as administrator.
  9. echo Right click it and select "Run as Administrator".
  10. goto end
  11.  
  12. :admin
  13. del %WINDIR%\06CF2EB6-94E6-4a60-91D8-AB945AE8CF38 >NUL 2>&1
  14.  
  15. %~d0
  16. CD %~dp0
  17. echo.
  18. echo HD 6950 to HD 6950 shader unlocked
  19. echo *********************************************
  20. echo.
  21. echo The full article can be found at:
  22. echo http://www.techpowerup.com/articles/overclocking/vidcard/159
  23. echo.
  24. echo Please make sure the BIOS selector switch on your card is in the 1 position.
  25. echo This script will flash your HD 6950 to HD 6950 shader unlocked.
  26. echo.
  27. echo Press any key to continue or CTRL+C to abort.
  28.  
  29. pause > NUL
  30.  
  31. cd winflash
  32. atiwinflash -unlockrom 0
  33.  
  34. if not exist backup.bin (
  35. echo Creating BIOS backup. Click OK in the Winflash screen that shows up.
  36. atiwinflash -s 0 backup.bin
  37. )
  38.  
  39. copy backup.bin original.bin
  40. ..\php\php ..\mod.php
  41. echo modded
  42. pause
  43. atiwinflash -f -p 0 modded.bin
  44.  
  45. echo.
  46.  
  47. if ERRORLEVEL 0 goto success
  48. echo Winflash reported an error in the flashing process, please watch any on-screen messages.
  49. goto end
  50.  
  51. :success
  52. echo The flashing process completed sucessfully.
  53. echo.
  54. echo Please restart your system for the changes to apply.
  55. echo After reboot check the shader count using the GPU-Z included in this directory.
  56. goto end
  57.  
  58. :end
  59. echo.
  60. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement