|
win7下系统盘的权限比较特殊。即使你是管理员。。也不能随便替换系统文件。。此处通过一些命令来实现。。把记事本替换为notepad2...脚本如下: 本高亮代码使用codeHl生成,查看详情 @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
已经打包好的替换脚本和程序在http://www.r 注意:一定要先解压再使用 |


