daker's profile亡者归来--达百无聊赖的颓废生活PhotosBlogLists Tools Help

阿达的魔幻计数器

西安地区天气时报

阿达的魔幻计数器

daker sun

Occupation
Location
Interests
双鱼座,有点帅,有点色,有点BT,有点矬,路过的美女请小心,走过路过别错过。

Windows Media Player

亡者归来--达百无聊赖的颓废生活

——马桶行者的故事
Photo 1 of 4

考试通过了

考试过了,可我完全高兴不起来,给她发短信分享我的喜悦,可就好象石沉大海,没了音信。晚上和朋友庆祝,谈到她最近的种种,得到的结论是一致的,她根本不爱我。我果然不适合谈恋爱啊~~~

唯一值得慰寞的,这些天的学习很充实,尽管一切的开始都是因为她的存在,即便她不爱我,起码我的这个决定是正确的。努力吧~~

明天考试

预约到明天早晨10点半,640-802,题目看完了,PASS应该没问题,要是过不了,那我可丢人丢大了。

对于她,我现在尽力不去想,我不想考前方寸大乱,现在唯一要做的就是静心。完全进入安静的状态,为了她,也为了自己。

情绪低落

失意啊~~~惆怅啊~~~~一切都因为她~~~~越发的觉得自己深陷泥潭无法自拔了~~

归来

掐指一算,居然有大半年没更新过这里了,期间自然发生了许多事,包括一段过去的感情,一些愉快或者不愉快的经历,然后我又再次恋爱了。带着甜蜜归来这片曾经另人神伤的土地。
总而言之,我回来了......

XP优化的脚本

今天比较闲,给某个经常格盘的白痴写的- -+
如果用到无线网卡 把红色那行删除
如果通过路由器上网 最好把黄色那部分删除.如果能确定自己使用的是静态IP 那就不用删了..
保存成.bat格式或者.cmd格式执行就自动优化系统了.
另外要说的是,服务项目我没加注解,注册表部分加注解了,自己看去,觉得不合适的删掉在保存执行..


@echo off
regsvr32 /u zipfldr.dll
rem 删除WIN自带压缩组件
echo  关闭服务,正在处理中......
SC config WZCSVC start= disabled >nul
SC config Alerter start= disabled >nul
SC config ALG start= disabled >nul
SC config wuauserv start= disabled >nul
SC config clipsrv start= disabled >nul
SC config EventSystem start= disabled >nul
SC config Dhcp start= disabled >nul
SC config ERSvc start= disabled >nul
SC config helpsvc start= disabled >nul
SC config HidServ start= disabled >nul
SC config ImapiService start= disabled >nul
SC config CiSvc start= disabled >nul
SC config Messenger start= disabled >nul
SC config Netlogon start= disabled >nul
SC config NetDDE start= disabled >nul
SC config NetDDEdsdm start= disabled >nul
SC config Spooler start= disabled >nul
SC config RemoteRegistry start= disabled >nul
SC config RemoteAccess start= disabled >nul
SC config lanmanserver start= disabled >nul
SC config SSDPSRV start= disabled >nul
SC config SENS start= disabled >nul
SC config srservice start= disabled >nul
SC config TermService start= disabled >nul
SC config Themes start= disabled >nul
SC config UPS start= disabled >nul
SC config SharedAccess start= disabled >nul
echo  服务优化处理完毕,请按任意键继续...
pause >nul
echo 正在导入注册表,请稍后......
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer /v AlwaysUnloadDLL /t reg_dword /d 00000001 /f
rem 不加载多余的DLL
reg add HKEY_CURRENT_USER\Control Panel\Desktop /v MenuShowDelay /t reg_sz /d 0 /f
rem 加快菜单显示速度
reg  add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters /v EnablePrefetcher /t reg_dwdord /d 00000001 /f
rem 加速开机预读取速度
reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control /v WaitToKillServiceTimeout /t reg_sz /d 500 /f
rem 缩短XP开关机等待时间
reg add HKEY_CURRENT_USER\Control Panel\Desktop /v AutoEndTasks /t reg_dword /d 00000001 /f
rem 自动关闭停止响应的程序
reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem /v ConfigFileAllocSize /t reg_dword /d 000001f4 /f
rem 加快程序启动速度
reg add HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control /v WaitToKillServiceTimeout /t reg_sz /d 1000 /f
rem 加快开机速度副值
reg add HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer /v link /t reg_binary /d 00 00 00 00 /f
rem 取消"快截方式 到"字样
reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoSMMyDocs /t reg_dword /d 00000001 /f
rem 删除开始菜单中的文档选项
reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurePipeServers\winreg /v RemoteRegAccess /t reg_dword /d 00000001 /f
rem 禁止远程操作注册表
reg delete HKEY_CLASSES_ROOT\lnkfile /v IsShortcut /f
rem 取消快截方式左下的箭头
reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\DelegateFolders\{59031a47-3f72-44a7-89c5-5595fe6b30ee} /f
rem 删除我的电脑中的我的文档
echo 注册表处理完毕,请按任意键继续...
pause >nul
echo 工作执行完毕,请重起计算机以使配置生效...
:menu
set /p n=是否现在重新启动?[y/n]
if /i "%n%"=="y" goto reboot
if /i "%n%"=="n" goto end
:reboot
shutdown -r
:end
exit
@echo off