Jump to content

StarBurn SDK


Recommended Posts

If anyone has used the StarBurn.dll to burn iso's or retrieve drive info I would like to see what you have. I believe StarBurn is what is used in Barts PE Builder to burn your final image.

Edited by weaponx
Link to comment
Share on other sites

Well I got impatient so if anyone is interested....you can get the StarBurn SDK here

After you install the SDK you can access the StarBurn OCX, this script simple scans for optical devices and outputs to a message box.

I hope to see more usage of cd burning integration.

$Reg = ObjCreate("StarBurn.Registration")
$Reg.SetLicenseFree

$Devices = ObjCreate("StarBurn.Devices")

; iterate through device list
For $i = 0 To $Devices.Count - 1 Step 1
    
  ; Get current device
  $Device = $Devices.GetDevice($i)

  ; Show device info
  MsgBox(0,"",'Found device = ' & $Device.ProductID & ' ' & $Device.VendorID & @CRLF & $Device.DeviceName)

Next
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...