原创软件 | 系统服务工具箱原创软件(587KB)--基于aardio开发的第一个程序
1 系统服务工具箱简介
该软件是我使用aardio开发的第一个程序,它集成了多个系统常用的快捷键,无需记住各种命令就能快捷使用cmd管理员、计算机管理、控制面板、组策略、注册表、服务、任务管理、卸载程序八大功能,相当适合计算机小白用户使用。
下载地址:https://www.123pan.com/s/9Rn9-A5kpH.html
2 系统服务工具箱展示

3 系统服务工具箱-aardio源代码
aardio工程的源代码(仅供参考)如下:
import fonts.fontAwesome;
import win.ui;
import process;
import com;
/*DSG{{*/
mainForm = win.form(text="系统服务工具箱-公众号@读研札记";right=455;bottom=239;bgcolor=16777215;border="thin";max=false)
mainForm.add(
plus_about_author={cls="plus";text="关于作者";left=312;top=120;right=432;bottom=160;align="left";bgcolor=16748568;color=65298;font=LOGFONT(h=-13;weight=700);iconStyle={align="left";font=LOGFONT(h=-13;name='FontAwesome');padding={left=20}};iconText='\uF04B';notify=1;textPadding={left=39};z=9};
plus_appwiz={cls="plus";text="卸载程序";left=312;top=72;right=432;bottom=112;align="left";bgcolor=-28648;color=64511;font=LOGFONT(h=-13;name='微软雅黑';weight=700);iconStyle={align="left";font=LOGFONT(h=-13;name='FontAwesome');padding={left=20}};iconText='\uF00D';notify=1;textPadding={left=39};z=5};
plus_cmd_admin={cls="plus";text="cmd管理员";left=24;top=24;right=144;bottom=64;align="left";bgcolor=-28648;color=64511;font=LOGFONT(h=-13;name='微软雅黑';weight=700);iconStyle={align="left";font=LOGFONT(h=-13;name='FontAwesome');padding={left=20}};iconText='\uF1F9';notify=1;textPadding={left=39};z=2};
plus_compmgmt={cls="plus";text="计算机管理";left=24;top=72;right=144;bottom=112;align="left";bgcolor=-28648;color=64511;font=LOGFONT(h=-13;name='微软雅黑';weight=700);iconStyle={align="left";font=LOGFONT(h=-13;name='FontAwesome');padding={left=20}};iconText='\uF108';notify=1;textPadding={left=39};z=3};
plus_control={cls="plus";text="控制面板";left=168;top=24;right=288;bottom=64;align="left";bgcolor=-28648;color=64511;font=LOGFONT(h=-13;name='微软雅黑';weight=700);iconStyle={align="left";font=LOGFONT(h=-13;name='FontAwesome');padding={left=20}};iconText='\uF013';notify=1;textPadding={left=39};z=4};
plus_gpedit={cls="plus";text="组策略";left=168;top=120;right=288;bottom=160;align="left";bgcolor=-28648;color=64511;font=LOGFONT(h=-13;name='微软雅黑';weight=700);iconStyle={align="left";font=LOGFONT(h=-13;name='FontAwesome');padding={left=20}};iconText='\uF1A0';notify=1;textPadding={left=39};z=8};
plus_path={cls="plus";text="环境变量";left=24;top=170;right=144;bottom=210;align="left";bgcolor=-28648;color=64511;font=LOGFONT(h=-13;name='微软雅黑';weight=700);iconStyle={align="left";font=LOGFONT(h=-14;name='FontAwesome');padding={left=20}};iconText="H";notify=1;textPadding={left=39};z=12};
plus_regedit={cls="plus";text=" 注册表";left=312;top=24;right=432;bottom=64;align="left";bgcolor=-28648;color=64511;font=LOGFONT(h=-13;name='微软雅黑';weight=700);iconStyle={align="left";font=LOGFONT(h=-13;name='FontAwesome');padding={left=20}};iconText='\uF1EA';notify=1;textPadding={left=39};z=1};
plus_services={cls="plus";text="服务";left=24;top=120;right=144;bottom=160;align="left";bgcolor=-28648;color=64511;font=LOGFONT(h=-13;name='微软雅黑';weight=700);iconStyle={align="left";font=LOGFONT(h=-13;name='FontAwesome');padding={left=20}};iconText='\uF09A';notify=1;textPadding={left=39};z=7};
plus_taskmgr={cls="plus";text="任务管理";left=168;top=72;right=288;bottom=112;align="left";bgcolor=-28648;color=64511;font=LOGFONT(h=-13;name='微软雅黑';weight=700);iconStyle={align="left";font=LOGFONT(h=-13;name='FontAwesome');padding={left=20}};iconText='\uF073';notify=1;textPadding={left=39};z=6};
static={cls="static";text="Static";left=296;top=221;right=432;bottom=237;align="right";color=16748568;font=LOGFONT(h=-11);transparent=1;z=10};
static2={cls="static";text="2023年12月25日 开发";left=24;top=221;right=152;bottom=237;color=16748568;font=LOGFONT(h=-11);transparent=1;z=11};
static3={cls="static";text="当前时间:";left=259;top=220;right=330;bottom=237;color=16748568;transparent=1;z=13}
)
/*}}*/ //显示时间
tmid = mainForm.setInterval(
50/*毫秒*/,
function(hwnd,msg,id,tick){//定时执行代码
//显示现在时间
tm = time()
timestr = tm.year+"年"+tm.month+"月"+tm.day+"日"+tm.hour+":"+tm.minute+":"+tm.second
mainForm.static.text=timestr;
//mainForm.killtimer(id)//移除此定时器
//mainForm.settimer(id,2000)//重新设定时间间隔
}
); //通用按钮配色
var skin_general ={
background={
default=0xFF1890FF;
disabled=0xFFCCCCCC;
hover=0xFF1890FF
};
color={
default=0xFFFFFB00;
disabled=0xFF1890FF
}
} //通用按钮配色加载
mainForm.plus_gpedit.skin(skin_general)
mainForm.plus_services.skin(skin_general)
mainForm.plus_taskmgr.skin(skin_general)
mainForm.plus_appwiz.skin(skin_general)
mainForm.plus_control.skin(skin_general)
mainForm.plus_compmgmt.skin(skin_general)
mainForm.plus_cmd_admin.skin(skin_general)
mainForm.plus_regedit.skin(skin_general)
mainForm.plus_about_author.skin(skin_general)
mainForm.plus_path.skin(skin_general)
//cmd按钮 实现
mainForm.plus_cmd_admin.oncommand = function(id,event){
process.shellAs("cmd");
} //控制面板 按钮实现
mainForm.plus_control.oncommand = function(id,event){
process.execute("control.exe")
} //注册表 按钮实现
mainForm.plus_regedit.oncommand = function(id,event){
process.execute("regedit.exe")
} //计算机管理 按钮实现
mainForm.plus_compmgmt.oncommand = function(id,event){
process.execute("mmc.exe", "compmgmt.msc")
} //任务管理 按钮实现
mainForm.plus_taskmgr.oncommand = function(id,event){
process.execute("taskmgr.exe")
} //卸载程序 按钮实现
mainForm.plus_appwiz.oncommand = function(id,event){
process.execute("control.exe", "appwiz.cpl")
} //服务 按钮实现
mainForm.plus_services.oncommand = function(id,event){
process.execute("mmc.exe", "services.msc")
}
//组策略 按钮实现
mainForm.plus_gpedit.oncommand = function(id,event){
process.execute("mmc.exe", "gpedit.msc")
} //关于我 按钮实现
mainForm.plus_about_author.oncommand = function(id,event){
process.openUrl("https://mp.weixin.qq.com/s/rht9MkxPV4Dk5iQityjrUQ")
} //环境变量 按钮实现
mainForm.plus_path.oncommand = function(id,event){
process.execute("rundll32.exe", "sysdm.cpl EditEnvironmentVariables")
} mainForm.show();
return win.loopMessage();
软件下载地址:https://www.123pan.com/s/9Rn9-A5kpH.html
原创软件 | 系统服务工具箱原创软件(587KB)--基于aardio开发的第一个程序的更多相关文章
- [原创]基于SpringAOP开发的方法调用链分析框架
新人熟悉项目必备工具!基于SpringAOP开发的一款方法调用链分析插件,简单到只需要一个注解,异步非阻塞,完美嵌入Spring Cloud.Dubbo项目!再也不用担心搞不懂项目! 很多新人进入一家 ...
- 让你提前认识软件开发(21):C程序中的定时器
版权声明:本文为博主原创文章.对文章内容有不论什么意见或建议.欢迎与作者单独交流.作者QQ(微信):245924426. https://blog.csdn.net/zhouzxi/article/d ...
- qt的应用层主要是大型3d,vr,管理软件和器械嵌入软件(有上千个下一代软件黑科技项目是qt的,美国宇航局,欧洲宇航局,超级战舰DDG1000)
作者:Nebula.Trek链接:https://www.zhihu.com/question/24316868/answer/118944490来源:知乎著作权归作者所有.商业转载请联系作者获得授权 ...
- WP7 手机软件纪念 - 稍后读软件
在本月换机之际,决定写篇博客纪念一下我在 WP7 手机上开发的一个稍后读软件.这个工具开发完成后,两年间,我的 WP7 手机 80% 的用途,都发挥在了它身上. 这个软件其实是一个离线阅读工具,非常类 ...
- 第一章-第四题(ACM 比赛的程序是软件么? “写程序” 和 ”做软件“ 有区别么?软件工程是不是教那些不怎么会写程序的人开发软件? 你怎么看?这个游戏团队, 有很好的软件,但是商业模式和其他软件之外的因素呢?有没有考虑到)--By梁旭晖
引用 http://baike.baidu.com/link?url=z_phkcEO4_HjFG_Lt163dGFAubdb68IbfcfzWscTOrrZ55WbJEQKzyMQ5eMQKyatD ...
- 海蜘蛛网络科技官方网站 :: 做最好的中文软路由 :: 软件路由器 :: 软路由 :: 软件路由 :: RouterOs
海蜘蛛网络科技官方网站 :: 做最好的中文软路由 :: 软件路由器 :: 软路由 :: 软件路由 :: RouterOs 企业简介 武汉海蜘蛛网络科技有限公司成立于2005年,是一家专注于网络新技术研 ...
- 【原创翻译】认识MVC设计模式:web应用开发的基础(实际编码篇)
原文地址:http://www.larryullman.com/2009/10/15/understanding-mvc-part-3/ 全系列INDEX [原创翻译]认识MVC设计模式:web应用开 ...
- 外呼系统APP外呼软件手机电销软件拨号销售软件功能设计
外呼系统APP外呼软件 1 系统概述 该软件系统设计功能主要为贷款.投资.资产管理等金融中介公司提供方便快捷的线上管理各类资源的一款应用软件工具. 可根据不同职位的账号登录APP来管理电话营销.客户签 ...
- Mac 上有哪些值得推荐的软件?冷门小众软件但实用
确实Mac上有很多小众.冷门,但却是十分实用.值得推荐的工具,小编针对用的比较多的软件,整理了一些,希望有帮助. The Unarchive:解压缩工具 macOS 对于压缩文件的处理不是很好.如果你 ...
- 将RAC软件转换为单实例软件
将RAC软件转换为单实例软件 http://blog.itpub.net/26736162/viewspace-2155632/ 1. Stop database and CRS on both no ...
随机推荐
- linux常见的网络操作命令
1 linux在某个网卡上面添加一条明细路由命令如下 命令的意思是在这台服务器上面添加一条网段为192.168.1.0/24,网关为192.168.2.1,通过eth0这个网卡口出去 ip rout ...
- 【WPF】自定义数据集合绑定到UI界面
需要展示列表项,从https://github.com/jdscodelab/File-Manager-UI-Wpf这个项目,只有前端UI. 复用了其文件内容列表 主要源码: <StackP ...
- vue-cli 中使用 Axios
安装 axios: 1 npm install axios --save-dev 接着在src目录下创建一个http.js脚本中,导入axios并通过create方法实例化一个http请求对象,这样我 ...
- NOIP模拟62
T1 Set 解题思路 抽屉原理 发现对于前缀和向 \(n\) 取模之后一定是右两个值相等的(包括什么都不选的 0 ). 假设 \(pre_j=pre_i\) 那么 \([j+1,i]\) 之间这一段 ...
- containerd 源码分析:创建 container(三)
文接 containerd 源码分析:创建 container(二) 1.2.2.2 启动 task 上节介绍了创建 task,task 创建之后将返回 response 给 ctr.接着,ctr 调 ...
- 在 TypeScript 中,extends
extends 是一个关键字,用于指定类型参数的约束.它在类型参数的声明中使用,以确保类型参数满足特定的条件. 具体来说,extends 后面可以跟随一个类型,表示类型参数必须是该类型的子类型.在泛型 ...
- vue3 KeepAlive
在Vue.js 3中,<keep-alive> 是一个抽象组件,用于保留其子组件状态,防止在切换组件时销毁它们.这对于在页面间切换时保留组件的状态或避免重复渲染特定组件非常有用.<k ...
- LeetCode 690. Employee Importance 员工的重要性(C++/Java)
题目: You are given a data structure of employee information, which includes the employee's unique id, ...
- 极限科技(INFINI labs)荣获中国信通院大数据“星河”标杆案例
12 月 6 日,由中国信息通信研究院和中国通信标准化协会大数据技术标准推进委员会(CCSA TC601)共同组织的 2023 大数据"星河(Galaxy)"案例评选结果正式公示. ...
- C# .NET Framework EXCEL NPOI EOF in header
实例化时异常: EOF in header 错误代码: try { workBook = new HSSFWorkbook(file); } catch { try { workBook = new ...