cigcag

Fusion_Studio_18.0.0.14_patch

May 13th, 2022 (edited)
743
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Blackmagic Design Fusion Studio v18.0.0.14 (Public Beta 2) Patch
  2. # Put Powershell script in "Blackmagic Design" folder and run with Powershell
  3.  
  4. $hashSrc = ("96CEE793BB2832E307D6F0F0195CCDF5BF19E154DA865430F443256A68805FEC")
  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[0x6D1750] = 0xB0
  14. $bytes[0x6D1751] = 0x01
  15. $bytes[0x6D1752] = 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 = ("7DF35AFF44C2B2EEDFC7F96381518ACF201FAD93747C822B852C80E904480B4F")
  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[0x4C8E30] = 0xB0
  30. $bytes[0x4C8E31] = 0x01
  31. $bytes[0x4C8E32] = 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.  
Add Comment
Please, Sign In to add comment