Best notepad Hacking tricks for removing the shortcut virus using Cmd prompt.
NOTE: No need of any antivirus software to perform this operation.
After plug in your virus affected drive, just press Win key + R to open Run box and type “cmd” and press Enter key. (Without double quotes)
In the opened command prompt, open your drive by entering your drive letter as shown in the below figure. For example, if your drive letter is entered g: and press Enter. (To find your drive letter just open “My Computer” and check your drive icon)
Now type “ del *.lnk” and hit Enter.(without double quotes)
Finally, type the below command and hit Enter. (without double quotes)
“ attrib -s -r -h *.* /s /d /l ”
IN Simple Words:–
In this step, you have to remove shortcut virus using CMD.
Click on “Start” –>Run –> type cmd and click on OK.
let me consider your drive letter as G:
Enter this command:
attrib -h -r -s /s /d g:*.*
attrib G:*.* /d /s -h -r -s “
Note: Don’t forget to replace the letter g with your drive letter. Give a look to your files. Must Saw Firstly Your Drive Letter as whatever be it is an example of this- g:,h:,l:,
That’s it, just wait some seconds. Then open and check your drive. Your folders will be retrieved. I hope this is useful for you. If any doubt, comment below. Share with your friends.
non android topic - thread closed - copy / pasta from here https://www.wikitechy.com/technology/remove-shortcut-viruses-using-cmd/
Related
Hi everybody.
This worked for me so hope it helps you.
Extract Rom files, copy nk:nbf to your device folder ieH20B, copy SetOperator &
xda3nbftool(found in PH20B1) into PH20B copy this folder into C drive (C:\PH20B) or whichever is your
local/main drive
Now click Start-run,type cmd click ok
in the command line window type the following (where [ENTER] means hit the ENTER key)
cd \ (space after cd) [ENTER]
cd PH20B [ENTER]
SetOperator O2UK001 (your code) [ENTER]
when completed type exit [ENTER}
basically cd means change directory.
starting from c:\, and wanting to get to c:\my documents\pocket pc\helmi rom\ph20b, you would type:
cd c:
cd my documents\pocket pc\helmi rom\ph20b
setoperator .....................
I copied the folder Ph20B to C: drive to simplify the command prompt
if you type cd C: it just copies the same line of text
Type cd \
you get
C:\>
Type cd PH20B after >
you get
C:\PH20B> then type SetOperator & code after > and hey Presto you get
Setting Operator to[???????] for ROM
updated checksum to ????????
Completed
C:\PH20B> type exit after > to close prompt
stealph said:
if you type cd C: it just copies the same line of text
Click to expand...
Click to collapse
sorry, typo - i meant c:\
No problem
After searching for ages for a step by step guide, i remembered i'd done something with command prompt to intergrate XPsp2 into XP and it helped me to understand this.
Just hope it helps others
Hello people, this is my first post on this gr8 forum.
This time I'll give you this fix to the known problem
"The application Email (process com. android.email) has stopped unexpectedly"
I had seen many places that descrive to fix it following this to wipe your e-mail account:
To wipe out your email account(s) and start over – do the following:
1. Tap Home>Settings>Applications>Manage Applications
2. Tap the Menu button and then tap "Filter"
3. Tap "All Applications"
4. Scroll down in the list to the "Email" application and tap on it.
5. Tap "Clear Cache" and then tap “Clear Data”
6. Tap the Home button, open the email application and setup your email accounts.
Well, this is the ****, sometimes this doesn't work, so you should follow the handy way, just like I did it because the Email application did not figure out on the list descrived early.
It's suposed that you got "android-sdk-windows" downloaded and unziped on your desktop
So, let's work and run your cmd going to run -> cmd ENTER!
C:\...\> cd Desktop\android-sdk-windows\platform-tools
C:\...\Desktop\android-sdk-windows\platform-tools> adb shell
su
cd /data/data/com.android.email/
cd databases
# ls
ls
EmailProvider.db
EmailProviderBody.db
# rm EmailProvider.db
rm EmailProvider.db
# rm EmailProviderBody.db
# cd ..
# cd files
# rm deviceName
rm deviceName
exit
This is it, al cleared by hand and Email app working again.
Hope you get something from this post.
cya
PS: Hope you can read my very bad and very funny english
PS: Vamo argentina ... CARAJO!!!
You need ADB and an understanding of how to use it and have a rooted device (although I didn't test this). You will also need a hex editor like HxD.
BACK UP YOUR DATA BEFORE DOING THIS!!!! WHEN HTCDEV UNLOCKS YOUR DEVICE YOU MUST START FROM SCRATCH!!!
1. Fire up your command prompt and go to the directory that you have ADB installed to. Type "adb shell" and hit enter.
2. Type "su" and hit enter. You now have root privileges.
3. Next type "dd if=/dev/block/mmcblk0p4 of=/sdcard/mmcblk0p4" and hit enter. This will dump the partition to your sdcard.
4. Next type "exit", hit enter, type "exit", and hit enter again. This should take you back to a command prompt for your computer.
5. type "adb pull /sdcard/mmcblk0p4" and hit enter. NOTE THE SIZE OF THE FILE BEFORE THE NEXT STEP!
6. Open the file (mmcblk0p4) with your hex editor.
7. Look for the area that contains the CID with your IMEI number attached to it.
8. Change your CID to 11111111 and save the file as mmcblk0p4MOD. This will give you SuperCID. MAKE SURE AT THIS POINT THAT THE FILE IS THE EXACT SIZE IT WAS BEFORE YOU HEX EDITED IT!
9. Now go back to your command prompt and type "adb push mmcblk0p4MOD /sdcard/mmcblk0p4MOD" and hit enter.
10. Type "adb shell" and hit enter then type "su" and hit enter again. This will put you back into the android shell and give you root privileges.
11. Type "dd if=/sdcard/mmcblk0p4MOD of=/dev/block/mmcblk0p4" and hit enter. To test if it worked restart the phone into fastboot (type "adb reboot bootloader" and hit enter) and once the bootloader screen comes up type "fastboot oem readcid" and hit enter. It should read "11111111".
I have modified my file as I had the O2__001 CID and it changed successfully, with the same file size etc, I am now just kind of crapping my self to test it by continuing onto step 9.
So do people think it will work, and or ready to risk it.
lol ... I do not believe it ... prefer to wait for another idiot ... what's going on ... no nuts in the pants to test it yourself
nintendolinky said:
You need ADB and an understanding of how to use it and have a rooted device (although I didn't test this). You will also need a hex editor like HxD.
BACK UP YOUR DATA BEFORE DOING THIS!!!! WHEN HTCDEV UNLOCKS YOUR DEVICE YOU MUST START FROM SCRATCH!!!
1. Fire up your command prompt and go to the directory that you have ADB installed to. Type "adb shell" and hit enter.
2. Type "su" and hit enter. You now have root privileges.
3. Next type "dd if=/dev/block/mmcblk0p4 of=/sdcard/mmcblk0p4" and hit enter. This will dump the partition to your sdcard.
4. Next type "exit", hit enter, type "exit", and hit enter again. This should take you back to a command prompt for your computer.
5. type "adb pull /sdcard/mmcblk0p4" and hit enter. NOTE THE SIZE OF THE FILE BEFORE THE NEXT STEP!
6. Open the file (mmcblk0p4) with your hex editor.
7. Look for the area that contains the CID with your IMEI number attached to it.
8. Change your CID to 11111111 and save the file as mmcblk0p4MOD. This will give you SuperCID. MAKE SURE AT THIS POINT THAT THE FILE IS THE EXACT SIZE IT WAS BEFORE YOU HEX EDITED IT!
9. Now go back to your command prompt and type "adb push mmcblk0p4MOD /sdcard/mmcblk0p4MOD" and hit enter.
10. Type "adb shell" and hit enter then type "su" and hit enter again. This will put you back into the android shell and give you root privileges.
11. Type "dd if=/sdcard/mmcblk0p4MOD of=/dev/block/mmcblk0p4" and hit enter. To test if it worked restart the phone into fastboot (type "adb reboot bootloader" and hit enter) and once the bootloader screen comes up type "fastboot oem readcid" and hit enter. It should read "11111111".
I have modified my file as I had the O2__001 CID and it changed successfully, with the same file size etc, I am now just kind of crapping my self to test it by continuing onto step 9.
So do people think it will work, and or ready to risk it.
Click to expand...
Click to collapse
as long as you were careful with the hex editor,there is not much danger. im willing to bet,however,that mmcblk0p4 is write protected,so the flash may appear successful,yet,not actually change anything.
you could also try changing it like on the one vx: http://forum.xda-developers.com/showthread.php?t=2161402
nintendolinky said:
You need ADB and an understanding of how to use it and have a rooted device (although I didn't test this). You will also need a hex editor like HxD.
BACK UP YOUR DATA BEFORE DOING THIS!!!! WHEN HTCDEV UNLOCKS YOUR DEVICE YOU MUST START FROM SCRATCH!!!
1. Fire up your command prompt and go to the directory that you have ADB installed to. Type "adb shell" and hit enter.
2. Type "su" and hit enter. You now have root privileges.
3. Next type "dd if=/dev/block/mmcblk0p4 of=/sdcard/mmcblk0p4" and hit enter. This will dump the partition to your sdcard.
4. Next type "exit", hit enter, type "exit", and hit enter again. This should take you back to a command prompt for your computer.
5. type "adb pull /sdcard/mmcblk0p4" and hit enter. NOTE THE SIZE OF THE FILE BEFORE THE NEXT STEP!
6. Open the file (mmcblk0p4) with your hex editor.
7. Look for the area that contains the CID with your IMEI number attached to it.
8. Change your CID to 11111111 and save the file as mmcblk0p4MOD. This will give you SuperCID. MAKE SURE AT THIS POINT THAT THE FILE IS THE EXACT SIZE IT WAS BEFORE YOU HEX EDITED IT!
9. Now go back to your command prompt and type "adb push mmcblk0p4MOD /sdcard/mmcblk0p4MOD" and hit enter.
10. Type "adb shell" and hit enter then type "su" and hit enter again. This will put you back into the android shell and give you root privileges.
11. Type "dd if=/sdcard/mmcblk0p4MOD of=/dev/block/mmcblk0p4" and hit enter. To test if it worked restart the phone into fastboot (type "adb reboot bootloader" and hit enter) and once the bootloader screen comes up type "fastboot oem readcid" and hit enter. It should read "11111111".
I have modified my file as I had the O2__001 CID and it changed successfully, with the same file size etc, I am now just kind of crapping my self to test it by continuing onto step 9.
So do people think it will work, and or ready to risk it.
Click to expand...
Click to collapse
If this actually worked like stated, does this mean that AT&T HTC One users (HTCDev will stop supporting the phone on the 19th) can use this to unlock their bootloaders? Will they be able to choose "Other Devices" on HTCDev and unlock their bootloaders using this mod?
Hi,
doesn't work
edit: attached is a bat file in self extracting zip
cheers
starbase64
D:\Handy\HTC_One\SuperCID>adb devices
List of devices attached
HT332W900709 device
D:\Handy\HTC_One\SuperCID>adb remount
remount succeeded
D:\Handy\HTC_One\SuperCID>adb shell "dd if=/dev/block/mmcblk0p4 of=/sdcard/mmcblk0p4"
2+0 records in
2+0 records out
1024 bytes transferred in 0.011 secs (93090 bytes/sec)
D:\Handy\HTC_One\SuperCID>adb pull /sdcard/mmcblk0p4
85 KB/s (1024 bytes in 0.011s)
D:\Handy\HTC_One\SuperCID>adb push mmcblk0p4MOD /sdcard/mmcblk0p4MOD
85 KB/s (1024 bytes in 0.011s)
D:\Handy\HTC_One\SuperCID>adb shell "dd if=/sdcard/mmcblk0p4MOD of=/dev/block/mmcblk0p4"
2+0 records in
2+0 records out
1024 bytes transferred in 0.007 secs (146285 bytes/sec)
D:\Handy\HTC_One\SuperCID>adb reboot bootloader
D:\Handy\HTC_One\SuperCID>fastboot oem readcid
< waiting for device >
... INFOcid: O2___102
OKAY
Click to expand...
Click to collapse
Code in superCID.bat said:
@echo off
adb devices
echo "******************************************************"
echo "* current CID *"
echo "******************************************************"
adb shell "getprop ro.cid"
pause
adb remount
adb shell "dd if=/dev/block/mmcblk0p4 of=/sdcard/mmcblk0p4"
adb pull /sdcard/mmcblk0p4
echo "******************************************************"
echo "* open the file in HEXEditor *"
echo "* press any key to push modifid file back on device *"
echo "******************************************************"
pause
adb push mmcblk0p4MOD /sdcard/mmcblk0p4MOD
echo "******************************************************"
echo "* press any Key to flash SuperCID *"
echo "* at you own RISK!!!!!!!!! *"
echo "******************************************************"
pause
adb shell "dd if=/sdcard/mmcblk0p4MOD of=/dev/block/mmcblk0p4"
echo "******************************************************"
echo "* current CID *"
echo "******************************************************"
adb shell "getprop ro.cid"
pause
echo "******************************************************"
echo "* press any Key to reboot into Bootloader *"
echo "******************************************************"
pause
adb reboot bootloader
echo "******************************************************"
echo "* reboting into Bootloader *"
echo "******************************************************"
pause
fastboot oem readcid
echo "******************************************************"
echo "* press any key to reboot *"
echo "******************************************************"
pause
fastboot reboot
exit
Click to expand...
Click to collapse
nintendolinky said:
You need ADB and an understanding of how to use it and have a rooted device (although I didn't test this). You will also need a hex editor like HxD.
BACK UP YOUR DATA BEFORE DOING THIS!!!! WHEN HTCDEV UNLOCKS YOUR DEVICE YOU MUST START FROM SCRATCH!!!
1. Fire up your command prompt and go to the directory that you have ADB installed to. Type "adb shell" and hit enter.
2. Type "su" and hit enter. You now have root privileges.
3. Next type "dd if=/dev/block/mmcblk0p4 of=/sdcard/mmcblk0p4" and hit enter. This will dump the partition to your sdcard.
4. Next type "exit", hit enter, type "exit", and hit enter again. This should take you back to a command prompt for your computer.
5. type "adb pull /sdcard/mmcblk0p4" and hit enter. NOTE THE SIZE OF THE FILE BEFORE THE NEXT STEP!
6. Open the file (mmcblk0p4) with your hex editor.
7. Look for the area that contains the CID with your IMEI number attached to it.
8. Change your CID to 11111111 and save the file as mmcblk0p4MOD. This will give you SuperCID. MAKE SURE AT THIS POINT THAT THE FILE IS THE EXACT SIZE IT WAS BEFORE YOU HEX EDITED IT!
9. Now go back to your command prompt and type "adb push mmcblk0p4MOD /sdcard/mmcblk0p4MOD" and hit enter.
10. Type "adb shell" and hit enter then type "su" and hit enter again. This will put you back into the android shell and give you root privileges.
11. Type "dd if=/sdcard/mmcblk0p4MOD of=/dev/block/mmcblk0p4" and hit enter. To test if it worked restart the phone into fastboot (type "adb reboot bootloader" and hit enter) and once the bootloader screen comes up type "fastboot oem readcid" and hit enter. It should read "11111111".
I have modified my file as I had the O2__001 CID and it changed successfully, with the same file size etc, I am now just kind of crapping my self to test it by continuing onto step 9.
So do people think it will work, and or ready to risk it.
Click to expand...
Click to collapse
Respect for trying anyway
Sent from my HTC One using xda app-developers app
I will probably try other methods as we might be pulling the wrong file from the device.
Sent from my M7 using Tapatalk 2
Stop trying this, CID partition is write protected. You have to figure out a way to crack that or bypass it first.
Hunt3r.j2 said:
Stop trying this, CID partition is write protected. You have to figure out a way to crack that or bypass it first.
Click to expand...
Click to collapse
That's correct. I have contacted Beaups, he's the one who got s-off for the DNA/Butterfly. I'm going to see if he can teamview around on my device to look for exploits.
Hello every one,
I am using the latest nightly bild from CM10.1 and I am trying to install GPSCountryOptimizer app with adb but all the time it give me error INSTALL_FAILED_INVALID_APK ?
Can anyone please explain me what do I need to do? Also tried to wipe devlik after copying the same app in system folder and setting permissions as well but no use.
Thanks.
sPEADy said:
Hello every one,
I am using the latest nightly bild from CM10.1 and I am trying to install GPSCountryOptimizer app with adb but all the time it give me error INSTALL_FAILED_INVALID_APK ?
Can anyone please explain me what do I need to do? Also tried to wipe devlik after copying the same app in system folder and setting permissions as well but no use.
Thanks.
Click to expand...
Click to collapse
check settings in Developer Options about adb. may be you do not have some check point there...
also uncheck <verify application> and check <unknown sources> and try again
gtdaniel said:
check settings in Developer Options about adb. may be you do not have some check point there...
also uncheck <verify application> and check <unknown sources> and try again
Click to expand...
Click to collapse
Thanks for your quick reply. I have checked USB Debugging, Debugging over network is unchecked, Apps over USB checking is unchecked.
It should be right or maybe I am wrong.
With the Following Process it worked out how to install the unsigned apps.
Here are a couple of different options to try.
For both options you will need to put the gallery apk into the same directory as your sdk install. (if you don't know what this is try to pull a file from your device and see where it ends up. Mine is /AndroidSDK/tools because I installed the SDK in the /AndroidSDK directory on my PC)
with all of the commands to type below ignore the single quotes (')
*Install from PC*
1) connect your phone and make sure adb can detect it.
- Launch command prompt
- Navigate to your sdk directory
- type 'adb devices' - you should now see your device listed.
2) Go back to the command prompt and type 'adb install [apk name.apk]
3) You should now see a success message, if you it fails try my other option below.
*Manually place APK into /system/app*
1) connect your phone and make sure adb can detect it.
- Launch command prompt
- Navigate to your sdk directory
- type 'adb devices' - you should now see your device listed.
2) push gallery apk to your sd card.
-type 'adb push [apk name.apk] /sdcard/[apk name.apk]
3) Launch a second command prompt
-type 'adb shell'
-type 'su'
-type 'mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system'
4) go back to first command prompt
-type 'adb shell'
-type 'su'
-type 'cd /system/app'
-type 'cp /sdcard/[apk name.apk] [apk name.apk]'
-command prompt will show 'cp /sdcard/[apk name.apk] [apk name.apk]'
-type 'exit' (this will get you out of su)
-type 'exit' again (this should get you out of adb shell)
-type 'exit' again (this should close the command prompt)
5) go back to first command prompt
-type 'exit' (this will get you out of su)
-type 'exit' again (this should get you out of adb shell)
-type 'adb reboot' (this will reboot your phone)
-type 'exit' again (this should close the command prompt)
You may not need to do this in 2 command prompts, but for some reason I've had issue using just one before.
one of these should work.
Thanks to ezun for so detailed post.
Having the same problem here with the PwnMyMoto rooting file. Thing is, the Droid maxx does not have a sd card. Should I just type "System" instead of sdcard in the command?
I'm on the last step of mjphillips1981's mac toolkit for 4.4 rooting and it won't finish:
Code:
Press ENTER to finish the SlapMyMoto process.
Open a new terminal window by pressing Command+N
In the new terminal window type the following command
./adb shell echo "/data/local/tmp/install.sh" > /sys/kernel/uevent_helper
Press ENTER when you have finished the above command
I keep getting the error:
Code:
-bash: /sys/kernel/uevent_helper: No such file or directory
I've been at this all day
try this
open terminal
cd to the toolkit folder
type the following (one line at a time)
./adb shell
echo "/data/local/tmp/install.sh" > /sys/kernel/uevent_helper
I think these lines need to be separated.
Hit me up on Google+ and lets see if we can work through this.
An I would suggest that you put questions in the toolkit thread. I was just browsing and noticed this. If you put the question in the thread I get an email.
nwinston96 said:
I'm on the last step of mjphillips1981's mac toolkit for 4.4 rooting and it won't finish:
Code:
Press ENTER to finish the SlapMyMoto process.
Open a new terminal window by pressing Command+N
In the new terminal window type the following command
./adb shell echo "/data/local/tmp/install.sh" > /sys/kernel/uevent_helper
Press ENTER when you have finished the above command
I keep getting the error:
Code:
-bash: /sys/kernel/uevent_helper: No such file or directory
I've been at this all day
Click to expand...
Click to collapse
nwinston96 said:
I'm on the last step of mjphillips1981's mac toolkit for 4.4 rooting and it won't finish:
Code:
Press ENTER to finish the SlapMyMoto process.
Open a new terminal window by pressing Command+N
In the new terminal window type the following command
./adb shell echo "/data/local/tmp/install.sh" > /sys/kernel/uevent_helper
Press ENTER when you have finished the above command
I keep getting the error:
Code:
-bash: /sys/kernel/uevent_helper: No such file or directory
I've been at this all day
Click to expand...
Click to collapse
missed some commands it looks like but im not sure if anything is diffrent because your on a mac
but here is the step by step from jcase's thread
Step1)
Unzip SlapMyMoto-1,0.zip and push the jar file to your internal storage
Code:
adb push SlapMyMoto.jar /sdcard/SlapMyMoto.jar
Step2)
Use http://www.cydiaimpactor.com/ to open up a telnet session as system user on port 2222. We covered how to use Impactor and telnet in the RockMyMoto root, I won't be covering it again since this post is going to be long enough already, see here -> http://forum.xda-developers.com/show....php?t=2509590 or http://rootzwiki.com/topic/107098-ro...the-first-ota/
Connecting over telnet, and run Stage1 with this command:
Code:
dalvikvm -cp /sdcard/SlapMyMoto.jar SlapMyMoto
When the device tells you to reboot, do this manually with "adb reboot" or your power button. It will not auto reboot on this step
Step3)
Once the device has rebooted, run Impactor again and connect over telnet just like in the previous step, then run the same command
Code:
dalvikvm -cp /sdcard/SlapMyMoto.jar SlapMyMoto
Once the device has rebooted, please take the 4.4 OTA.
Step4)
Now that we are on 4.4, we can finish the process with adb shell:
Code:
adb shell
cp /sdcard/install.sh /data/local/tmp/install.sh
chmod 755 /data/local/tmp/install.sh
echo "/data/local/tmp/install.sh" > /sys/kernel/uevent_helper
dray_jr said:
missed some commands it looks like but im not sure if anything is diffrent because your on a mac
but here is the step by step from jcase's thread
Step1)
Unzip SlapMyMoto-1,0.zip and push the jar file to your internal storage
Code:
adb push SlapMyMoto.jar /sdcard/SlapMyMoto.jar
Step2)
Use http://www.cydiaimpactor.com/ to open up a telnet session as system user on port 2222. We covered how to use Impactor and telnet in the RockMyMoto root, I won't be covering it again since this post is going to be long enough already, see here -> http://forum.xda-developers.com/show....php?t=2509590 or http://rootzwiki.com/topic/107098-ro...the-first-ota/
Connecting over telnet, and run Stage1 with this command:
Code:
dalvikvm -cp /sdcard/SlapMyMoto.jar SlapMyMoto
When the device tells you to reboot, do this manually with "adb reboot" or your power button. It will not auto reboot on this step
Step3)
Once the device has rebooted, run Impactor again and connect over telnet just like in the previous step, then run the same command
Code:
dalvikvm -cp /sdcard/SlapMyMoto.jar SlapMyMoto
Once the device has rebooted, please take the 4.4 OTA.
Step4)
Now that we are on 4.4, we can finish the process with adb shell:
Code:
adb shell
cp /sdcard/install.sh /data/local/tmp/install.sh
chmod 755 /data/local/tmp/install.sh
echo "/data/local/tmp/install.sh" > /sys/kernel/uevent_helper
Click to expand...
Click to collapse
These commands are all in the toolkit. The only one that needed to be enter on individual lines is the one he listed.
I just wish he would have posted the question in the Toolkit thread so I could have helped earlier.
mjphillips1981 said:
These commands are all in the toolkit. The only one that needed to be enter on individual lines is the one he listed.
I just wish he would have posted the question in the Toolkit thread so I could have helped earlier.
Click to expand...
Click to collapse
Ok I have the toolkit for Windows but I'm not familiar with the Mac one thanks for correcting my mistake and getting him
Sent from my XT1056 using XDA Premium 4 mobile app
mjphillips1981 said:
try this
open terminal
cd to the toolkit folder
type the following (one line at a time)
./adb shell
echo "/data/local/tmp/install.sh" > /sys/kernel/uevent_helper
I think these lines need to be separated.
Hit me up on Google+ and lets see if we can work through this.
An I would suggest that you put questions in the toolkit thread. I was just browsing and noticed this. If you put the question in the thread I get an email.
Click to expand...
Click to collapse
Thanks, I think this did it. The only thing is that I had to manually reboot my phone, but it appears I am rooted as I'm able to run root-only apps. XDA wouldn't let me post on your thread because I don't have the required number of posts. Glad you came across this thread! Thanks again
nwinston96 said:
Thanks, I think this did it. The only thing is that I had to manually reboot my phone, but it appears I am rooted as I'm able to run root-only apps. XDA wouldn't let me post on your thread because I don't have the required number of posts. Glad you came across this thread! Thanks again
Click to expand...
Click to collapse
You're welcome! From what I read. Some people do experience that the phone does not reboot on its own.
Glad you got it working.
I just removed the toolkit. It's too hard to for me to get things working correctly when I do not have a consumer device to test with.