微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

windows – 如何从命令promt title中删除’Administrator:’

Windows Vista中,有没有办法从命令提示符窗口的标题删除管理员:”一词?

‘title’命令只是在’Administrator:’之后更新部件,因此不会这样做.

这里还有两种可能性:

>使用Windows XP中的cmd.exe
>修改cmd.exe的MUI数据:

You’ll need to modify the MUI data
file for cmd.exe. This file is
called cmd.exe.mui,and is located in
C:\Windows\System32\en-US on a
standard 32-bit,United States
installation. For other languages,
the en-US will be different,and for
64-bit installations,you’ll need to
modify both the version in System32
and in SysWOW64.

  • First off,take ownership of cmd.exe.mui. Right-click on the file,
    click Advanced on the security tab.
    On the Owner tab,click Edit,and
    select the Administrators account.

  • Now,give access to modify the file. Go back into the properties for the
    file,click Edit on the Security tab,
    click Add,and enter Administrators,
    then make sure they have the Full
    Control option set to Allow.

  • Using a hex editor,resource editor,or other editor of your choice,modify
    the string in the file from
    “Administrator: %0” to “ %0” (That’s
    two spaces before the %0,don’t forget
    the null character at the end).

  • Save the file

  • Run mcbuilder.exe (this Could take some time to run)

  • Reboot the computer.

(从this thread开始 – 注意,你可以使用一个空格,但它必须是某种东西.)

原文地址:https://www.jb51.cc/windows/369290.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