我十分喜欢瞎弄我的
计算机。特别是Win98,所以十天装一次系统很平常。
但是我也发现不少秘密^-^
下面是在Windows98下自动启动程序的10种方法。
1. Autostart 文件
C:Windowsstart menuprogramsstartup {chinese/english}
在注册表中的位置:
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerShell
Folders Startup="C:Windowsstart menuprogramsstartup"
所以它将很容易被程序更改
2. Win.ini
[Windows]
load=file.exe
run=file.exe
3. System.ini [boot]
Shell=Explorer.exe file.exe
5. Registry键
[HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunServices]
[HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunServicesOnce]
[HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRun]
[HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunOnce]
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRun]
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunOnce]
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunServices]
6. c:WindowsWininit.ini
一旦运行就被Windows删除,安装的setup程序常用
Example: (content of Wininit.ini)
[Rename]
NUL=c:Windowspicture.exe
例子:将c:Windowspicture.exe设置为NUL, 表示删除它,完全隐蔽的执行!
7. Autoexec.bat
在DOS下每次自启动
这些"%1 %*"需要被赋值, 如果将其改为 "server.exe %1 %*",server.exe将在每次启动时被执行,这些exe/pif/com/bat/hta等文件都可被执行 [HKEY_CURRENT_USERSoftwareMirabilisICQAgentApps
当icq发现网络连接时,将被执行(我使用的icq2000b的键值有所不同,但您可以自行查找) 9. 杂项说明找找以下的键值:
[HKEY_LOCAL_MACHINESoftwareCLASSESShellScrap]
@="Scrap object" "NeverShowExt"=""
NeverShowExt 键 可以隐藏SHS文件的扩展名.shs
如果你将一个文件改名为:"abc.jpg.shs" 它只显示"abc.jpg"
如果你的注册表里有很多NeverShowExt键值,删除他们。
注意:
这些方法不能全部适应Win2K,但您可以自行检测. 如有什么地方不对,还希望各位高手指教。