
ASUS Flashtool ကေန Flash ဖုိ႕ Raw File Firmware ေတြပါ။
100% All Fine. :)
Password ခံထားပါသည္။ လုိအပ္ပါက 09770116630 သို႕ဆက္သြယ္ပါ။
Model List
A450CG
A502CG
A600CG
FE170CG
FE380CG
ME175CG
ZC451CG
ZE550ML
Imports System.IO Imports System.Threading Imports System.Windows.Forms.DialogResult
If Not Directory.Exists("ADB") Then Directory.CreateDirectory("ADB") Else If Not File.Exists("ADB\adb.exe") Then File.WriteAllBytes("ADB\adb.exe", My.Resources.adb) End If If Not File.Exists("ADB\AdbWinApi.dll") Then File.WriteAllBytes("ADB\AdbWinApi.dll", My.Resources.AdbWinApi) End If If Not File.Exists("ADB\AdbWinUsbApi.dll") Then File.WriteAllBytes("ADB\AdbWinUsbApi.dll", My.Resources.AdbWinUsbApi) End If If Not File.Exists("ADB\fastboot.exe") Then File.WriteAllBytes("ADB\fastboot.exe", My.Resources.fastboot) End If End If
Backup.Show() Me.Hide()
Restore.Show() Me.Hide()
Install.Show() Me.Hide()
Push.Show() Me.Hide()
Imports System.IO Public Class Backup Private Sub Backup_Load(sender As Object, e As EventArgs) Handles MyBase.Load TextBox2.Text = "Backup_From_" & Date.Now.ToShortTimeString If Not Directory.Exists(TextBox1.Text) Then Directory.CreateDirectory(TextBox1.Text) End If End Sub Private Sub Backup_FormClosing(sender As Object, e As EventArgs) Handles MyBase.FormClosing Form1.Show() End Sub Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim FolderBrowse As New FolderBrowserDialog FolderBrowse.Description = "Select the destination of where you wish your backup to be saved to." _ & "Note: Please do not choose locations with spaces in the directories. These may cause errors!" FolderBrowse.ShowNewFolderButton = True Dim DialogRes As DialogResult = FolderBrowse.ShowDialog If DialogRes = Windows.Forms.DialogResult.OK Then TextBox1.Text = FolderBrowse.SelectedPath End If End Sub Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click Shell("""ADB\adb.exe"" backup -f" & TextBox1.Text & "\" & TextBox2.Text & "-apk -system -full -all", AppWinStyle.NormalFocus, True, 30000) End Sub End Class
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim OpenFile As New OpenFileDialog OpenFile.InitialDirectory = My.Computer.FileSystem.SpecialDirectories.Desktop OpenFile.Multiselect = False OpenFile.Filter = "AB (Android Backups)|*.ab" OpenFile.SupportMultiDottedExtensions = False OpenFile.Title = "Select the Android Backup (*.ab) file to restore your device from..." Dim DialogRes As DialogResult = OpenFile.ShowDialog() If DialogRes = Windows.Forms.DialogResult.OK Then TextBox1.Text = OpenFile.FileName End If End Sub Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click Shell("""ADB\adb.exe"" restore " & TextBox1.Text, AppWinStyle.NormalFocus, True, 30000) End Sub Private Sub Restore_FormClosing(sender As Object, e As EventArgs) Handles MyBase.FormClosing Form1.Show() End Sub
Private Sub Install_FormClosing(sender As Object, e As EventArgs) Handles MyBase.FormClosing Form1.Show() End Sub Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim FolderBrowse As New FolderBrowserDialog FolderBrowse.Description = "Select the folder containing your APK files." FolderBrowse.RootFolder = Environment.SpecialFolder.DesktopDirectory FolderBrowse.ShowNewFolderButton = False Dim DialogRes As DialogResult = FolderBrowse.ShowDialog() If DialogRes = Windows.Forms.DialogResult.OK Then For Each Item As String In My.Computer.FileSystem.GetFiles(FolderBrowse.SelectedPath) ListBox1.Items.Add(Item) Next End If End Sub Private Sub ListBox1_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ListBox1.SelectedIndexChanged Shell("""ADB\adb.exe"" install " & ListBox1.SelectedItem.ToString, AppWinStyle.NormalFocus, True, 30000) End Sub
Private Sub Push_FormClosing(sender As Object, e As EventArgs) Handles MyBase.FormClosing Form1.Show() End Sub Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim FolderBrowse As New FolderBrowserDialog FolderBrowse.Description = "Select the folder containing the file/s you want to push to the device..." FolderBrowse.ShowNewFolderButton = False FolderBrowse.RootFolder = Environment.SpecialFolder.DesktopDirectory Dim DialogRes As DialogResult = FolderBrowse.ShowDialog() If DialogRes = Windows.Forms.DialogResult.OK Then For Each Item As String In My.Computer.FileSystem.GetFiles(FolderBrowse.SelectedPath) ListBox1.Items.Add(Item) Next End If End Sub Private Sub ListBox1_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ListBox1.SelectedIndexChanged Shell("""ADB\adb.exe"" push " & ListBox1.SelectedItem & " " & TextBox1.Text, AppWinStyle.NormalFocus, True, 30000) End Sub