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开始 – 注意,你可以使用一个空格,但它必须是某种东西.)

相关文章

Windows2012R2备用域控搭建 前置操作 域控主域控的主dns:自...
主域控角色迁移和夺取(转载) 转载自:http://yupeizhi.blo...
Windows2012R2 NTP时间同步 Windows2012R2里没有了internet时...
Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...