weaponx Posted June 2, 2007 Posted June 2, 2007 (edited) 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 June 3, 2007 by weaponx
weaponx Posted June 3, 2007 Author Posted June 3, 2007 Well I got impatient so if anyone is interested....you can get the StarBurn SDK hereAfter 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now