您的位置:首页 > 运维架构

Optidiy for windows mobile 进入开发阶段

2010-06-09 10:27 507 查看
之前的监控系统已经在Demo迭代的基础上完成前期的开发工作,所以我的业余时间不必再用来研究GWT了。促使我开发OPtidiy的有两个原因,一个便是nokia e71手机被我再三摧残之下终于over了,在送修的时候又用起了曾经的美好回忆——dopod838;另一个则是,在使用838的时候又翻出了曾经自己写过的几个小软件,于是便在bing上随便查了一下WMAssistant,结果出乎我的意料之外,WMAssistant的生命力还是挺顽强的。所以,我很久之前的一个软件创意又浮现在脑海里——可自定义的系统优化软件。

一个通过xml文件设置来实现优化项目的增减,一个完成靠定制便可进行系统优化的软件。软件只是一个对注册表操作的壳子,而xml文件则是软件的灵魂所在。xml文件结构已经定义完毕了,软件壳子也已经颇具雏形了。我希望optidiy能够成为一个系统优化交流的枢纽,大家只要遵循xml的文件规范,便可以通过optidiy进行注册表设置实现系统优化,从而摒弃之前的繁琐的,难成体系与规模的系统优化。

Optidiy = Optimize + DIY 我们的口号是,系统优化 Do it yourself!

XML文件结构如下:

<?xml version="1.0" encoding="UTF-8"?>
<Optimize>
<Item name = "系统" description = "Window Mobile 系统优化" version = "6.x">
<SubItem name = "取消安装时的认证提示" description = "取消安装时的认证提示" type = "checkbox">
<RegKey rootKey = "HKEY_LOCAL_MACHINE" subKey = "/Security/Policies/Policies">
<ValueKey name = "0000101a" defaultValue = "0" currentValue = "0" optiValue = "1" kind = "dword"/>
</RegKey>
</SubItem>
<SubItem name = "取消短信发送通知" description = "取消短信发送通知" type = "checkbox">
<RegKey rootKey = "HKEY_LOCAL_MACHINE" subKey = "/Software/Microsoft/Inbox/Settings">
<ValueKey name = "SMSNoSentMsg" defaultValue = "0" currentValue = "0" optiValue = "1" kind = "dword"/>
</RegKey>
</SubItem>
</Item>

<Item name = "常规" description = "Window Mobile 系统优化" version = "6.x">
<SubItem name = "取消安装时的认证提示" description = "取消安装时的认证提示" type = "checkbox">
<RegKey rootKey = "HKEY_LOCAL_MACHINE" subKey = "/Security/Policies/Policies">
<ValueKey name = "0000101a" defaultValue = "0" currentValue = "0" optiValue = "1" kind = "dword"/>
</RegKey>
</SubItem>
<SubItem name = "取消短信发送通知" description = "取消短信发送通知" type = "checkbox">
<RegKey rootKey = "HKEY_LOCAL_MACHINE" subKey = "/Software/Microsoft/Inbox/Settings">
<ValueKey name = "SMSNoSentMsg" defaultValue = "0" currentValue = "0" optiValue = "1" kind = "dword"/>
</RegKey>
</SubItem>
</Item>
</Optimize>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: