MTXT390怎么获取vroot权限
你这问题有点奇怪哦~我这有两个方法不知道能不能帮到你额:用手机下载Z4Root,点击直接获取;用电脑下载Fascinate、Universal Androont、One Click ROOT/UnRoot 19000试试吧。手机冲不进电了,htc onev,提示这个,root以后删除了好多系统文件,高分悬赏

相关内容扩展阅读:
如何使用Shell.Application技术
1、创建 Shell 对象var Shell = new ActiveXObject("Shell.Application");
2、使用
Shell
属性及方法
Shell.Application
Shell.Parent
Shell.CascadeWindows()
Shell.TileHorizontally()
Shell.TileVertically()
Shell.ControlPanelItem(sDir)
/* 比如:sysdm.cpl
*/
Shell.EjectPC()
Shell.Explore(vDir)
***.Open(vDir)
Shell.FileRun()
Shell.FindComputer()
Shell.FindFiles()
***.Help()
Shell.MinimizeAll()
Shell.UndoMinimizeALL()
Shell.RefreshMenu()
Shell.SetTime()
Shell.TrayProperties()
Shell.ShutdownWindows()
Shell.Suspend()
oWindows
= ***.Windows() /* 返回ShellWindows对象 */
fFolder = Shell.NameSpace(vDir) /*
返回所打开的vDir的Folder对象 */
oFolder = Shell.BrowseForFolder(Hwnd, sTitle, iOptions
[, vRootFolder]) /* 选择文件夹对话框 */
/*示例:
function BrowseFolder()
{
var
Message = "清选择文件夹";
var Shell = new ActiveXObject( "Shell.Application"
);
var Folder = Shell.BrowseForFolder(0,Message,0x0040,0x11);
if(Folder !=
null)
{
Folder = Folder.items(); // 返回 FolderItems 对象
Folder =
Folder.item(); // 返回 Folderitem 对象
Folder = Folder.Path; //
返回路径
if(Folder.charAt(varFolder.length-1) != "\\"){
Folder = varFolder +
"\\";
}
return Folder;
}
}
*/
/*示例:
var Folder =
Shell.NameSpace("C:\\"); // 返回 Folder对象
*/
3、使用 Folder 对象
[
oApplication = ] Folder.Application // Contains the Application object.
[
oParentFolder= ] Folder.ParentFolder // Contains the parent Folder object.
[
oTitle = ] Folder.Title // Contains the title of the
folder.
Folder.CopyHere(vItem [, vOptions]) // Copies an item or items to
a folder.
Folder.MoveHere(vItem [, vOptions]) // Moves an item or items to
this folder.
/*
vItem: Required. Specifies the item or items to move. This
can be a string that represents a file name, a FolderItem object, or a
FolderItems object.
vOptions Optional. Specifies options for the move
operation. This value can be zero or a
combination of the following values.
These values are based upon flags defined for use with the
fFlags member of
the C++ SHFILEOPSTRUCT structure. These flags are not defined as such for
Microsoft? Visual Basic?, Visual Basic Scripting Edition (VBScript), or
Microsoft JScript?, so you
must define them yourself or use their numeric
equivalents.
4 Do not display a progress dialog box.
8 Give the file
being operated on a new name in a move, copy, or rename operation if a file with
the target name already exists.
16 Respond with "Yes to All" for any
dialog box that is displayed.
64 Preserve undo information, if possible.
128 Perform the operation on files only if a wildcard file name (*.*) is
specified.
256 Display a progress dialog box but do not show the file names.
512 Do not confirm the creation of a new directory if the operation requires
one to be created.
1024 Do not display a user interface if an error occurs.
2048 Version 4.71. Do not copy the security attributes of the file.
4096
Only operate in the local directory. Don't operate recursively into
subdirectories.
9182 Version 5.0. Do not move connected files as a group.
Only move the specified files.
*/
Folder.NewFolder(bName) //
Creates a new folder.
ppid = Folder.ParseName(bName) // Creates and returns a
FolderItem object that represents a specified item.
/*
bName: Required. A
string that specifies the name of the item.
*/
oFolderItems =
Folder.Items() // Retrieves a FolderItems object that represents the collection
of items in the folder.
sDetail = Folder.GetDetailsOf(vItem, iColumn) //
Retrieves details about an item in a folder. For example, its size, type, or the
time of its last modification.
/*
vItem: Required. Specifies the item for
which to retrieve the information. This must be a FolderItem object.
iColumn: Required. An Integer value that specifies the information to be
retrieved. The
information available for an item depends on the folder in
which it is displayed. This value
corresponds to the zero-based column
number that is displayed in a Shell view. For an item in the
file system,
this can be one of the following values:0 Retrieves the name of the item.
1
Retrieves the size of the item.
2 Retrieves the type of the item.
3
Retrieves the date and time that the item was last modified.
4 Retrieves the
attributes of the item.
-1 Retrieves the info tip information for the item.
*/
4、使用 FolderItems 对象
/*示例:
var FolderItems =
Shell.NameSpace("C:\\").Items(); // 返回 FolderItems 对象
*/
[
oApplication = ] FolderItems.Application
[ iCount = ] FolderItems.Count
[
oParent = ] FolderItems.Parent
oFolderItem = FolderItems.Item([iIndex])
// 返回 FolderItem 对象
5、使用 FolderItem 对象
/*示例:
var FolderItem =
Shell.NameSpace("C:\\").Items().Item(iIndex); // 返回 FolderItems
对象
*/
[ oApplication = ] FolderItem.Application
[ oParent = ]
FolderItem.Parent
[ sName = ] ***.Name(sName) [ = sName ]
[ sPath =
] FolderItem.Path
[ iSize = ] FolderItem.Size
[ sType = ]
FolderItem.Type
[ bIsLink = ] FolderItem.IsLink
[ bIsFolder = ]
FolderItem.IsFolder
[ bIsFileSystem = ] FolderItem.IsFileSystem
[
bIsBrowsable = ] FolderItem.IsBrowsable
[ oGetLink = ] FolderItem.GetLink //
返回 ShellLinkObject 对象
[ oGetFolder = ] FolderItem.GetFolder // 返回 Folder
对象
[ oModifyDate= ] FolderItem.ModifyDate(oModifyDate) [ = oModifyDate ] //
Sets or retrieves the date and time that the item was last modified.
vVerb = FolderItem.Verbs() // 返回 FolderItemVerbs 对象. This object is the
collection of verbs
that can be executed on the
item.
FolderItem.InvokeVerb( [vVerb]) // Executes a verb on the
item.
6、使用 FolderItemVerbs 对象
/*示例:
var FolderItem =
Shell.NameSpace("C:\\").Items().Item(iIndex).Verbs(); // 返回 FolderItems
对象
*/
[ oApplication = ] FolderItemVerbs.Application
[ oParent = ]
FolderItemVerbs.Parent
[ iCount = ] FolderItemVerbs.Count
oVerb =
FolderItemVerbs.Item( [iIndex]) // 返回 FolderItemVerb 对象.
7、使用
FolderItemVerb 对象
/*示例:
var FolderItem =
Shell.NameSpace("C:\\").Items().Item(iIndex).Verbs().Item(iIndex); // 返回
FolderItems 对象
*/
[ oApplication = ] FolderItemVerbs.Application
[
oParent = ] FolderItemVerbs.Parent
[ oName = ]
***.Name
FolderItemVerb.DoIt() // Executes a verb on the
FolderItem associated with the verb.
8、使用 ShellLinkObject 对象
[
sWorkingDirectory = ]ShellLinkObject.WorkingDirectory(sWorkingDirectory) [ =
sWorkingDirectory ]
[ intShowCommand =
]ShellLinkObject.ShowCommand(intShowCommand) [ = intShowCommand
]
/*
intShowCommand Integer that specifies or receives the link's show
state. This can be one of the
following values.
1 Activates and displays
a window. If the window is minimized or maximized, the system restores
it to
its original size and position.
2 Activates the window and displays it as a
minimized window.
3 Activates the window and displays it as a maximized
window.
*/
[ sArguments = ] ShellLinkObject.Arguments(sArguments) [ =
sArguments ]
[ sDescription = ] ShellLinkObject.Description(sDescription) [ =
sDescription ]
[ iHotkey = ] ShellLinkObject.Hotkey(iHotkey) [ = iHotkey
]
/*
iHotkey Integer that specifies or receives the link's hot key code.
The virtual key code is in
the low-order byte, and the modifier flags are in
the high-order byte. The modifier flags can be a
combination of the
following values.
1 SHIFT key
2 CTRL key
4 ALT key
8 Extended key
*/
[ sPath
HTConev开机*怎么关?
Root权限
,用RE管理器打开
system/media/audio/ui
这个文件夹存放的就是系统的各种效果音乐,
删除*camera*.ogg
(记不清文件名了,因为删掉了)拍照声音就删除了,BootSound就是开机音乐,删除开机就没有声音了
HTC One X root图文教程
刚买到新手机的同学是否想马上root呢?本教程为大家介绍HTC One X root方法,不需要刷机就可以得到你想要的东西,那么我们就一起来看看吧。
HTC One X root教程开始:
第一步:根据帖子HTC全机型傻瓜解锁刷机工具解锁你的HTC One X文章内将工具、教程、如何辨别等都写的非常明白。这里就不多做介绍了。
第二步:根据以前HTC One X S720e详细刷机教程,刷Recovery教程,HTC小白刷机教程中介绍的刷入RECOVERY
注意:不用刷ROM。只参考刷入recovery。
第三步:下载root卡刷包,并放入手机内存根目录。
第四步:手机进入recovery界面刷入单刷包。
具体方法:
[1] 手机取消快速重启(设置--电源--快速启动勾选去掉)
HTC One X root教程
[2] 手机关机 按住“音量减”+“电源” 进入hboot界面
HTC One X root教程
[3] “音量键减” 选择recovery,“电源键”确认,进入recovery界面
HTC One X root教程
[4] 选择单刷包刷入手机(选择更新--从SD卡选择升级包--选择CWN-SuperSU-v0.87.zip)
HTC One X root教程
本步骤中音量键上下选择电源键为确认键
[5] 重启手机(返回recovery主页面,选择重启系统)
HTC One X root教程
第五步:享受你的HTC one X root权限吧!
HTC One X root教程
HTCOne X root后问题解决办法:
HTC One X的官方解锁已经放出,但是官方解锁是显示(unlocked+ S-ON)的,机器刷机是无法写入boot分区的,导致boot与system不匹配,机子出现wifi连接错误、卡屏、无限重启等问题。今天就帮助大家解决这个问题同时搞定HTC One X root。所以一般的解决方法是刷好ROM后,再刷一次boot.img(boot分区信息)才算真正完成刷机。
具体做法:
第一种情况:刷完ROM能进入系统(只是WIFI错误)
1.下载boot.rar,并解压到任意位置
2.打开USB调试模式,确保手机正常开机并且数据线连接电脑
3.从要刷的ROM中提取(或解压提取)出boot.img放到一键写入boot文件夹下
HTC One X root教程
HTC One X root教程
4.双击运行fastboot一键刷入boot.bat 出现以下内容即完成了, 而这个才是你最终能HTC One X root的基础。
HTC One X root教程
第二种情况:刷完ROM不能进入系统(卡屏无限重启)
1.下载adb.rar,并解压到C盘根目录下
2.和第一种情况的方法一样,提取boot.img后,放到C:adb文件夹下
3.关机,长按音量减+电源键进入bootloader,连接电脑,待显示 fastboot u* 即可
(若不会自动切换的短按电源键切换即可)
4.按下电脑上的windows+R,输入cmd然后回车。在cmd窗口中输入cd c:adb 回车 然后输入fastboot flash boot boot.img,显示finished就成功刷入boot了
这样不论你是HTC One X root还是HTC One X刷机,都不会出现boot问题,如果你也在HTC One X root或刷机的时候被这个问题困扰,那么赶紧试一试吧。














