替换系统自带的记事本
系统自带的记事本功能比较弱,所以一般我会选择使用notepad2.exe来替代它。
原理就是将notepad2.exe覆盖系统自带的notepad.exe文件,写好bat双击运行即可…
安装完成后,在开始->运行窗口中输入 “notepad“,查看替换后的效果
bat代码:
@echo off
set notepad_path=%~dp0notepad.exe
set file_1=%SystemRoot%\notepad.exe
set file_2=%SystemRoot%\system32\notepad.exe
set file_3=%SystemRoot%\system32\dllcache
echo 开始处理...
copy "%notepad_path%" %file_1%
copy "%notepad_path%" %file_2%
copy "%notepad_path%" %file_3%
echo 处理完成...
pause
参考:【转】使用 notepad2 替换xp系统记事本(notepad)的方法