Advertisement
cigcag

Fusion_Studio_17.4.6.4_patch

May 13th, 2022
1,487
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Blackmagic Design Fusion Studio v17.4.6.4 Patch
  2. # Put Powershell script in "Blackmagic Design" folder and run with Powershell
  3.  
  4. $hashSrc = ("02969B6BF53B9A008FC1DA0F305FB652894577C53E01615803C43344A0C5DE3D")
  5. $hashCmp = Get-FileHash "Fusion 17\fusionsystem.dll" -Algorithm SHA256
  6.  
  7. If ($hashSrc -ne $hashCmp.Hash)
  8. {
  9.   Write-Output "Checksum of Fusion Studio fusionsystem.dll is wrong"; pause; break;
  10. }
  11. Copy-Item -Path "Fusion 17\fusionsystem.dll" -Destination "Fusion 17\fusionsystem.dll.bak";
  12. $bytes = [System.IO.File]::ReadAllBytes("Fusion 17\fusionsystem.dll")
  13. $bytes[0x6B2430] = 0xB0
  14. $bytes[0x6B2431] = 0x01
  15. $bytes[0x6B2432] = 0xC3
  16. $bytes = [System.IO.File]::WriteAllBytes("Fusion 17\fusionsystem.dll",$bytes)
  17. Write-Output "Fusion Studio fusionsystem.dll is successfully patched"
  18.  
  19.  
  20. $hashSrc = ("44C90963DBBCD3364CC87F1504E6DDA3D2BE362B1F31F3A5465117BA8098A14E")
  21. $hashCmp = Get-FileHash "Fusion Render Node 17\fusionsystem.dll" -Algorithm SHA256
  22.  
  23. If ($hashSrc -ne $hashCmp.Hash)
  24. {
  25.   Write-Output "Checksum of Fusion Render Node fusionsystem.dll is wrong"; pause; break;
  26. }
  27. Copy-Item -Path "Fusion Render Node 17\fusionsystem.dll" -Destination "Fusion Render Node 17\fusionsystem.dll.bak";
  28. $bytes = [System.IO.File]::ReadAllBytes("Fusion Render Node 17\fusionsystem.dll")
  29. $bytes[0x4B20E0] = 0xB0
  30. $bytes[0x4B20E1] = 0x01
  31. $bytes[0x4B20E2] = 0xC3
  32. $bytes = [System.IO.File]::WriteAllBytes("Fusion Render Node 17\fusionsystem.dll",$bytes)
  33. Write-Output "Fusion Render Node fusionsystem.dll is successfully patched"; pause
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement