Showing posts with label v. Show all posts
Showing posts with label v. Show all posts

Friday, December 16, 2016

SAMSUNG PC SUIT V 2 9 15 5 FULL LATEST VERSION

SAMSUNG PC SUIT V 2 9 15 5 FULL LATEST VERSION


SAMSUNG PC SUITE V 2.9.15.5 FULL LATEST VERSION New 2016.

Download Now

Go to link download

Read more »

Wednesday, December 14, 2016

Setup File UFST Samsung V 2 3 0 5 build 70 released 22 03 2016 Free Download Here 100

Setup File UFST Samsung V 2 3 0 5 build 70 released 22 03 2016 Free Download Here 100


UFST Samsung V 2.3.0.5 build 70 released 22-03-2016


ANDROID for UFST and UFS Turbo Only

New Products added (Total, more than 1405 models)

Full Support added for:

J105B, J105F, J105F-DS, J105H, J105M, J105M-DS, J111F, J120H,

J320F, J320F-DS, J320FN, J320H, J320M, J320M-DS, J320YZ,

S7275Y,

T280, T285

Partial (Test) Support added for:

A310N0, A5108, A510K, A510L, A510M-DS, A510S, A7108, A710K,

A710L, A710M-DS, A710S,

G9300, G9308, G930A, G930AZ, G930F, G930F-DS, G930K, G930L,

G930P, G930R4, G930R7, G930S, G930T, G930T1, G930V, G930W8,

G930X, G9350, G935A, G935F, G935F-DS, G935K, G935L, G935P,

G935R4, G935S, G935T, G935V, G935W8, G935X,

J120F-DS, J320P,

T375L, T375S, T3777, T377V, T677NK, T677NL, T677V

For Android Model Details see Samsung_Android_Info document.

Samsung Android supported models & feature

or inside

X:Program Files (x86)SarasSoftUFSDocuments

X:Program FilesSarasSoftUFSDocuments

Corresponding Full Factory Flash files on Support.

 hanks a lot team how about Frist of all A Very Very Happy New Year 2016 to all UFST Users.

Here are some screen shots from upcoming Android UFST software.

LG E410i FILE EXTRACT

 

ANDROID for UFST and UFS Turbo Only

New Products added (Total, more than 1405 models)

Full Support added for:

J105B, J105F, J105F-DS, J105H, J105M, J105M-DS, J111F, J120H,

J320F, J320F-DS, J320FN, J320H, J320M, J320M-DS, J320YZ,

S7275Y,

T280, T285

Partial (Test) Support added for:

A310N0, A5108, A510K, A510L, A510M-DS, A510S, A7108, A710K,

A710L, A710M-DS, A710S,

G9300, G9308, G930A, G930AZ, G930F, G930F-DS, G930K, G930L,

G930P, G930R4, G930R7, G930S, G930T, G930T1, G930V, G930W8,

G930X, G9350, G935A, G935F, G935F-DS, G935K, G935L, G935P,

G935R4, G935S, G935T, G935V, G935W8, G935X,

J120F-DS, J320P,

T375L, T375S, T3777, T377V, T677NK, T677NL, T677V

For Android Model Details see Samsung_Android_Info document.

Samsung Android supported models & feature

or inside

X:Program Files (x86)SarasSoftUFSDocuments

X:Program FilesSarasSoftUFSDocuments

Corresponding Full Factory Flash files on Support.

This update has many bugs

A300fu cant even unlocked


Go to link download

Read more »

Mounting NTFS in Xperia Neo V via USB OTG Read Write both

Mounting NTFS in Xperia Neo V via USB OTG Read Write both


For newer devices (I dont know how to categorize them, maybe 2012 devices) its easy to mount any filesystem in both R/W mood for Xperia series. But a little older devices (maybe all the others?) its not so easy. Some support it partially and some dont (totally). My phone is Xperia Neo V and it doesnt seem to support that. Had a hard time to find this workaround but its effective, FINALLY !!! :D
To mount NTFS in full support you need two things. A set of modules and the mount script. How to do that follows.
Pre-requisites:
1. Rooted device (you can find tutorials on that)
2. CWM installed (you can use X-Parts from Play Store
3. Script Manager

Steps:
1. First download this file. It is the ntfs-3g modules set compiled for Android.
2. Copy the zip to your SD-Card, in a folder that you can easily recognize by name
3. Reboot into recovery, to do this first turn your phone off. Then power it up and wait for the Sony Logo. When it comes keep pressing the volume down key repeatedly (the key maybe different for another device, do a little Googling to know which).
4. Now youre in CWM (hopefully, youll see screen with a list of things). Choose install zip from sdcard. Choose the zip file from the sdcard. It will show some messages. If all goes well the last line should be something like "....done"
5. Now supposing the modules have been installed correctly copy this script and save it with the name "MountScript.sh" in your SD-card.

#!/system/bin/sh
#
# Mount USB OTG NTFS Storage device - shardul_seth@xda
# Mount point checking added by - tafhim

# load fuse support
if [ ! -e /system/lib/modules/fuse.ko ]; then
busybox echo -e "WARNING: fuse module not found! Is fuse built into kernel?"
else
insmod /system/lib/modules/fuse.ko
fi

# mount partitions
sdn=0
ls -l /dev/block/sd??
if [ $? -eq 0 ]; then
for sd in `ls /dev/block/sd??`; do
if [ -d "/sdcard/usb_drive_$sdn" ]; then
umount /sdcard/usb_drive_$sdn
rm -R /sdcard/usb_drive_$sdn
fi
if [ ! -d "/sdcard/usb_drive_$sdn" ]; then
mkdir /sdcard/usb_drive_$sdn
chmod 777 /sdcard/usb_drive_$sdn
ntfs-3g -o umask=0 $sd /sdcard/usb_drive_$sdn
if [ $? -ne 0 ]; then
busybox mount -o umask=0 $sd /sdcard/usb_drive_$sdn
echo "$sd mounted on /sdcard/usb_drive_$sdn"
else
echo "$sd (NTFS) mounted on /sdcard/usb_drive_$sdn"
fi
sdn=`expr $sdn + 1`
if [ ! -z $SM_VERSION ]; then echo showToastLong "$sdn Drives mounted!" >&$SM_GUIFD; fi
fi
done
else
echo "No drive found! Exiting.."
if [ ! -z $SM_VERSION ]; then echo showToastLong "No drive found! Exiting.." >&$SM_GUIFD; fi
exit 1
fi
exit 0
6. Connect your drive using the OTG cable.
7. If not installed download Script Manager from the Play Store. Run it and browse to the place where you saved the script. Select it
8. You dont have to change anything just select the "su" option that has an Android Skull (Pirate-ish) over it. Now select "Run" from the top-most menu.
9. If you see the message "1 drive mounted" or similar, youre done. Just go to the SD-card and drag down and youll see the folder "usb_drive_0". If you have multiple partitions, all will be mounted.

You need to do all these only the first time. From later on, you only need to follow steps 6-9 only :)

For help on rooting / CWM Installation / etc head over to XDA Developers Forum.
For help on using FlashTool in Linux read this.

Xperia Neo V specific stuff:
Some nice kernels for Xperia Neo V are the Suave Kernel, the Super Stock Kernel and the Alliance Kernel MOD.
You can download kernel .562 and kernel .587 for Xperia Neo V MT11i. You need these to root your device using this method
The DooMLord rooting kit (windows) is available here
The DooMLord rooting kit (linux) is available here
The CWM Installer (windows) is available here
X-Parts apk is available here


Go to link download

Read more »

Monday, December 12, 2016

UFS Hwk V 2 3 0 8 Full And Final Update Download

UFS Hwk V 2 3 0 8 Full And Final Update Download



UFS Hwk V 2.3.0.8 is a Phone flash software. UFS Hwk V 2.3.0.8 remake New phon.

UFS Hwk V 2.3.0.8 Full And Final Update Download
Download UFS PANEL 2.3.08 Full And Final.zip

Go to link download

Read more »

Tuesday, November 15, 2016

Sigma Software v 2 15 06 released Updated Here 100 Free Download Here

Sigma Software v 2 15 06 released Updated Here 100 Free Download Here



................................Sigma Software v.2.15.06
..............................

.................................................. ..............Qcom Tab:
........1. Direct unlock for the following models:
.........? Alcatel OT-5054 / One Touch POP 3
........? Alcatel OT-5054W / OneTouch Fierce XL
........? Alcatel OT-5065 / One Touch POP 3 (5)
........? Alcatel OT-9007 / One Touch Pixi 7
........? Alcatel OT-9022 / One Touch Pixi 3 8.0
........How to connect: ........power off the phone, connect the USB cable and wait till the diag port appears (5-15 seconds).
........2. Other newly added devices supported for direct unlocking:
.........? Alcatel One Touch Conquest / OT-7046T
........? Alcatel OT-7048x / Go Play
........? SkypePhone AMOI WP-S2


.................................................. ...........Android ADB Tab:
........1. The following smartphones have been added to the list of supported devices:
.........? AVIO SEN-S23 (MT6572)
........? BQ Aquaris 5 HD (MT6589)
........? GFIVE LOGIC X1 (MT6572)
........? Huawei MediaPad T1 10.0 T1-A21L (MSM8916)
........? Lenovo A2010-l (MT6735)
........? Orbis orbis (MT6582)
........? ZTE Blade V580 (MT6735)

