shreesh 406 Report post Posted February 23, 2014 On latest LG OG there is MSL block on ##DIAG# ie ##3424#. On recent phones we are getting a "service code" prompt before we toggle anything. Once DIAG mode is achieved we can easily configure it. To remove this block with simple command terminal. It may help to set "charge only" mode first and not the "MTP". We need to root it. Here is a link to root your phone Be sure that LG drivers are installed- Download Command:- suecho 1 > /sys/devices/platform/lg_diag_cmd/diag_enable If your phone was plugged into the computer already unplug it and plug it back in. You will now be in DIAG mode.Your Windows Device Manager should look like this If u want to script this then use script manager from play store then using widgets add a shortcut to homescreen. On app, menu button>new script and write the below script. before launching the script be sure to toggle the SU button in the appthen hit save. and while making a shortcut you may have to try twice. Dont unplug the phone if using script. If it doesnt toggle diag for some reasons try running it again STOCK ENABLE Code: margin: 0px; padding: 6px; border: 1px inset; width: 640px; height: 98px; text-align: left; overflow: auto">#!/system/bin/shecho 0 > /sys/class/android_usb/android0/enableecho 1 > /sys/devices/platform/lg_diag_cmd/diag_enableecho 1 > /sys/class/android_usb/android0/enable STOCK DISABLE Code: margin: 0px; padding: 6px; border: 1px inset; width: 640px; height: 98px; text-align: left; overflow: auto">#!/system/bin/shecho 0 > /sys/class/android_usb/android0/enableecho 0 > /sys/devices/platform/lg_diag_cmd/diag_enableecho 1 > /sys/class/android_usb/android0/enable AOSP ENABLE Code: margin: 0px; padding: 6px; border: 1px inset; width: 640px; height: 242px; text-align: left; overflow: auto">#!/system/bin/shstop adbdecho 0 > /sys/class/android_usb/android0/enableecho 1004 > /sys/class/android_usb/android0/idVendorecho 631B > /sys/class/android_usb/android0/idProductecho 239 > /sys/class/android_usb/android0/bDeviceClassecho 2 > /sys/class/android_usb/android0/bDeviceSubClassecho 1 > /sys/class/android_usb/android0/bDeviceProtocolecho tty > /sys/class/android_usb/android0/f_acm/acm_transportsecho diag,diag_mdm > /sys/class/android_usb/android0/f_diag/clientsecho acm,diag,mtp,adb > /sys/class/android_usb/android0/functionsecho 1 > /sys/class/android_usb/android0/enablestart adbd How to Toggle SU button? Special Thanks to MIKEex. 1 Share this post Link to post Share on other sites