简单的把win7下把记事本替换为notepad2
4468 点击·0 回帖
![]() | ![]() | |
![]() | in7下系统盘的权限比较特殊。即使你是管理员。。也不能随便替换系统文件。。此处通过一些命令来实现。。把记事本替换为notepad2...脚本如下: @echo off takeown /f c:\windows\notepad.exe takeown /f c:\windows\system32\notepad.exe echo 在此之前。。请保存所有正打开的记事本文件。。 pause echo 正在结束记事本进程... taskkill /f /im notepad.exe 2>nul echo 备份系统记事本到C盘... copy /y %windir%\notepad.exe c:\ icacls %windir%\notepad.exe /grant %username%:f /t icacls %windir%\system32\notepad.exe /grant %username%:f /t copy /y notepad.exe %windir% copy /y notepad.exe %windir%\system32 echo 替换完成 notepad已经打包好的替换脚本和程序下载:点击下载 | |
![]() | ![]() |