如何回答批处理文件

如何回答批处理文件

我在恢复过程中丢失了管理员权限。我了解到超级管理员上网并使用命令行获得访问权限。我收到了回复:The syntax of this command is:然后它列出了

NET USER [user password  : * ] [options] ] [/DOMAIN] 
username {password : * } / [options] [DOMAIN] 
username [/DELETE] [/DOMAIN] 
username [/TIMES: { times : ] ALL } 
username [/ACTIVE : {YES : NO } 

c: 问什么?我该如何回答?

答案1

  1. 启动 CD Windows Vista/7/8 并等待语言选择对话框

  2. Shift+ F10- 运行cmd

  3. 运行notepad并打开文件,查看逻辑磁盘,并使用操作系统查找磁盘名称。或使用命令搜索磁盘名称:

    bcdedit /enum| find /I "os"
    
  4. 进入 system32 目录

    cd /d <OS disk name>:\W*\s*32
    
  5. 改名

    ren Utilman.exe *2.*
    
  6. 替换 Utilman.exe

    copy cmd.exe Utilman.exe
    
  7. 重启,然后启动到HDD

  8. 在登录屏幕上单击Ease of Access Center图标。 - 它cmdSystem右侧运行 - 在操作系统上最大右侧。

  9. 在 中cmd创建用户:

    net user /add <UserName> <Password>
    
  10. 查看本地组:

    net localgroup
    
  11. 将用户添加到管理员组:

    net localgroup Administrators /add <UserName>
    
  12. 重新启动并登录并cmd以管理员身份运行

  13. 恢复实用程序.exe

    del Utilman.exe *2.*
    

ren Utilman2.exe Utilman.exe
  1. 将管理员组和用户设置为所有者磁盘 C:

    cd \
    

TAKEOWN /F C:\ /R /A /D Y
  1. 重置 NTFS 安全设置:

    icacls * /T /Q /C /RESET
    
  2. 恢复安全设置:

    secedit /configure /cfg %windir%\inf\defltbase.inf /db defltbase.sdb /verbose
    
  3. 重启

相关内容