
Untitled
By: a guest on
May 4th, 2012 | syntax:
None | size: 1.09 KB | hits: 16 | expires: Never
## ih8sn0w -- iBooty backimage command
## sn0wbreezw 1.7 2010 -- iH8sn0w
## DjKira
Public Sub GoGoGadgetPayload()
MyProject.Forms.Form1.Step0 = False
Me.Button1.Text = "Sending up Payload..."
Me.cmdline = "irecovery.exe -k iboot.payload"
modProcessCmd.ExecCmd(Me.cmdline, True)
modProcessCmd.Delay(2)
Me.Button1.Text = "Sending up Logo..."
Me.cmdline = "irecovery.exe -f wait.img3"
modProcessCmd.ExecCmd(Me.cmdline, True)
modProcessCmd.Delay(2)
Me.Button1.Text = "Setting up Logo..."
Me.cmdline = ("irecovery.exe -c " & MyProject.Forms.Form1.Quote.Text & "setpicture 0" & MyProject.Forms.Form1.Quote.Text)
modProcessCmd.ExecCmd(Me.cmdline, True)
modProcessCmd.Delay(1)
Me.cmdline = ("irecovery.exe -c " & MyProject.Forms.Form1.Quote.Text & "bgcolor 0 0 0" & MyProject.Forms.Form1.Quote.Text)
modProcessCmd.ExecCmd(Me.cmdline, True)
Me.Button1.Text = "Done!"
Interaction.MsgBox("If you see the image on your screen, then you can proceed!", MsgBoxStyle.Information, Nothing)
MyProject.Forms.Form1.Step0 = False
End Sub