# wintool **Repository Path**: liuyuyan6100/wintool ## Basic Information - **Project Name**: wintool - **Description**: wintool工具 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-27 - **Last Updated**: 2026-04-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Windows 工具箱 一个面向 Windows 的本地工具箱,双击即可打开,后续可通过 Git / Gitee 持续维护。 ## 入口文件 - `launch-toolbox.cmd`:启动工具箱 - `toolbox.ps1`:主菜单与模块加载入口 - `create-desktop-shortcut.cmd`:创建桌面快捷方式 - `clean-c-disk.ps1`:项目内置的 C 盘清理脚本 ## 模块结构 - `modules/Common.ps1`:公共菜单与通用交互 - `modules/System.ps1`:系统信息与端口查看 - `modules/Network.ps1`:网络诊断 - `modules/Maintenance.ps1`:系统维护 - `modules/CommonTools.ps1`:常用 Windows 工具 - `modules/Archives.ps1`:文件工具 ## 使用方法 1. 双击 `launch-toolbox.cmd` 启动工具箱。 2. 在主菜单输入编号并回车,进入对应功能。 3. 在子菜单中按提示继续操作:`0` 返回主菜单,`Q` 退出程序。 4. 如需桌面入口,双击 `create-desktop-shortcut.cmd` 创建快捷方式。 ## 当前功能 - 查看系统信息 - 查看网络配置 - 运行网络诊断 - 系统维护 - 打开常用 Windows 工具 - 查看监听端口 - 文件工具 ## 系统维护 - 清理当前用户临时文件 - 刷新 DNS 缓存 - 重启资源管理器 - 调用项目内置 `clean-c-disk.ps1` 执行 C 盘清理 ## 文件工具 - 按目录解压 `tar.gz` / `gz` - 压缩打包入口预留 ## 维护方式 首次接入仓库: ```powershell git init git add . git commit -m "init: Windows toolbox" git branch -M main git remote add origin 你的仓库地址 git push -u origin main ``` 后续更新: ```powershell git add . git commit -m "feat: update toolbox" git push ```