........2. Sigma root solution has been updated.

.................................................. ............MTK Tab:
.......1. HUAWEI Y520-u03 added to MTK calculator (unlock via IMEI).
........2. The following phones have been added to the list of supported devices:
.........? Bmobile Tv280 (MT6260)
........? Wiko Minz+ (MT625A)


.......Video tutorial for Alcatel OT-5054 / One Touch POP 3 servicing .......http://www.youtube.com/watch?v=7tVbsO9OFiI
.................................................. .Download Sigma Software v2.15.06


Go to link download

Read more »

Saturday, October 8, 2016

Samsung SM G318HZ Galaxy V Plus Duos Arabic Languse Firmware Download

Samsung SM G318HZ Galaxy V Plus Duos Arabic Languse Firmware Download



Samsung SM-G318HZ Galaxy V Plus Duos Arabic Languse Firmware Download
How To Update Samsung Galaxy SM-G318HZ Arabic Firmware
Arabic ROMs for Samsung SM-G318HZ Galaxy V Plus Duos ( Stock ROMs )
Arabic Stock ROMs for Samsung SM-G318HZ Galaxy V Plus Duos


tested


Information about SM-G318HZ:
As some users know this model is not for Middle East market, So it comes without Arabic support, But it is available in some Arab countries, Many people got this model in hand and they want to get full Arabic support for it, They do not need to use an external App to enable the Arabic LP inside or anything else, That why we made this Stock Arabic ROMs for this model.

Flashing: Use Odin3 flasher to install this Arabic ROMs into SM-G318HZ, Just select the *.tar.md5 file as PDA / AP file, Put the phone into download mode, Connect to USB and click Start button.

Downloads:
- G318HZXXU0AOE4 Arabic ROM ( For SM-G318HZ Old firmware version ): Download 
- G318HZDDU0AOG2 Arabic ROM ( For SM-G318HZ New firmware version ):download


Go to link download

Read more »

Tuesday, October 4, 2016

Full Miracle Box v 2 32 27th April 2016 User Choice Worlds First Features Free Download Here

Full Miracle Box v 2 32 27th April 2016 User Choice Worlds First Features Free Download Here


Miracle Box v 2.32 (27th April 2016) User Choice Worlds First Features...


 

 

 

 

 

 

 

Miracle Box v 2.32 (27th April 2016) User Choice Worlds First Features |Text Version


Miracle Box V2.32
Released on 27th April 2016

1.MTK Add MT6755 Fully Supported Added (Worlds First).
+ Read (Scatter and BIN File) (Worlds First).
+ Write (Scatter and BIN File) (Worlds First).

2.MTK Add MT6755 Repair IMEI/BT Address Support (
Worlds First).
+ Repair IMEI Address Support (Worlds First).
+ Repair Bluetooth Address Support (Worlds First).

3.MTK Add MT6755 Read / Write NV/ ROOT/ Back BPLGUI Support (
Worlds First).
+ Supported Read NV (Worlds First).
+ Supported Write NV (Worlds First).
+ Supported Root Rights (Worlds First).
+ Supported Back BPL GUI Supported (Worlds First).

4.MTK Improve Android Reset Code (EMMC).
+ Some Bug Solved.
+ Fast then Before.
+ Safe Mode added.

5.MTK Add MT6755 Read Pattern / Read Phonebook Support.
+ Fully Supported Read Pattern Code of MTK 6755 Based Mobile.
+ Fully Supported Read Phone Book of MTK 6755 Based Mobile.

6.MTK Add MT6755 Clear Anti-theft / Fix DL Mode support (
Worlds First).
+ Added Anti Theft Code Clear MTK 6755 Based Mobiles
+ Added Anti Dix DL Mode MTK 6755 Based Mobiles

7.MTK Add MT6755 Clear FRP/Mircale AV Support.

+ Single Click FRP Reset Added MTK 6755 Based Mobiles.
+ Supported Android Malware Apps Removed.

8.MTK Add MT6755 Reset Code/Init Modem Support.

+ Supported Reset Code & initializing Modem.

9.MTK Improve Android Read/Write (EMMC).

+ Supported Android Read & Write Emmc faster then Before.

10.MTK/SPD Add Mircale AV Custom Virus Library Support.
+ Add Custom Library Support.

11.SPD Improve Load *.PAC File and Write.
+ Some Bug Solved.
+ Write .Pac with Improved Features.

12.Android Add Sideload ZIP Update System.
+ Now you can Update Sideload zip Flash

Download Miracle Box 2.32 Link

For More Info Please Subscribe Our Facebook Page Link

Br. [SV] Miracle Team

 


Go to link download

Read more »