Advertisement
cigcag

Fusion_Studio_18.0.0.20_patch

May 21st, 2022
1,359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Blackmagic Design Fusion Studio v18.0.0.20 (Public Beta 3) Patch
  2. # Put Powershell script in "Blackmagic Design" folder and run with Powershell
  3.  
  4. $hashSrc = ("532AFD580EA0FC2D3D6BF640147CE01D0D9C1541AAE04C6ACD2EB1AF02866B44")
  5. $hashCmp = Get-FileHash "Fusion 18\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 18\fusionsystem.dll" -Destination "Fusion 18\fusionsystem.dll.bak";
  12. $bytes = [System.IO.File]::ReadAllBytes("Fusion 18\fusionsystem.dll")
  13. $bytes[0x6D17D0] = 0xB0
  14. $bytes[0x6D17D1] = 0x01
  15. $bytes[0x6D17D2] = 0xC3
  16. $bytes = [System.IO.File]::WriteAllBytes("Fusion 18\fusionsystem.dll",$bytes)
  17. Write-Output "Fusion Studio fusionsystem.dll is successfully patched"
  18.  
  19.  
  20. $hashSrc = ("D3FA0395909E7F7AFA503D36928676805585E50DD96D804F7E0EC3D9A3F9B6A4")
  21. $hashCmp = Get-FileHash "Fusion Render Node 18\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 18\fusionsystem.dll" -Destination "Fusion Render Node 18\fusionsystem.dll.bak";
  28. $bytes = [System.IO.File]::ReadAllBytes("Fusion Render Node 18\fusionsystem.dll")
  29. $bytes[0x4C8EB0] = 0xB0
  30. $bytes[0x4C8EB1] = 0x01
  31. $bytes[0x4C8EB2] = 0xC3
  32. $bytes = [System.IO.File]::WriteAllBytes("Fusion Render Node 18\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