; 1、标题
as-Setup.bat – 自动批量静默复制安装和设置电脑软件的批处理脚本
; 2、截屏-as-Setup.bat
; 3、截屏-部分-as-Setup.ahk
; 4、下载网址
; 4、下载网址
最新源代码下载网址(可能会误报电脑病毒)
ProgSetup 1.0.3-20220111
https://www.123pan.com/s/vfk9-dpCn3
https://ds920.lanzoup.com/b01167g5c
密码:e6c3
项目主页: https://gitee.com/ds920/as-
https://www.autoahk.com/ 搜索 as-Setup.bat - 自动批量静默复制安装和设置电脑软件的批处理脚本
备用主页:https://www.cnblogs.com/delphixx/p/15784503.html
发布 复制、上传、发布、拷贝
“ProgSetup 1.0.3-20220111.ZIP”压缩文件到:
本地磁盘、
局域网共享文件夹、
群晖 RAID 1 镜像存储池中的共享文件夹
蓝奏云存储网盘共享链接
https://www.lanzou.com/
123云盘云存储共享链接
https://www.123pan.com/
阿里云盘云存储网盘
https://www.aliyundrive.com/
天翼网盘云存储
https://cloud.189.cn/
百度网盘云存储
https://pan.baidu.com/
国内外的其他各种品牌网盘云存储空间
银灿IS903-USB-CD-ROM-WinPE可启动量产U盘
; 5、说明文档
; 5、说明文档
2022年1月11日
说明:
我不喜欢Windows中的包管理器,
Windows中的包管理器1:scoop包管理工具
Windows中的包管理器2:Windows Package Manager (WinGet)
Windows中的包管理器3:Chocolatey包管理器
我喜欢用AutoHotkey自动化热键脚本来自制
Windows软件的全自动静默安装包文件夹
因为AutoHotkey自动化热键脚本更加自由
因为AutoHotkey自动化热键脚本和相关文件可以放在
自己的群晖NAS网络存储服务器中完全由自己管理和控制
我也不喜欢“【2021.12.26】秋无痕 常用软件全功能装机光盘 2022新年版”光盘ISO镜像和“一键软件安装管理器2021.01 – 宋永志博客”自解压包
光盘镜像和压缩包修改起来比较麻烦
我还是喜欢批处理脚本、AutoHotkey脚本和文件夹的形式来管理电脑软件安装包
修改管理起来比较简单高效,如果怕不小心误删误改的话可以用WinRAR打包压缩后保存到
局域网共享文件夹、群晖网络存储服务器的RAID1镜像存储池和银灿IS903量产U盘的USB-CD-ROM可启动虚拟光驱分区。
REM
子文件夹 Fix 用于保存电脑系统和软件的修复设置优化工具软件
可以直接保存单个EXE可执行文件,
当工具软件由多个文件组成时应当保存在专用子文件夹中,子文件夹以部分主窗口标题命名
REM
子文件夹 Program 用于保存绿色免安装和单文件电脑软件
一个软件对应一个专用子文件夹,子文件夹以部分主窗口标题命名
REM
子文件夹 Setup 用于保存电脑软件安装包
一个软件对应一个专用子文件夹,子文件夹以部分主窗口标题命名
; 6、源代码- Z:\as-Setup\as-Setup.bat
REM ; 6、源代码- Z:\as-Setup\as-Setup.bat
REM /*
REM =======================================================
REM as-Setup.bat - 自动批量静默复制安装和设置电脑软件的批处理脚本
REM
REM 文件01 : Z:\as-Setup\as-Setup.bat
REM
REM 脚本作者 : ds920
REM 最新版本 : 1.1
REM 更新时间 : 2022年1月11日
REM
REM 项目主页 : https://gitee.com/ds920/as-
REM
REM 用法: (需要Windows系统的电脑)
REM 1. 通过命令或者资源浏览器进入此批处理脚本所在的文件夹
REM 2. 通过命令行执行或者双击此批处理脚本图标运行此批处理脚本
REM
REM =======================================================
REM */
SET ProgramDrive=D:
SET ProgramPath=Program
SET SetupPath=Setup
SET FixPath=Fix
MD %ProgramDrive%\%ProgramPath%
START "" "%~dp0"%SetupPath%\AutoHotkey\AutoHotkey_1.1.33.10_setup.exe /S /A32 /U32 /U64 /D=%ProgramDrive%\%ProgramPath%\AutoHotkey\ /WAIT
REM 等待3秒钟,以便让AHK文件关联生效,使ahk脚本能够顺利运行
ping -n 3 127.0.0.1>nul 2>nul
START "" "%~dp0"Setup.ahk
REM ===== 结束 ============================================
; 7、源代码- Z:\as-Setup\Setup.ahk
;
; 7、源代码- Z:\as-Setup\Setup.ahk
;
; /*
; =======================================================
; as-Setup.ahk - 自动批量静默复制安装和设置电脑软件的AHK脚本
;
; 文件02 : Z:\as-Setup\Setup\as-Setup.ahk
;
; 脚本作者 : ds920
; 最新版本 : 1.1
; 更新时间 : 2022年1月11日
;
; 项目主页 : https://gitee.com/ds920/as-
;
; 用法: (需要已安装Windows7或更高版本操作系统的电脑)
; 1. 此脚本不单独运行,通过as-Setup.bat批处理脚本调用此AHK脚本。
; 2. 由于我不会用批处理脚本复制带空格路径下的文件所以
; 用AHK脚本实现文件复制功能。
;
; 已知的问题 : 此AHK脚本所在的文件夹路径中不能含有空格符号
;
; =======================================================
; */
; 1、设置此脚本的运行参数
#SingleInstance,Ignore
#Persistent
#NoTrayIcon
loop,5
{
DetectHiddenWindows,On
Sleep,5
IfWinExist,Setup-E-Mail-595076941@QQ.COM
ExitApp
}
Gui, Show, Hide,Setup-E-Mail-595076941@QQ.COM
DetectHiddenWindows,On
SetTitleMatchMode,2
;
; 2、设置环境变量
ProgramDrive := "D:"
ProgramPath := "Program"
SetupPath := "Setup"
FixPath := "Fix"
;
; 3、新建文件夹
; FileCreateDir,%ProgramDrive%\%ProgramPath%\AutoHotkey\Compiler\
; FileCreateDir,%ProgramDrive%\%ProgramPath%\AutoHotkey\SciTE\
;
; 4、复制AHK编译器和AHK编辑器程序文件到%ProgramDrive%\%ProgramPath%文件夹、
; 设置AHK文件关联、汉化AHK文件右键菜单(运行脚本、编译脚本、编译脚本(GUI)、编辑脚本)
FileCopyDir,%A_ScriptDir%\Program\AutoHotkey,D:\Program\AutoHotkey,1
;FileCopyDir,%A_ScriptDir%\%SetupPath%\AutoHotkey\SciTE\,%ProgramDrive%\%ProgramPath%\AutoHotkey\SciTE\,0
RunWait,%ProgramDrive%\%ProgramPath%\AutoHotkey\SciTE\_GuanLian.ahk
; 作者: 甲壳虫<jdchenjian@gmail.com>
; 脚本说明: 此工具用来修改 AutoHotkey 脚本的右键菜单关联,适用于 AutoHotkey 安装版、绿色版。
; 修改作者: 兔子
; 修改作者 : ds920
;
; 5、复制其他程序文件
FileCopyDir,%A_ScriptDir%\Program,D:\Program,1
FileCopyDir,%A_ScriptDir%\Program-2,D:\Program,1
;FileCopyDir,%A_ScriptDir%\%ProgramPath%\,%ProgramDrive%\%ProgramPath%\,0
;RunWait,ROBOCOPY.EXE %A_ScriptDir%\%ProgramPath%\ %ProgramDrive%\%ProgramPath%\ /e /mt /r:3 /w:3 *.*
;
; 6、运行Maye一个简洁小巧的快速启动工具
Run,D:\Program\Maye\Maye.exe
; 请用Maye快速启动工具设置TotalCMD的快捷键为F8,
; 设置Everything的快捷键为F11
; https://blog.arae.cc/post/25830.html
; https://github.com/25H/Maya/releases/latest
; https://www.lanzoux.com/b0bqwqjvg
;
; 7、最小化窗口运行Everything基于名称快速定位文件和文件夹,
; 本地文件快速搜索工具,能够索引RaiDrive连接群晖WebDAV映射出来的本地虚拟磁盘Z:\文件夹
Run,D:\Program\Everything\Everything.exe,,Min
;
; 8、递归搜索%A_ScriptDir%\Setup\文件夹中的文件
; 找出所有文件名以as-前缀开始的AHK脚本并运行找到的AHK脚本
; 不想AHK脚本被运行时请把文件名前缀由as-改成;as-注释掉脚本文件
loop,Files,%A_ScriptDir%\Setup\*.*,R
{
if(A_LoopFileExt="ahk")
{
FoundPos_FileName := InStr(A_LoopFileName, "as-")
if(FoundPos_FileName=1)
{
RunWait,%A_LoopFileFullPath%
}
}
}
;
; 9、复制其他文件
; FileCreateDir,%ProgramDrive%\%ProgramPath%\说明文档
; FileCopyDir,%A_ScriptDir%\Program\说明文档,D:\Program\说明文档,1
; ===== 结束 ============================================
; 8、源代码- Z:\as-Setup\Setup\AutoHotkey\SciTE\_GuanLian.ahk
;
; 8、源代码- Z:\as-Setup\Setup\AutoHotkey\SciTE\_GuanLian.ahk
;
/*
作者: 甲壳虫<jdchenjian@gmail.com>
博客: http://hi.baidu.com/jdchenjian
脚本说明: 此工具用来修改 AutoHotkey 脚本的右键菜单关联,适用于 AutoHotkey 安装版、绿色版。
脚本版本: 2009-01-21
修改作者: 兔子
更新说明:
2010.01.09 之前某个时间,修改AHK路径、编辑器路径、编译器路径,默认全部在当前目录下寻找
2010.01.09 去掉默认在新建菜单的勾
2010.06.21 如果SCITE为默认编辑器,则复制个人配置文件“SciTEUser.properties”到%USERPROFILE%
2010.06.25 修正因#NoEnv使%USERPROFILE%变量直接引用无效
2016.04.18 删除“2010.06.21”的改动
2021.10.17 新增“编译脚本 (GUI)”的汉化
2021.11.02 自动根据 AutoHotkey.exe 的位置定位基准目录。
2021.11.05 重构代码,精简界面,修复新建模板时的编码问题,修复编辑模板时的权限问题。
修改作者 : ds920
; ===== ds920 修改 2022年1月11日 ===== 第31行 =====
; ===== ds920 修改 2022年1月11日 ===== 第124行 =====
; ===== ds920 修改 2022年1月11日 ===== 第189到191行 =====
; ===== ds920 修改 2022年1月11日 ===== 第242行 =====
更新说明:
2022.01.11 注释掉部分AutoHotkey语句,让其他脚本能够静默调用此AHK脚本,
实现AHK文件关联和汉化鼠标右键中文菜单
2022.01.11 #SingleInstance, force 改成 #SingleInstance, Ignore 防止出现等待的提示窗口
*/
#NoEnv
; ===== ds920 修改 2022年1月11日 ===== 第31行 =====
#SingleInstance, Ignore
SendMode Input
SetWorkingDir %A_ScriptDir%
; 版本(仅用于显示)
Script_Version=ver. 1.1
; AutoHotkey 原版的相关信息写在注册表HKCR主键中,
; 尝试当前用户否有权操作该键,如果无权操作HKCR键(受限用户),
; 可通过操作注册表HKCU键来实现仅当前用户关联AHK脚本。
RegWrite, REG_SZ, HKCR, .test
if ErrorLevel
IsLimitedUser:=1
RegDelete, HKCR, .test
if ErrorLevel
IsLimitedUser:=1
if IsLimitedUser
{
RootKey=HKCU ; 受限用户操作HKCU键
Subkey=Software\Classes\ ; 为简化后面的脚本,此子键须以“\”结尾
}
else
{
RootKey=HKCR ; 非受限用户操作HKCR键
Subkey=
}
; 检查是否存在AHK注册表项
RegRead, FileType, %RootKey%, %Subkey%.ahk
if (FileType!="")
{
RegRead, value, %RootKey%, %Subkey%%FileType%\Shell\Open\Command ; AHK路径
AHK_Path:=PathGetPath(value)
RegRead, value, %RootKey%, %Subkey%%FileType%\Shell\Compile\Command ; 编译器路径
Compiler_Path:=PathGetPath(value)
RegRead, value, %RootKey%, %Subkey%%FileType%\Shell\Edit\Command ; 编辑器路径
Editor_Path:=PathGetPath(value)
RegRead, Template_Name, %RootKey%, %Subkey%.ahk\ShellNew, FileName ; 模板文件名
}
else
FileType=AutoHotkeyScript
; 通过 AutoHotkey.exe 的位置来定位基准目录
SplitPath, A_AhkPath, , AhkDir
if AHK_Path=
{
IfExist, %AhkDir%\AutoHotkey.exe
AHK_path=%AhkDir%\AutoHotkey.exe
}
if Compiler_Path=
{
IfExist, %AhkDir%\Compiler\Ahk2Exe.exe
Compiler_Path=%AhkDir%\Compiler\Ahk2Exe.exe
}
if Editor_Path=
{
IfExist, %AhkDir%\SciTE\SciTE.exe
Editor_Path=%AhkDir%\SciTE\SciTE.exe
}
if Template_Name=
Template_Name=Template.ahk
Gui, Font, bold s15
Gui, Add, Text, x10 y10 w480 h290, %A_Space%设置并汉化 .ahk 文件的右键菜单
Gui, Font
Gui, Add, GroupBox, x20 y50 w460 h50 , “运行脚本”
Gui, Add, Edit, x35 y70 w340 h20 vAHK_Path, %AHK_path%
Gui, Add, Button, x385 y70 w40 h20 gFind_AHK, 浏览
Gui, Add, GroupBox, x20 y110 w460 h50 , “编译脚本”
Gui, Add, Edit, x35 y130 w340 h20 vCompiler_Path, %Compiler_Path%
Gui, Add, Button, x385 y130 w40 h20 gChoose_Compiler, 浏览
Gui, Add, Button, x430 y130 w40 h20 gDefault_Compiler, 默认
Gui, Add, GroupBox, x20 y170 w460 h50 , “编辑脚本”
Gui, Add, Edit, x35 y190 w340 h20 vEditor_Path, %Editor_Path%
Gui, Add, Button, x385 y190 w40 h20 gChoose_Editor, 浏览
Gui, Add, Button, x430 y190 w40 h20 gDefault_Editor, 默认
Gui, Add, GroupBox, x20 y230 w460 h50 , “新建脚本”
Gui, Add, Button, x35 y250 w340 h20 gEdit_Template, 自定义新建脚本的模板
Gui, Font, bold s15
Gui, Add, Button, x20 y300 w200 h40 Default gInstall, 设置
Gui, Add, Button, x280 y300 w200 h40 gCancel, 取消
; ===== ds920 修改 2022年1月11日 ===== 第124行 =====
gosub, Install
if (A_Args.1="/set")
gosub, Install
else
Gui, Show, x250 y200 h350 w500 Center, AHK 脚本关联工具 %Script_Version%
return
GuiClose:
GuiEscape:
Cancel:
ExitApp
return
; 查找 AutoHotkey 主程序
Find_AHK:
Gui +OwnDialogs
FileSelectFile, AHK_Path, 3, , 查找 AutoHotkey.exe, AutoHotkey.exe
if (AHK_Path!="")
GuiControl,,AHK_Path, %AHK_Path%
gosub Default_Compiler
return
; 选择脚本编译器
Choose_Compiler:
Gui +OwnDialogs
FileSelectFile, Compiler_Path, 3, , 选择脚本编译器, 程序(*.exe)
if (Compiler_Path!="")
GuiControl,,Compiler_Path, %Compiler_Path%
return
; 默认脚本编译器
Default_Compiler:
GuiControlGet, AHK_Path
SplitPath, AHK_Path, ,AHK_Dir
IfExist, %AHK_Dir%\Compiler\Ahk2Exe.exe
{
Compiler_Path=%AHK_Dir%\Compiler\Ahk2Exe.exe
GuiControl,, Compiler_Path, %Compiler_Path%
}
return
; 选择脚本编辑器
Choose_Editor:
Gui +OwnDialogs
FileSelectFile, Editor_Path, 3, , 选择脚本编辑器, 程序(*.exe)
if (Editor_Path!="")
GuiControl,,Editor_Path, %Editor_Path%
return
; 默认脚本编辑器
Default_Editor:
IfExist, %AhkDir%\SciTE\SciTE.exe
Editor_Path=%AhkDir%\SciTE\SciTE.exe
else ifExist, %A_WinDir%\system32\notepad.exe
Editor_Path=%A_WinDir%\system32\notepad.exe
GuiControl,, Editor_Path, %Editor_Path%
return
; 设置
Install:
Gui, Submit
; ===== ds920 修改 2022年1月11日 ===== 第189到191行 =====
AHK_Path:="D:\Program\AutoHotkey\AutoHotkey.exe"
Compiler_Path:="D:\Program\AutoHotkey\Compiler\Ahk2Exe.exe"
Editor_Path:="D:\Program\AutoHotkey\SciTE\SciTE.exe"
IfNotExist, %AHK_Path%
{
MsgBox, 16, , AutoHotkey 路径错误 !
return
}
IfNotExist, %Compiler_Path%
{
MsgBox, 16, , 编译器路径错误 !
return
}
IfNotExist, %Editor_Path%
{
MsgBox, 16, , 编辑器路径错误 !
return
}
; 写入注册表
RegWrite, REG_SZ, %RootKey%, %Subkey%.ahk,, %FileType%
RegWrite, REG_SZ, %RootKey%, %Subkey%.ahk\ShellNew, FileName, %Template_Name%
IfNotExist, %A_WinDir%\ShellNew\%Template_Name%
gosub Create_Template
RegWrite, REG_SZ, %RootKey%, %Subkey%%FileType%,, AutoHotkey 脚本
RegWrite, REG_SZ, %RootKey%, %Subkey%%FileType%\DefaultIcon,, %AHK_Path%`,1
RegWrite, REG_SZ, %RootKey%, %Subkey%%FileType%\Shell,, Open
RegWrite, REG_SZ, %RootKey%, %Subkey%%FileType%\Shell\Open,, 运行脚本
RegWrite, REG_SZ, %RootKey%, %Subkey%%FileType%\Shell\Open\Command,, "%AHK_Path%" "`%1" `%*
RegWrite, REG_SZ, %RootKey%, %Subkey%%FileType%\Shell\Compile,, 编译脚本
RegWrite, REG_SZ, %RootKey%, %Subkey%%FileType%\Shell\Compile-Gui,, 编译脚本 (GUI)
IfInString, Compiler_Path, Ahk2Exe.exe
{
RegWrite, REG_SZ, %RootKey%, %Subkey%%FileType%\Shell\Compile\Command,, "%Compiler_Path%" /in "`%1"
RegWrite, REG_SZ, %RootKey%, %Subkey%%FileType%\Shell\Compile-Gui\Command,, "%Compiler_Path%" /gui /in "`%1"
}
else
{
RegWrite, REG_SZ, %RootKey%, %Subkey%%FileType%\Shell\Compile\Command,, "%Compiler_Path%" "`%1"
RegWrite, REG_SZ, %RootKey%, %Subkey%%FileType%\Shell\Compile-Gui\Command,, "%Compiler_Path%" /gui "`%1"
}
RegWrite, REG_SZ, %RootKey%, %Subkey%%FileType%\Shell\Edit,, 编辑脚本
RegWrite, REG_SZ, %RootKey%, %Subkey%%FileType%\Shell\Edit\Command,, "%Editor_Path%" "`%1"
; ===== ds920 修改 2022年1月11日 ===== 第242行 =====
; MsgBox, 64, , 设置完毕 !
ExitApp
return
; 编辑脚本模板
Edit_Template:
GuiControlGet, Editor_Path
IfNotExist, %Editor_Path%
{
MsgBox, 64, , 脚本编辑器路径错误 !
return
}
IfNotExist, %A_WinDir%\ShellNew\%Template_Name%
gosub Create_Template
ifExist, %A_WinDir%\system32\notepad.exe
Run, *RunAs notepad.exe %A_WinDir%\ShellNew\%Template_Name%
else
Run, *RunAs %Editor_Path% %A_WinDir%\ShellNew\%Template_Name%
return
; 新建脚本模板
Create_Template:
FileAppend,
(
#NoEnv
SendMode Input
SetWorkingDir `%A_ScriptDir`%
), %A_WinDir%\ShellNew\%Template_Name%, UTF-8
IfNotExist, %A_WinDir%\ShellNew\%Template_Name%
MsgBox, 64, , 无法创建脚本模板 !`n`n请尝试使用管理员权限运行本工具。
return
; 从注册表值字符串中提取路径
PathGetPath(pSourceCmd)
{
local Path, ArgsStartPos = 0
if (SubStr(pSourceCmd, 1, 1) = """")
Path := SubStr(pSourceCmd, 2, InStr(pSourceCmd, """", False, 2) - 2)
else
{
ArgsStartPos := InStr(pSourceCmd, " ")
if ArgsStartPos
Path := SubStr(pSourceCmd, 1, ArgsStartPos - 1)
else
Path = %pSourceCmd%
}
return Path
}
; 9、源代码- Z:\as-Setup\Setup\7-Zip\as-7-Zip.ahk
;
; 9、源代码- Z:\as-Setup\Setup\7-Zip\as-7-Zip.ahk
;
; 全自动静默安装7-Zip压缩解压缩软件
#SingleInstance,Ignore
#Persistent
runwith("admin")
loop,5
{
DetectHiddenWindows,On
Sleep,5
IfWinExist,7z-E-Mail-595076941@QQ.COM
ExitApp
}
Gui, Show, Hide,7z-E-Mail-595076941@QQ.COM
DetectHiddenWindows,On
SetTitleMatchMode,2
; 启动7z安装程序
SetTimer,SetupTimer,500
return
SetupTimer()
{
; 1、如果程序没有运行则运行程序
Process,Exist,7z2106.exe
if (%ErrorLevel%=0)
{
IfExist,%A_ScriptDir%\7z2106.exe
{
Run,%A_ScriptDir%\7z2106.exe
}
else
{
MsgBox,找不到文件 %A_ScriptDir%\7z2106.exe
return
}
}
ControlSend, Button2,{Space}, 7-Zip 21.06 Setup ahk_class #32770 ahk_exe 7z2106.exe, Cancel
Sleep,2000
IfWinExist,7-Zip,installed
{
SetTimer,SetupTimer,Delete
ControlSend, Button2,{Space}, 7-Zip 21.06 Setup ahk_class #32770 ahk_exe 7z2106.exe, Cancel
MsgBox,,,已成功安装7-Zip软件,2
ExitApp
}
}
;
;
;
; 非常感谢 RunWith() 函数作者 空
; 这个 RunWith() 函数解决了我的一大难题
; https://www.autoahk.com/archives/35533
; 强制自身进程以 管理员权限 或 普通权限 或 ANSI 或 U32 或 U64 版本运行。
; 例1: runwith("admin","u32") 强制自身以 u32 + 管理员权限 运行。
; 例2: runwith("","ansi") 强制自身以 ansi 版本运行(权限不变)。
; 例3: runwith("normal") 强制自身以 普通权限 运行(版本不变)。
RunWith(RunAsAdmin:="Default", ANSI_U32_U64:="Default")
{
; 格式化预期的模式
switch, RunAsAdmin
{
case "Normal","Standard","No","0": RunAsAdmin:=0
case "Admin","Yes","1": RunAsAdmin:=1
case "Default": RunAsAdmin:=A_IsAdmin
default: RunAsAdmin:=A_IsAdmin
}
switch, ANSI_U32_U64
{
case "A32","ANSI","A": ANSI_U32_U64:="AutoHotkeyA32.exe"
case "U32","X32","32": ANSI_U32_U64:="AutoHotkeyU32.exe"
case "U64","X64","64": ANSI_U32_U64:="AutoHotkeyU64.exe"
case "Default": ANSI_U32_U64:="AutoHotkey.exe"
default: ANSI_U32_U64:="AutoHotkey.exe"
}
; 获取传递给 “.ahk” 的用户参数(不是 /restart 之类传递给 “.exe” 的开关参数)
for k, v in A_Args
{
if (RunAsAdmin=1)
{
; 转义所有的引号与转义符号
v:=StrReplace(v, "\", "\\")
v:=StrReplace(v, """", "\""")
; 无论参数中是否有空格,都给参数两边加上引号
; Run 的内引号是 "
ScriptParameters .= (ScriptParameters="") ? """" v """" : A_Space """" v """"
}
else
{
; 转义所有的引号与转义符号
; 注意要转义两次 Run 和 RunAs.exe
v:=StrReplace(v, "\", "\\")
v:=StrReplace(v, """", "\""")
v:=StrReplace(v, "\", "\\")
v:=StrReplace(v, """", "\""")
; 无论参数中是否有空格,都给参数两边加上引号
; RunAs.exe 的内引号是 \"
ScriptParameters .= (ScriptParameters="") ? "\""" v "\""" : A_Space "\""" v "\"""
}
}
; 判断当前 exe 是什么版本
if (!A_IsUnicode)
RunningEXE:="AutoHotkeyA32.exe"
else if (A_PtrSize=4)
RunningEXE:="AutoHotkeyU32.exe"
else if (A_PtrSize=8)
RunningEXE:="AutoHotkeyU64.exe"
; 运行模式与预期相同,则直接返回。 ANSI_U32_U64="AutoHotkey.exe" 代表不对 ahk 版本做要求。
if (A_IsAdmin=RunAsAdmin and (ANSI_U32_U64="AutoHotkey.exe" or ANSI_U32_U64=RunningEXE))
return
; 如果当前已经是使用 /restart 参数重启的进程,则报错避免反复重启导致死循环。
else if (RegExMatch(DllCall("GetCommandLine", "str"), " /restart(?!\S)"))
{
预期权限:=(RunAsAdmin=1) ? "管理员权限" : "普通权限"
当前权限:=(A_IsAdmin=1) ? "管理员权限" : "普通权限"
ErrorMessage=
(LTrim
预期使用: %ANSI_U32_U64%
当前使用: %RunningEXE%
预期权限: %预期权限%
当前权限: %当前权限%
程序即将退出。
)
MsgBox 0x40030, 运行状态与预期不一致, %ErrorMessage%
ExitApp
}
else
{
; 获取 AutoHotkey.exe 的路径
SplitPath, A_AhkPath, , Dir
if (RunAsAdmin=0)
{
; 强制普通权限运行
switch, A_IsCompiled
{
; %A_ScriptFullPath% 必须加引号,否则含空格的路径会被截断。%ScriptParameters% 必须不加引号,因为构造时已经加了。
; 工作目录不用单独指定,默认使用 A_WorkingDir 。
case, "1": Run, RunAs.exe /trustlevel:0x20000 "\"%A_ScriptFullPath%\" /restart %ScriptParameters%",, Hide
default: Run, RunAs.exe /trustlevel:0x20000 "\"%Dir%\%ANSI_U32_U64%\" /restart \"%A_ScriptFullPath%\" %ScriptParameters%",, Hide
}
}
else
{
; 强制管理员权限运行
switch, A_IsCompiled
{
; %A_ScriptFullPath% 必须加引号,否则含空格的路径会被截断。%ScriptParameters% 必须不加引号,因为构造时已经加了。
; 工作目录不用单独指定,默认使用 A_WorkingDir 。
case, "1": Run, *RunAs "%A_ScriptFullPath%" /restart %ScriptParameters%
default: Run, *RunAs "%Dir%\%ANSI_U32_U64%" /restart "%A_ScriptFullPath%" %ScriptParameters%
}
}
ExitApp
}
}
; 10、源代码- Z:\as-Setup\Setup\Delphi7Lite\as-Delphi7Lite.ahk
;
; 10、源代码- Z:\as-Setup\Setup\Delphi7Lite\as-Delphi7Lite.ahk
;
;全自动静默安装 Delphi7_Lite_Full_Edition_Setup_7.3.4.2_Build_20110801 集成开发环境Pascal编程软件
#SingleInstance,Ignore
loop,5
{
DetectHiddenWindows,On
Sleep,5
IfWinExist,E-Mail-595076941@QQ.COM
ExitApp
}
Gui, Show, Hide,E-Mail-595076941@QQ.COM
#Persistent
; #NoTrayIcon
DetectHiddenWindows,On
SetTitleMatchMode,2
; 启动7z安装程序
SetTimer,SetupTimer,500
return
SetupTimer()
{
; 1、如果程序没有运行则运行程序
Process,Exist,Delphi7_Lite_Full_Edition_Setup_7.3.4.3_Build_20110801.exe
if (%ErrorLevel%=0)
{
IfExist,%A_ScriptDir%\Delphi7_Lite_Full_Edition_Setup_7.3.4.3_Build_20110801.exe
{
Run,%A_ScriptDir%\Delphi7_Lite_Full_Edition_Setup_7.3.4.3_Build_20110801.exe
}
else
{
MsgBox,找不到文件 %A_ScriptDir%\Delphi7_Lite_Full_Edition_Setup_7.3.4.3_Build_20110801.exe
return
}
}
IfWinNotExist,安装向导 - Delphi 7 Lite Full Edition,正在你的计算机中安装 Delphi 7 Lite Full Edition,请稍等...
{
ControlSend, TNewButton1,{Space}, 选择安装语言 ahk_class TSelectLanguageForm ahk_exe Delphi7_Lite_Full_Edition_Setup_7.3.4.3_Build_20110801.tmp, 取消
ControlSend, Button1,{Space}, 安装向导 ahk_class #32770 ahk_exe Delphi7_Lite_Full_Edition_Setup_7.3.4.3_Build_20110801.tmp, 本程序为Window
ControlSend, TNewButton1,!n, 安装向导 - Delphi 7 Lite Full Edition ahk_class TWizardForm ahk_exe Delphi7_Lite_Full_Edition_Setup_7.3.4.3_Build_20110801.tmp, 取消
ControlSend, TNewButton1,!i, 安装向导 - Delphi 7 Lite Full Edition ahk_class TWizardForm ahk_exe Delphi7_Lite_Full_Edition_Setup_7.3.4.3_Build_20110801.tmp, 取消
}
IfWinExist,安装向导 - Delphi 7 Lite Full Edition ahk_class TWizardForm,安装向导已完成 Delphi 7 Lite Full Edition 的安装
{
SetTimer,SetupTimer,Delete
ControlClick, TNewButton5, 安装向导 - Delphi 7 Lite Full Edition ahk_class TWizardForm ahk_exe Delphi7_Lite_Full_Edition_Setup_7.3.4.3_Build_20110801.tmp,安装向导已完成 Delphi 7 Lite Full Edition 的安装
MsgBox,,,已成功安装Delphi7Lite编程软件,2
ExitApp
}
}
; 11、Z:\as-Setup\Tree.txt
;
; 11、Z:\as-Setup\Tree.txt
卷 软件 的文件夹 PATH 列表
卷序列号为 ILOV-EYOU
Z:\AS-SETUP
│ as-Setup.bat
│ Setup.ahk
│ WinRAR自解压脚本命令.txt
│ 下载网址.txt
│ 更新日志.txt
│ 杀死进程并删除文件-用于测试.exe
│ 测试代码.ahk
│
├─Fix
│ │ HiBitUninstaller.exe
│ │ W11ClassicMenu.exe
│ │
│ └─局域网共享
│ │ 局域网共享.exe
│ │
│ └─备用局域网共享设置工具软件
│ okshare19.3.13-一键设置局域网共享.bat
│ 一键共享开启局域网-一键设置局域网共享.bat
│ 局域网共享一键通-一键设置局域网共享.exe
│ 局域网共享打开工具-一键设置局域网共享.exe
│ 局域网共享设置超级工具-一键设置局域网共享.exe
│ 开通局域网共享(访问本机无需验证即可进入)-一键设置局域网共享.cmd
│
├─Program
│ ├─AutoHotkey
│ │ ├─AHK脚本
│ │ │ 005_文件关闭后自动备份.ahk
│ │ │ 02-并发运行的AutoHotkey脚本真机实际测试模板参考20191010.ahk
│ │ │ 1_6热字串 (2).ahk
│ │ │ 1_8删除暂时无用的垃圾文件.ahk
│ │ │ 1_9键盘鼠标闲置无操作7分钟后关闭显示器闲置8分钟后锁定电脑桌面.ahk
│ │ │ 1_Autorun.ahk
│ │ │ 1_CEscape.ahk
│ │ │ 1_ComRemote.ahk
│ │ │ 1_CUnescape.ahk
│ │ │ 1_GetSciTEInstance.ahk
│ │ │ 1_Ini2Object.ahk
│ │ │ 1_NewUser.ahk
│ │ │ 1_SciTEReload.ahk
│ │ │ 1_ShellMessageBox.ahk
│ │ │ 1_StrPutVar.ahk
│ │ │ 1_SUpd.ahk
│ │ │ 1_TaskDialog.ahk
│ │ │ 1_TestExample.ahk
│ │ │ 1_TestSuite.ahk
│ │ │ 1_webview2.ahk
│ │ │ 1__AHK源代码复制批处理_bat.ahk
│ │ │ 1___AhkVer.ahk
│ │ │ 1_卸载AHK右键菜单.ahk
│ │ │ 1_桌面图标清理和恢复.ahk
│ │ │ 1临时关窗口@@@@@@@@@@@@ (5).ahk
│ │ │ 1临时关窗口@@@@@@@@@@@@ (9).ahk
│ │ │ 1临时关窗口@@@@@@@@@@@@.ahk
│ │ │ 2_Autorun.ahk
│ │ │ 2_Close Tabs.ahk
│ │ │ 2_ComDispTable.ahk
│ │ │ 2_Error 25.ahk
│ │ │ 2_ExecScript.ahk
│ │ │ 2_FatalAppExit.ahk
│ │ │ 2_Filename.ahk
│ │ │ 2_MessageBox.ahk
│ │ │ 2_MessageBoxCheck.ahk
│ │ │ 2_MessageBoxIndirect.ahk
│ │ │ 2_MessageBoxTimeout.ahk
│ │ │ 2_MsiMessageBox.ahk
│ │ │ 2_Partition.ahk
│ │ │ 2_PrepExample.ahk
│ │ │ 2_ShellAbout.ahk
│ │ │ 2_StrStartsWith.ahk
│ │ │ 2_WebView2.ahk
│ │ │ 2_WTSSendMessage.ahk
│ │ │ 2_XP Support.ahk
│ │ │ 2___AhkVer.ahk
│ │ │ 2关广告窗口 (2).ahk
│ │ │ 2关广告窗口 (5).ahk
│ │ │ 2关广告窗口 (9).ahk
│ │ │ 2关广告窗口.ahk
│ │ │ 3_7常驻内存加快显示.ahk
│ │ │ 3_eval.ahk
│ │ │ 3_Installer.ahk
│ │ │ 3_JSON.ahk
│ │ │ 3临时热键 (5).ahk
│ │ │ 3临时热键 (8).ahk
│ │ │ 3临时热键.ahk
│ │ │ 4随系统自启动 (2).ahk
│ │ │ 4随系统自启动 (4).ahk
│ │ │ 4随系统自启动 (5).ahk
│ │ │ 4随系统自启动 (9).ahk
│ │ │ 4随系统自启动.ahk
│ │ │ 5热键 (4).ahk
│ │ │ 5热键 (5).ahk
│ │ │ 5热键 (9).ahk
│ │ │ 5热键.ahk
│ │ │ 6热字串 (2).ahk
│ │ │ 6热字串 (4).ahk
│ │ │ 6热字串 (5).ahk
│ │ │ 6热字串 (9).ahk
│ │ │ 6热字串.ahk
│ │ │ 7常驻内存加快显示 (2).ahk
│ │ │ 7常驻内存加快显示 (4).ahk
│ │ │ 7常驻内存加快显示 (5).ahk
│ │ │ 7常驻内存加快显示 (9).ahk
│ │ │ 7常驻内存加快显示.ahk
│ │ │ 7常驻内存加快显示_1.ahk
│ │ │ 8删除暂时无用的垃圾文件.ahk
│ │ │ 9键盘和鼠标闲置无操作累计满50秒钟后关闭显示器并锁定电脑桌面.ahk
│ │ │ 9键盘鼠标闲置无操作7分钟后关闭显示器闲置8分钟后锁定电脑桌面.ahk
│ │ │ 9键鼠闲置50秒钟后关闭显示器并锁定电脑桌面.ahk
│ │ │ ; as-Setup-7-Zip-old.ahk
│ │ │ ; as-Setup-7-Zip.ahk
│ │ │ ; as-Setup-WinRAR-Ver2.ahk
│ │ │ ActiveWindowInfo.ahk
│ │ │ Advanced Security Settings (6).ahk
│ │ │ Advanced Security Settings.ahk
│ │ │ AHK 正则终结者 (5).ahk
│ │ │ AHK 正则终结者.ahk
│ │ │ AHK 爬虫终结者 (3).ahk
│ │ │ AHK 爬虫终结者.ahk
│ │ │ AHK 脚本关联工具.ahk
│ │ │ AHK.ahk
│ │ │ ahkinfo.1.3.5-ahk.ahk
│ │ │ AHKManager (5).ahk
│ │ │ AHKManager (9).ahk
│ │ │ AHKManager.ahk
│ │ │ AHKRareTheGui.ahk
│ │ │ AhkSpy (9).ahk
│ │ │ AhkSpy.ahk
│ │ │ AHKType (9).ahk
│ │ │ AHKType.ahk
│ │ │ AHK_Window_Info_v1.7 (9).ahk
│ │ │ AHK_Window_Info_v1.7.ahk
│ │ │ AHK告知输入法模式.ahk
│ │ │ AHK源代码文件格式参考.ahk
│ │ │ AHK源代码片段功能测试模板.ahk
│ │ │ AICode.ahk
│ │ │ Anchor (9).ahk
│ │ │ Anchor.ahk
│ │ │ as-Setup - 副本.ahk
│ │ │ as-Setup-7-Zip.ahk
│ │ │ as-Setup-Delphi7.ahk
│ │ │ as-Setup-WinRAR.ahk
│ │ │ as-Setup.ahk
│ │ │ Auto-GUI.ahk
│ │ │ Auto-Syntax-Tidy (3).ahk
│ │ │ Auto-Syntax-Tidy_v12 (3).ahk
│ │ │ Auto-Syntax-Tidy_v12 (5).ahk
│ │ │ Auto-Syntax-Tidy_v12.ahk
│ │ │ AutoAHK.ahk
│ │ │ AutoGUI.ahk
│ │ │ AutoIndent.ahk
│ │ │ Autorun (6).ahk
│ │ │ Autorun (7).ahk
│ │ │ AutoRun-跟随Windows7一起启动的AutoHotkey脚本2019年10月9日.ahk
│ │ │ Autorun.ahk
│ │ │ AutoXYWH (19).ahk
│ │ │ AutoXYWH (8).ahk
│ │ │ AutoXYWH.ahk
│ │ │ AuxLib (12).ahk
│ │ │ AuxLib (13).ahk
│ │ │ AuxLib (3).ahk
│ │ │ AuxLib (6).ahk
│ │ │ AuxLib.ahk
│ │ │ A_Setup_7-Zip.ahk
│ │ │ A_Variables (4).ahk
│ │ │ A_Variables (5).ahk
│ │ │ A_Variables.ahk
│ │ │ BTT.ahk
│ │ │ BuildFiles.ahk
│ │ │ build_search.ahk
│ │ │ Calculate_AHK-Rare_Version-String.ahk
│ │ │ CbAutoComplete.ahk
│ │ │ CDO.ahk
│ │ │ CEscape.ahk
│ │ │ check_data.ahk
│ │ │ class_bcrypt.ahk
│ │ │ Class_Gdip.ahk
│ │ │ class_GuiControlTips.ahk
│ │ │ Class_LV_Colors.ahk
│ │ │ Class_LV_Rows.ahk
│ │ │ Class_ObjIni.ahk
│ │ │ Class_PMC.ahk
│ │ │ Class_Rebar.ahk
│ │ │ Class_SQLiteDB.ahk
│ │ │ Class_Toolbar.ahk
│ │ │ CloneWindow (3).ahk
│ │ │ CloneWindow (6).ahk
│ │ │ CloneWindow.ahk
│ │ │ Close Tabs.ahk
│ │ │ codesmanager.ahk
│ │ │ ColorFinder.ahk
│ │ │ COM Inspector (3).ahk
│ │ │ COM Inspector.ahk
│ │ │ ComDispatch (9).ahk
│ │ │ ComDispatch.ahk
│ │ │ ComDispTable.ahk
│ │ │ ComInterface (9).ahk
│ │ │ ComInterface.ahk
│ │ │ Common.ahk
│ │ │ CommonDialogs (21).ahk
│ │ │ CommonDialogs (5).ahk
│ │ │ CommonDialogs (8).ahk
│ │ │ CommonDialogs.ahk
│ │ │ Compile.ahk
│ │ │ CompileCHM.ahk
│ │ │ CompileResources.ahk
│ │ │ compile_chm.ahk
│ │ │ Compress以锁定和掩码方式新建软件开发文件夹的压缩备份包_bat.ahk
│ │ │ ComRemote.ahk
│ │ │ ComVar (9).ahk
│ │ │ ComVar.ahk
│ │ │ com接口.ahk
│ │ │ ConEmu Settings (2).ahk
│ │ │ ConEmu Settings (5).ahk
│ │ │ ConEmu Settings.ahk
│ │ │ Constantine (12).ahk
│ │ │ Constantine (3).ahk
│ │ │ Constantine (6).ahk
│ │ │ Constantine.ahk
│ │ │ ContextHelp (4).ahk
│ │ │ ContextHelp.ahk
│ │ │ ContextSensitiveHelp.ahk
│ │ │ ControlColor (21).ahk
│ │ │ ControlColor (5).ahk
│ │ │ ControlColor (8).ahk
│ │ │ ControlColor.ahk
│ │ │ Controls (12).ahk
│ │ │ Controls (3).ahk
│ │ │ Controls (6).ahk
│ │ │ Controls.ahk
│ │ │ Core.ahk
│ │ │ CreateFormData.ahk
│ │ │ CreateGradient.ahk
│ │ │ CreateIconsDll.ahk
│ │ │ CSS.ahk
│ │ │ CUnescape.ahk
│ │ │ DBGp (3).ahk
│ │ │ dbgp (4).ahk
│ │ │ DBGp (6).ahk
│ │ │ dbgp.ahk
│ │ │ Debug (3).ahk
│ │ │ Debug (4).ahk
│ │ │ Debug--.ahk
│ │ │ DebugVarsGui (3).ahk
│ │ │ DebugVarsGui (8).ahk
│ │ │ DebugVarsGui.ahk
│ │ │ Default Editor (2).ahk
│ │ │ Default Editor.ahk
│ │ │ Definitions.ahk
│ │ │ Demo.ahk
│ │ │ Designer (3).ahk
│ │ │ Designer (6).ahk
│ │ │ Designer.ahk
│ │ │ Device Installation Settings.ahk
│ │ │ Directives (2).ahk
│ │ │ Directives.ahk
│ │ │ Disk Defragmenter.ahk
│ │ │ Dlg.ahk
│ │ │ EasyIni.ahk
│ │ │ EasyWindowDrag.ahk
│ │ │ EasyWindowDrag_(KDE).ahk
│ │ │ Edit.ahk
│ │ │ Editor (4).ahk
│ │ │ Editor (5).ahk
│ │ │ Editor.ahk
│ │ │ EnumIncludes (2).ahk
│ │ │ EnumIncludes.ahk
│ │ │ ePSXe Video Settings (2).ahk
│ │ │ ePSXe Video Settings.ahk
│ │ │ Error 25.ahk
│ │ │ ErrorView (5).ahk
│ │ │ ErrorView.ahk
│ │ │ Eval (6).ahk
│ │ │ Eval.ahk
│ │ │ Everything.ahk
│ │ │ ExecScript.ahk
│ │ │ Export.ahk
│ │ │ ExportExtension (9).ahk
│ │ │ ExportExtension.ahk
│ │ │ Expressive (4).ahk
│ │ │ Expressive (5).ahk
│ │ │ Expressive.ahk
│ │ │ Extensions (9).ahk
│ │ │ Extensions.ahk
│ │ │ ExtractExtension (9).ahk
│ │ │ ExtractExtension.ahk
│ │ │ ExtractLangFiles.ahk
│ │ │ FatalAppExit.ahk
│ │ │ FavoriteFolders.ahk
│ │ │ fenlei批量分类整理文件9次循环 (7).ahk
│ │ │ fenlei批量分类整理文件9次循环.ahk
│ │ │ FFmpeg Catapult (6).ahk
│ │ │ FFmpeg Catapult.ahk
│ │ │ Filename.ahk
│ │ │ FileZilla Settings (4).ahk
│ │ │ FileZilla Settings.ahk
│ │ │ Find in Files (3).ahk
│ │ │ Find in Files.ahk
│ │ │ FindReplace (3).ahk
│ │ │ FindReplace (4).ahk
│ │ │ FindReplace.ahk
│ │ │ findtext(2).ahk
│ │ │ FindText(英文界面和注释).ahk
│ │ │ FindText.ahk
│ │ │ FLAC Frontend (6).ahk
│ │ │ FLAC Frontend.ahk
│ │ │ Fnt.ahk
│ │ │ FontDialog (3).ahk
│ │ │ FontDialog (6).ahk
│ │ │ FontDialog.ahk
│ │ │ FontDlg (5).ahk
│ │ │ FontDlg.ahk
│ │ │ Functionlist to Markdown .ahk
│ │ │ Gdip.ahk
│ │ │ Gdip_All (5).ahk
│ │ │ Gdip_All.ahk
│ │ │ GenDocs (9).ahk
│ │ │ GenDocs-mod.ahk
│ │ │ GenDocs.ahk
│ │ │ GenerateCode (11).ahk
│ │ │ GenerateCode (5).ahk
│ │ │ GenerateCode.ahk
│ │ │ GenerateDocs (6).ahk
│ │ │ GenerateDocs (8).ahk
│ │ │ GenerateDocs.ahk
│ │ │ GetSciTEInstance.ahk
│ │ │ GlobalMenu.ahk
│ │ │ Globals (3).ahk
│ │ │ Globals (6).ahk
│ │ │ Globals.ahk
│ │ │ Grab and Drag Preferences (6).ahk
│ │ │ Grab and Drag Preferences.ahk
│ │ │ Grippers.ahk
│ │ │ GuiButtonIcon (5).ahk
│ │ │ GuiButtonIcon (8).ahk
│ │ │ GuiButtonIcon.ahk
│ │ │ GuiTabEx (5).ahk
│ │ │ GuiTabEx.ahk
│ │ │ Hotkeys.ahk
│ │ │ HTML.ahk
│ │ │ ie.ahk
│ │ │ IEGet.ahk
│ │ │ IELoad.ahk
│ │ │ IE浏览器.ahk
│ │ │ ILButton.ahk
│ │ │ IL_EX.ahk
│ │ │ Ini2Object.ahk
│ │ │ Input Box (5).ahk
│ │ │ Input Box.ahk
│ │ │ InputBoxEx (2).ahk
│ │ │ InputBoxEx (6).ahk
│ │ │ InputBoxEx.ahk
│ │ │ Installer (7).ahk
│ │ │ Installer (9).ahk
│ │ │ Installer.ahk
│ │ │ IntelliSense.ahk
│ │ │ Internal.ahk
│ │ │ Internet Download Manager Configuration (6).ahk
│ │ │ Internet Download Manager Configuration.ahk
│ │ │ IrfanView Slideshow.ahk
│ │ │ JoystickMouse.ahk
│ │ │ JoystickTest.ahk
│ │ │ JS.ahk
│ │ │ JSON (5).ahk
│ │ │ JSON.ahk
│ │ │ Kanji.ahk
│ │ │ Keyboard (3).ahk
│ │ │ Keyboard.ahk
│ │ │ KeyboardOnScreen.ahk
│ │ │ Keywords (3).ahk
│ │ │ Keywords (6).ahk
│ │ │ Keywords-.ahk
│ │ │ Keywords.ahk
│ │ │ listfunctions.ahk
│ │ │ listmethods.ahk
│ │ │ LVOrder.ahk
│ │ │ LV_GroupView (5).ahk
│ │ │ LV_GroupView.ahk
│ │ │ MacroCreator.ahk
│ │ │ MacroCreator_Help.ahk
│ │ │ MagicBox (12).ahk
│ │ │ MagicBox (6).ahk
│ │ │ MagicBox.ahk
│ │ │ Markdown2HTML (6).ahk
│ │ │ Markdown2HTML (8).ahk
│ │ │ Markdown2HTML.ahk
│ │ │ Menu (4).ahk
│ │ │ Menu (5).ahk
│ │ │ Menu Design Window (7).ahk
│ │ │ Menu Design Window.ahk
│ │ │ Menu.ahk
│ │ │ MenuEditor (12).ahk
│ │ │ MenuEditor (3).ahk
│ │ │ MenuEditor (6).ahk
│ │ │ MenuEditor.ahk
│ │ │ MenuSetup (3).ahk
│ │ │ MenuSetup.ahk
│ │ │ MessageBox.ahk
│ │ │ MessageBoxCheck.ahk
│ │ │ MessageBoxIndirect.ahk
│ │ │ MessageBoxTimeout.ahk
│ │ │ MinimizeToTrayMenu.ahk
│ │ │ Misc.ahk
│ │ │ MsgBoxButtonNames.ahk
│ │ │ MsgBoxC.ahk
│ │ │ MsgBoxEx (5).ahk
│ │ │ MsgBoxEx.ahk
│ │ │ MsiMessageBox.ahk
│ │ │ NewUser.ahk
│ │ │ NonNull.ahk
│ │ │ Notepad (6).ahk
│ │ │ Notepad.ahk
│ │ │ Numpad000.ahk
│ │ │ NumpadMouse.ahk
│ │ │ ParseAHKCode.ahk
│ │ │ ParseAHKCode(备份).ahk
│ │ │ Parser (4).ahk
│ │ │ Parser.ahk
│ │ │ Partition.ahk
│ │ │ Pigeons (5).ahk
│ │ │ Pigeons.ahk
│ │ │ PlatformRead (9).ahk
│ │ │ PlatformRead.ahk
│ │ │ Playback.ahk
│ │ │ Plugins.ahk
│ │ │ PrepExample.ahk
│ │ │ ProfileUpdate (9).ahk
│ │ │ ProfileUpdate.ahk
│ │ │ Progress (5).ahk
│ │ │ Progress.ahk
│ │ │ PropEdit (9).ahk
│ │ │ PropEdit.ahk
│ │ │ Properties (12).ahk
│ │ │ Properties (3).ahk
│ │ │ Properties (6).ahk
│ │ │ Properties.ahk
│ │ │ QRCode.ahk
│ │ │ Recording.ahk
│ │ │ RegEx.ahk
│ │ │ RemoteBuf (5).ahk
│ │ │ RemoteBuf (8).ahk
│ │ │ RemoteBuf.ahk
│ │ │ Resizers.ahk
│ │ │ ResourceID (13).ahk
│ │ │ ResourceID (5).ahk
│ │ │ ResourceID.ahk
│ │ │ RetrieveDocs (6).ahk
│ │ │ RetrieveDocs.ahk
│ │ │ RichCode.ahk
│ │ │ RichEdit.ahk
│ │ │ RightMenuSetup (8).ahk
│ │ │ RightMenuSetup.ahk
│ │ │ run.ahk
│ │ │ RunGetStdout (5).ahk
│ │ │ RunGetStdout.ahk
│ │ │ RunGetStdoutMod.ahk
│ │ │ runtc.ahk
│ │ │ RunWith (9).ahk
│ │ │ RunWith.ahk
│ │ │ RunZ (3).ahk
│ │ │ RunZ (6).ahk
│ │ │ RunZ (9).ahk
│ │ │ RunZ.ahk
│ │ │ RunZCmdTool.ahk
│ │ │ ScheduleTask.ahk
│ │ │ SCI (8).ahk
│ │ │ SCI (9).ahk
│ │ │ SCI.ahk
│ │ │ SciControl (9).ahk
│ │ │ SciControl.ahk
│ │ │ Scintilla (20).ahk
│ │ │ Scintilla (4).ahk
│ │ │ Scintilla (8).ahk
│ │ │ Scintilla (9).ahk
│ │ │ Scintilla.ahk
│ │ │ SciTEDebug (9).ahk
│ │ │ SciTEDebug.ahk
│ │ │ SciTEDiag (9).ahk
│ │ │ SciTEDiag.ahk
│ │ │ SciTEDirector (9).ahk
│ │ │ SciTEDirector.ahk
│ │ │ SciTEMacros (9).ahk
│ │ │ SciTEMacros.ahk
│ │ │ SciTEReload.ahk
│ │ │ SciTEUpdate.ahk
│ │ │ SciTE交互示例 (4).ahk
│ │ │ SciTE交互示例.ahk
│ │ │ SciUtil (9).ahk
│ │ │ SciUtil.ahk
│ │ │ ScriptParser.ahk
│ │ │ Scripts Manager (4).ahk
│ │ │ Scripts Manager.ahk
│ │ │ Seek_(SearchTheStartMenu).ahk
│ │ │ Settings (12).ahk
│ │ │ Settings (3).ahk
│ │ │ Settings (6).ahk
│ │ │ Settings.ahk
│ │ │ setup (2).ahk
│ │ │ Setup.ahk
│ │ │ ShellAbout.ahk
│ │ │ ShellMenu.ahk
│ │ │ ShellMessageBox.ahk
│ │ │ Size Checker.ahk
│ │ │ SmartGUI.ahk
│ │ │ SoftModalMessageBox (12).ahk
│ │ │ SoftModalMessageBox (5).ahk
│ │ │ SoftModalMessageBox.ahk
│ │ │ StrPutVar.ahk
│ │ │ StrStartsWith.ahk
│ │ │ Structor (6).ahk
│ │ │ Structor.ahk
│ │ │ StyleEdit (9).ahk
│ │ │ StyleEdit.ahk
│ │ │ StylesDlg (5).ahk
│ │ │ StylesDlg.ahk
│ │ │ SUpd.ahk
│ │ │ SUtility (8).ahk
│ │ │ SUtility.ahk
│ │ │ System.ahk
│ │ │ TabDrag.ahk
│ │ │ Taskbar and Start Menu Properties (6).ahk
│ │ │ Taskbar and Start Menu Properties.ahk
│ │ │ TaskDialog.ahk
│ │ │ TaskDialogEx (11).ahk
│ │ │ TaskDialogEx (5).ahk
│ │ │ TaskDialogEx.ahk
│ │ │ TB.ahk
│ │ │ TCMatch.ahk
│ │ │ Test.ahk
│ │ │ Test2.ahk
│ │ │ TestExample.ahk
│ │ │ TestLib (9).ahk
│ │ │ TestLib.ahk
│ │ │ TestSuite.ahk
│ │ │ Testws.ahk
│ │ │ TheArkive_CliSAK.ahk
│ │ │ TheArkive_CliSAK_Example.ahk
│ │ │ TheArkive_MsgBox2.ahk
│ │ │ TightVNC Server Configuration (6).ahk
│ │ │ TightVNC Server Configuration.ahk
│ │ │ TillaGoto (9).ahk
│ │ │ TillaGoto.ahk
│ │ │ Toolbar (28).ahk
│ │ │ Toolbar (29).ahk
│ │ │ Toolbar (31).ahk
│ │ │ Toolbar (6).ahk
│ │ │ Toolbar (7).ahk
│ │ │ Toolbar (8).ahk
│ │ │ Toolbar (9).ahk
│ │ │ Toolbar.ahk
│ │ │ ToolbarDlg.ahk
│ │ │ ToolbarEditor (11).ahk
│ │ │ ToolbarEditor (5).ahk
│ │ │ ToolbarEditor.ahk
│ │ │ ToolbarEditorHelp.ahk
│ │ │ ToolsDialog (4).ahk
│ │ │ ToolsDialog.ahk
│ │ │ TooltipMouseMenu.ahk
│ │ │ trace.ahk
│ │ │ translateApi-可调用谷歌及有道翻译.ahk
│ │ │ TreeList (2).ahk
│ │ │ TreeList Test.ahk
│ │ │ TreeList.ahk
│ │ │ TreeListView (3).ahk
│ │ │ TreeListView.ahk
│ │ │ Types (5).ahk
│ │ │ Types.ahk
│ │ │ UltraVNC Server Property Page (6).ahk
│ │ │ UltraVNC Server Property Page.ahk
│ │ │ update.ahk
│ │ │ Util.ahk
│ │ │ VarEditGui (3).ahk
│ │ │ VarEditGui.ahk
│ │ │ VarTreeGui (3).ahk
│ │ │ VarTreeGui.ahk
│ │ │ Verifier.ahk
│ │ │ Virtuoso (11).ahk
│ │ │ Virtuoso (12).ahk
│ │ │ Virtuoso (5).ahk
│ │ │ Virtuoso.ahk
│ │ │ VolumeOSD.ahk
│ │ │ WBGet.ahk
│ │ │ web.ahk
│ │ │ websocket.ahk
│ │ │ webview2.ahk
│ │ │ web库.ahk
│ │ │ window spy.ahk
│ │ │ Windows Live Installer (6).ahk
│ │ │ Windows Live Installer.ahk
│ │ │ Windows Media Player Settings (6).ahk
│ │ │ Windows Media Player Settings.ahk
│ │ │ Windows Run Dialog.ahk
│ │ │ WindowShading.ahk
│ │ │ WindowSpy (6).ahk
│ │ │ WindowSpy (8).ahk
│ │ │ WindowSpy.ahk
│ │ │ Windows消息.ahk
│ │ │ WinHttp (4).ahk
│ │ │ WinHttp.ahk
│ │ │ WinLIRC.ahk
│ │ │ WinRAR - Archive Name and Parameters (6).ahk
│ │ │ WinRAR - Archive Name and Parameters.ahk
│ │ │ WinRAR Settings (6).ahk
│ │ │ WinRAR Settings.ahk
│ │ │ wlist-flh.ahk
│ │ │ WordList.ahk
│ │ │ WTSSendMessage.ahk
│ │ │ XP Support.ahk
│ │ │ XPManifest.ahk
│ │ │ [auto]close.ahk
│ │ │ _GuanLian.ahk
│ │ │ _TotalCMD64.ahk
│ │ │ 主界面.ahk
│ │ │ 以指定代码页计算匹配对象位置及长度 (5).ahk
│ │ │ 以指定代码页计算匹配对象位置及长度.ahk
│ │ │ 函数.ahk
│ │ │ 函数库.ahk
│ │ │ 参考按钮菜单项.ahk
│ │ │ 命令库.ahk
│ │ │ 图片像素搜索.ahk
│ │ │ 备份-4随系统自启动-2021年9月29日.ahk
│ │ │ 安装SciTE (2).ahk
│ │ │ 安装SciTE.ahk
│ │ │ 安装字体.ahk
│ │ │ 定时器.ahk
│ │ │ 小玩具.ahk
│ │ │ 小部分AutoHotkey源代码片段测试模板2019年10月9日.ahk
│ │ │ 常用结构 (2).ahk
│ │ │ 常用结构.ahk
│ │ │ 延续片段学习.ahk
│ │ │ 彩色LV.ahk
│ │ │ 循环结构.ahk
│ │ │ 批量分类整理文件 3次循环.ahk
│ │ │ 批量分类整理文件.ahk
│ │ │ 按照文件扩展名批量分类整理文件-3次循环版.ahk
│ │ │ 控件.ahk
│ │ │ 文件关闭后自动压缩备份文件20190329.ahk
│ │ │ 文本框.ahk
│ │ │ 新建 AutoHotkey Script.ahk
│ │ │ 智能F1.ahk
│ │ │ 智能Tab.ahk
│ │ │ 智能库引用.ahk
│ │ │ 智能提示.ahk
│ │ │ 智能标点.ahk
│ │ │ 暂停.ahk
│ │ │ 杀死进程并删除文件-用于测试.ahk
│ │ │ 桌面图标清理和恢复.ahk
│ │ │ 正则全局模式.ahk
│ │ │ 正则提示菜单.ahk
│ │ │ 水平滚动2.ahk
│ │ │ 测试.ahk
│ │ │ 测试代码.ahk
│ │ │ 消息框华丽版 (4).ahk
│ │ │ 消息框华丽版 (5).ahk
│ │ │ 消息框华丽版.ahk
│ │ │ 消息框(原始版、弃用).ahk
│ │ │ 环境变量.ahk
│ │ │ 电脑屏幕正上方数字时钟.ahk
│ │ │ 界面 (6).ahk
│ │ │ 界面.ahk
│ │ │ 窗口控制.ahk
│ │ │ 等Excel工作簿关闭后自动加密压缩备份2019年10月9日.ahk
│ │ │ 等待按键.ahk
│ │ │ 腾讯文档.ahk
│ │ │ 自动将简要描述翻译为中文.ahk
│ │ │ 自动更新 (4).ahk
│ │ │ 自动更新.ahk
│ │ │ 表格文件关闭后自动备份.ahk
│ │ │ 语音数字v2.5ByFeiYue.ahk
│ │ │ 运行.ahk
│ │ │ 选择结构.ahk
│ │ │ 酷我音乐按照歌手姓名批量下载FLAC音乐 AutoHotkey 脚本2020年10月11日.ahk
│ │ │ 键盘鼠标闲置超时3分钟关闭腾讯微云网盘提高腾讯微云网盘安全性.ahk
│ │ │ 高级模式界面.ahk
│ │ │ 鼠标.ahk
│ │ │
│ │ ├─Compiler
│ │ │ Ahk2Exe.exe
│ │ │ ANSI 32-bit.bin
│ │ │ AutoHotkeySC.bin
│ │ │ Unicode 32-bit.bin
│ │ │ Unicode 64-bit.bin
│ │ │
│ │ ├─SciTE
│ │ │ │ $PORTABLE
│ │ │ │ $VER
│ │ │ │ ahk.abbrevs.properties
│ │ │ │ ahk.api
│ │ │ │ ahk.commands.properties
│ │ │ │ ahk.keywords.properties
│ │ │ │ ahk.properties
│ │ │ │ License.txt
│ │ │ │ lua.properties
│ │ │ │ other.properties
│ │ │ │ platforms.properties
│ │ │ │ SciLexer.dll
│ │ │ │ SciTE.chm
│ │ │ │ SciTE.exe
│ │ │ │ SciTEGlobal.properties
│ │ │ │ tillagoto.properties
│ │ │ │ toolbar.properties
│ │ │ │ toolicon.icl
│ │ │ │ _GuanLian.ahk
│ │ │ │ 任何修改都应在且仅在user目录下进行(内含详情).txt
│ │ │ │ 文件类型运行关联和右键菜单汉化-编译脚本-编译脚本GUI-编辑脚本-GuanLian.zip
│ │ │ │
│ │ │ ├─extensions
│ │ │ │ ahk.lua
│ │ │ │ 新建文件时默认UTF-8带BOM.lua
│ │ │ │ 自动完成增强版.lua
│ │ │ │ 运行选区代码.lua
│ │ │ │
│ │ │ ├─locales
│ │ │ │ 简体中文.locale.properties
│ │ │ │
│ │ │ ├─toolbar
│ │ │ │ │ ComInterface.ahk
│ │ │ │ │ Extensions.ahk
│ │ │ │ │ PlatformRead.ahk
│ │ │ │ │ ProfileUpdate.ahk
│ │ │ │ │ SciTEDirector.ahk
│ │ │ │ │ SciTEMacros.ahk
│ │ │ │ │ Toolbar.ahk
│ │ │ │ │
│ │ │ │ └─Lib
│ │ │ │ CEscape.ahk
│ │ │ │ ComDispatch.ahk
│ │ │ │ ComDispTable.ahk
│ │ │ │ ComRemote.ahk
│ │ │ │ ComVar.ahk
│ │ │ │ CUnescape.ahk
│ │ │ │ ExportExtension.ahk
│ │ │ │ ExtractExtension.ahk
│ │ │ │ Ini2Object.ahk
│ │ │ │ RemoteBuf.ahk
│ │ │ │ SciUtil.ahk
│ │ │ │ StrPutVar.ahk
│ │ │ │ Toolbar.ahk
│ │ │ │
│ │ │ ├─tools
│ │ │ │ │ $gendocs_scite
│ │ │ │ │ 001文件关闭后自动压缩备份文件20190329.ahk
│ │ │ │ │ Autorun.ahk
│ │ │ │ │ NewUser.ahk
│ │ │ │ │ PropEdit.ahk
│ │ │ │ │ SciTEDebug.ahk
│ │ │ │ │ SciTEDiag.ahk
│ │ │ │ │ SciTEReload.ahk
│ │ │ │ │ StyleEdit.ahk
│ │ │ │ │ SUtility.ahk
│ │ │ │ │ TillaGoto.ahk
│ │ │ │ │ __AhkVer.ahk
│ │ │ │ │
│ │ │ │ ├─AHK 正则终结者
│ │ │ │ │ │ AHK 正则终结者.ahk
│ │ │ │ │ │ 正则.ico
│ │ │ │ │ │
│ │ │ │ │ └─Lib
│ │ │ │ │ BTT.ahk
│ │ │ │ │ Gdip_All.ahk
│ │ │ │ │ NonNull.ahk
│ │ │ │ │ RegEx.ahk
│ │ │ │ │ RunWith.ahk
│ │ │ │ │ SCI.ahk
│ │ │ │ │ 主界面.ahk
│ │ │ │ │ 以指定代码页计算匹配对象位置及长度.ahk
│ │ │ │ │ 参考按钮菜单项.ahk
│ │ │ │ │ 智能库引用.ahk
│ │ │ │ │
│ │ │ │ ├─AHK 爬虫终结者
│ │ │ │ │ │ AHK 爬虫终结者.ahk
│ │ │ │ │ │ 爬虫.ico
│ │ │ │ │ │
│ │ │ │ │ ├─jsoneditor-5.15.0
│ │ │ │ │ │ │ jsonEditor.html
│ │ │ │ │ │ │
│ │ │ │ │ │ └─dist
│ │ │ │ │ │ │ jsoneditor.min.css
│ │ │ │ │ │ │ jsoneditor.min.js
│ │ │ │ │ │ │
│ │ │ │ │ │ └─img
│ │ │ │ │ │ jsoneditor-icons.svg
│ │ │ │ │ │
│ │ │ │ │ └─Lib
│ │ │ │ │ BTT.ahk
│ │ │ │ │ Edit.ahk
│ │ │ │ │ Fnt.ahk
│ │ │ │ │ Gdip_All.ahk
│ │ │ │ │ NonNull.ahk
│ │ │ │ │ RegEx.ahk
│ │ │ │ │ WinHttp.ahk
│ │ │ │ │
│ │ │ │ ├─AHK 脚本关联工具
│ │ │ │ │ AHK 脚本关联工具.ahk
│ │ │ │ │
│ │ │ │ ├─AHK-Rare
│ │ │ │ │ │ AHK-Rare.txt
│ │ │ │ │ │ AHK-Rare中文.txt
│ │ │ │ │ │ AHK-Rare中文_deepl.txt
│ │ │ │ │ │ AHKRareTheGui.ahk
│ │ │ │ │ │ Functionlist to Markdown .ahk
│ │ │ │ │ │ README.md
│ │ │ │ │ │ 自动将简要描述翻译为中文.ahk
│ │ │ │ │ │
│ │ │ │ │ ├─assets
│ │ │ │ │ │ AHK-Rare-Logo.png
│ │ │ │ │ │ AHK-Rare-Logo_small.jpg
│ │ │ │ │ │ GemSmall.ico
│ │ │ │ │ │
│ │ │ │ │ ├─lib
│ │ │ │ │ │ │ AutoIndent.ahk
│ │ │ │ │ │ │ class_bcrypt.ahk
│ │ │ │ │ │ │ class_GuiControlTips.ahk
│ │ │ │ │ │ │ JSON.ahk
│ │ │ │ │ │ │ RegEx.ahk
│ │ │ │ │ │ │ RemoteBuf.ahk
│ │ │ │ │ │ │ RichCode-LICENSE
│ │ │ │ │ │ │ RichCode-README.md
│ │ │ │ │ │ │ RichCode.ahk
│ │ │ │ │ │ │ RichEdit.ahk
│ │ │ │ │ │ │ Scintilla.ahk
│ │ │ │ │ │ │
│ │ │ │ │ │ └─Highlighters
│ │ │ │ │ │ AHK.ahk
│ │ │ │ │ │ CSS.ahk
│ │ │ │ │ │ HTML.ahk
│ │ │ │ │ │ JS.ahk
│ │ │ │ │ │ Util.ahk
│ │ │ │ │ │
│ │ │ │ │ └─tools
│ │ │ │ │ Ahk-Rare_Version
│ │ │ │ │ Calculate_AHK-Rare_Version-String.ahk
│ │ │ │ │
│ │ │ │ ├─ahkinfo
│ │ │ │ │ ahkinfo 1.3.5_ahk.txt
│ │ │ │ │ ahkinfo.1.3.5-ahk.ahk
│ │ │ │ │ ahkinfo.exe
│ │ │ │ │
│ │ │ │ ├─AhkSpy
│ │ │ │ │ AhkSpy.ahk
│ │ │ │ │ 窗口信息加强版.ico
│ │ │ │ │
│ │ │ │ ├─AHK_Window_Info
│ │ │ │ │ AHK_Window_Info_v1.7.ahk
│ │ │ │ │ AHK_Window_Info_v1.7.ini
│ │ │ │ │ 窗口信息.ico
│ │ │ │ │
│ │ │ │ ├─Auto-GUI
│ │ │ │ │ │ Auto-GUI.ahk
│ │ │ │ │ │ SciLexer32.dll
│ │ │ │ │ │ SciLexer64.dll
│ │ │ │ │ │ 说明.txt
│ │ │ │ │ │
│ │ │ │ │ ├─Constantine
│ │ │ │ │ │ Constantine.ahk
│ │ │ │ │ │
│ │ │ │ │ ├─Icons
│ │ │ │ │ │ 8x8.bmp
│ │ │ │ │ │ Adventure.icl
│ │ │ │ │ │ Adventure.ico
│ │ │ │ │ │ AhkDirectives.ico
│ │ │ │ │ │ Auto-GUI.icl
│ │ │ │ │ │ AutoTaskMan.icl
│ │ │ │ │ │ A_Variables.ico
│ │ │ │ │ │ Breakpoint.xpm
│ │ │ │ │ │ BugBlue.png
│ │ │ │ │ │ BugRed.png
│ │ │ │ │ │ COM Inspector.ico
│ │ │ │ │ │ Constantine.icl
│ │ │ │ │ │ Constantine.ico
│ │ │ │ │ │ DragMove.cur
│ │ │ │ │ │ Error.xpm
│ │ │ │ │ │ ErrorView.ico
│ │ │ │ │ │ Expressive.icl
│ │ │ │ │ │ Find in Files.icl
│ │ │ │ │ │ Handpoint1.xpm
│ │ │ │ │ │ Handpoint2.xpm
│ │ │ │ │ │ Handpoint3.xpm
│ │ │ │ │ │ Handpoint4.xpm
│ │ │ │ │ │ Keyboard.icl
│ │ │ │ │ │ Keyboard.ico
│ │ │ │ │ │ MagicBox.ico
│ │ │ │ │ │ Search.ico
│ │ │ │ │ │ SidePane.bmp
│ │ │ │ │ │ Sort Panel.ico
│ │ │ │ │ │ Structor.ico
│ │ │ │ │ │ Verifier.ico
│ │ │ │ │ │
│ │ │ │ │ ├─Include
│ │ │ │ │ │ CloneWindow.ahk
│ │ │ │ │ │ Controls.ahk
│ │ │ │ │ │ Designer.ahk
│ │ │ │ │ │ FontDialog.ahk
│ │ │ │ │ │ GenerateCode.ahk
│ │ │ │ │ │ Globals.ahk
│ │ │ │ │ │ Keywords.ahk
│ │ │ │ │ │ MenuEditor.ahk
│ │ │ │ │ │ Properties.ahk
│ │ │ │ │ │ ScriptParser.ahk
│ │ │ │ │ │ Settings.ahk
│ │ │ │ │ │ Styles.ini
│ │ │ │ │ │ ToolbarEditor.ahk
│ │ │ │ │ │ Windows.xml
│ │ │ │ │ │
│ │ │ │ │ ├─Lib
│ │ │ │ │ │ AutoXYWH.ahk
│ │ │ │ │ │ AuxLib.ahk
│ │ │ │ │ │ CommonDialogs.ahk
│ │ │ │ │ │ ControlColor.ahk
│ │ │ │ │ │ CreateGradient.ahk
│ │ │ │ │ │ GuiButtonIcon.ahk
│ │ │ │ │ │ LV_GroupView.ahk
│ │ │ │ │ │ Scintilla.ahk
│ │ │ │ │ │ Toolbar.ahk
│ │ │ │ │ │
│ │ │ │ │ └─Settings
│ │ │ │ │ AHK-Tools.xml
│ │ │ │ │ FileTypes.xml
│ │ │ │ │ Templates.ini
│ │ │ │ │
│ │ │ │ ├─Auto-Syntax-Tidy
│ │ │ │ │ │ Auto-Syntax-Tidy.ahk
│ │ │ │ │ │ Auto-Syntax-Tidy_v12.ahk
│ │ │ │ │ │ 代码格式化.ico
│ │ │ │ │ │
│ │ │ │ │ └─Syntax
│ │ │ │ │ CommandNames.txt
│ │ │ │ │ Functions.txt
│ │ │ │ │ Keys.txt
│ │ │ │ │ Keywords.txt
│ │ │ │ │ Variables.txt
│ │ │ │ │
│ │ │ │ ├─AutoItMacroGenerator
│ │ │ │ │ AutoItMacroGenerator.exe
│ │ │ │ │ MySpy021.dll
│ │ │ │ │ TheHook.dll
│ │ │ │ │ 宏记录器AutoItMacroGenerator.exe
│ │ │ │ │
│ │ │ │ ├─AutoScriptWriter
│ │ │ │ │ ASWHook.dll
│ │ │ │ │ AutoScriptWriter.exe
│ │ │ │ │ AutoScriptWriter.ico
│ │ │ │ │ AutoScriptWriter2.exe
│ │ │ │ │
│ │ │ │ ├─FindText
│ │ │ │ │ FindText.ahk
│ │ │ │ │ FindText.ico
│ │ │ │ │ 作者与作者的其它宝藏.txt
│ │ │ │ │
│ │ │ │ ├─GenDocs
│ │ │ │ │ │ .gitignore
│ │ │ │ │ │ default.css
│ │ │ │ │ │ GenDocs.ahk
│ │ │ │ │ │ README.md
│ │ │ │ │ │
│ │ │ │ │ ├─Demo
│ │ │ │ │ │ ahklogo.png
│ │ │ │ │ │ TestExample.ahk
│ │ │ │ │ │ TestLib.ahk
│ │ │ │ │ │ TestPage.md
│ │ │ │ │ │
│ │ │ │ │ └─Lib
│ │ │ │ │ GenerateDocs.ahk
│ │ │ │ │ Markdown2HTML.ahk
│ │ │ │ │ PrepExample.ahk
│ │ │ │ │ RetrieveDocs.ahk
│ │ │ │ │ StrStartsWith.ahk
│ │ │ │ │
│ │ │ │ ├─Lib
│ │ │ │ │ │ AHKType.ahk
│ │ │ │ │ │ Anchor.ahk
│ │ │ │ │ │ dbgp.ahk
│ │ │ │ │ │ DebugVarsGui.ahk
│ │ │ │ │ │ GetSciTEInstance.ahk
│ │ │ │ │ │ SciControl.ahk
│ │ │ │ │ │ SUpd.ahk
│ │ │ │ │ │
│ │ │ │ │ └─DebugVars
│ │ │ │ │ DebugVarsGui.ahk
│ │ │ │ │ empty.png
│ │ │ │ │ minus.png
│ │ │ │ │ plus.png
│ │ │ │ │ TreeListView.ahk
│ │ │ │ │ VarEditGui.ahk
│ │ │ │ │ VarTreeGui.ahk
│ │ │ │ │
│ │ │ │ ├─MagicBox
│ │ │ │ │ │ MagicBox.ahk
│ │ │ │ │ │ MagicBox.txt
│ │ │ │ │ │ 说明.txt
│ │ │ │ │ │
│ │ │ │ │ ├─Examples
│ │ │ │ │ │ Close Tabs.ahk
│ │ │ │ │ │ Error 25.ahk
│ │ │ │ │ │ Filename.ahk
│ │ │ │ │ │ Input Box.ahk
│ │ │ │ │ │ Partition.ahk
│ │ │ │ │ │ Pigeons.ahk
│ │ │ │ │ │ Progress.ahk
│ │ │ │ │ │ Types.ahk
│ │ │ │ │ │ Virtuoso.ahk
│ │ │ │ │ │ XP Support.ahk
│ │ │ │ │ │
│ │ │ │ │ ├─Functions
│ │ │ │ │ │ FatalAppExit.ahk
│ │ │ │ │ │ InputBoxEx.ahk
│ │ │ │ │ │ MessageBox.ahk
│ │ │ │ │ │ MessageBoxCheck.ahk
│ │ │ │ │ │ MessageBoxIndirect.ahk
│ │ │ │ │ │ MessageBoxTimeout.ahk
│ │ │ │ │ │ MsgBoxEx.ahk
│ │ │ │ │ │ MsiMessageBox.ahk
│ │ │ │ │ │ ShellAbout.ahk
│ │ │ │ │ │ ShellMessageBox.ahk
│ │ │ │ │ │ SoftModalMessageBox.ahk
│ │ │ │ │ │ TaskDialog.ahk
│ │ │ │ │ │ TaskDialogEx.ahk
│ │ │ │ │ │ WTSSendMessage.ahk
│ │ │ │ │ │
│ │ │ │ │ ├─Icons
│ │ │ │ │ │ 8x8.bmp
│ │ │ │ │ │ Adventure.icl
│ │ │ │ │ │ Adventure.ico
│ │ │ │ │ │ AhkDirectives.ico
│ │ │ │ │ │ Auto-GUI.icl
│ │ │ │ │ │ AutoTaskMan.icl
│ │ │ │ │ │ A_Variables.ico
│ │ │ │ │ │ Breakpoint.xpm
│ │ │ │ │ │ BugBlue.png
│ │ │ │ │ │ BugRed.png
│ │ │ │ │ │ COM Inspector.ico
│ │ │ │ │ │ Constantine.icl
│ │ │ │ │ │ Constantine.ico
│ │ │ │ │ │ DragMove.cur
│ │ │ │ │ │ Error.xpm
│ │ │ │ │ │ ErrorView.ico
│ │ │ │ │ │ Expressive.icl
│ │ │ │ │ │ Find in Files.icl
│ │ │ │ │ │ Handpoint1.xpm
│ │ │ │ │ │ Handpoint2.xpm
│ │ │ │ │ │ Handpoint3.xpm
│ │ │ │ │ │ Handpoint4.xpm
│ │ │ │ │ │ Keyboard.icl
│ │ │ │ │ │ Keyboard.ico
│ │ │ │ │ │ MagicBox.ico
│ │ │ │ │ │ Search.ico
│ │ │ │ │ │ SidePane.bmp
│ │ │ │ │ │ Sort Panel.ico
│ │ │ │ │ │ Structor.ico
│ │ │ │ │ │ Verifier.ico
│ │ │ │ │ │
│ │ │ │ │ ├─Lib
│ │ │ │ │ │ AutoXYWH.ahk
│ │ │ │ │ │ CommonDialogs.ahk
│ │ │ │ │ │ ControlColor.ahk
│ │ │ │ │ │ ExecScript.ahk
│ │ │ │ │ │ GuiButtonIcon.ahk
│ │ │ │ │ │ ResourceID.ahk
│ │ │ │ │ │
│ │ │ │ │ └─Settings
│ │ │ │ │ AHK-Tools.xml
│ │ │ │ │ FileTypes.xml
│ │ │ │ │ Templates.ini
│ │ │ │ │
│ │ │ │ ├─SciTE交互示例
│ │ │ │ │ SciTE交互示例.ahk
│ │ │ │ │
│ │ │ │ ├─TestSuite
│ │ │ │ │ TestSuite.ahk
│ │ │ │ │
│ │ │ │ ├─ViewWizard
│ │ │ │ │ ViewWizard.exe
│ │ │ │ │ ViewWizard.ico
│ │ │ │ │
│ │ │ │ ├─WindowSpy
│ │ │ │ │ WindowSpy.ahk
│ │ │ │ │ WindowSpy.exe
│ │ │ │ │
│ │ │ │ ├─安装字体
│ │ │ │ │ Microsoft YaHei Mono.ttf.txt
│ │ │ │ │ 安装字体.ahk
│ │ │ │ │ 安装字体.txt
│ │ │ │ │ 安装字体.zip
│ │ │ │ │
│ │ │ │ ├─智能操作
│ │ │ │ │ 智能F1.ahk
│ │ │ │ │ 智能Tab.ahk
│ │ │ │ │ 智能提示.ahk
│ │ │ │ │ 智能标点.ahk
│ │ │ │ │
│ │ │ │ └─自动更新
│ │ │ │ update.ahk
│ │ │ │ 自动更新.ahk
│ │ │ │
│ │ │ ├─user
│ │ │ │ │ Autorun.ahk
│ │ │ │ │ SciTE.session
│ │ │ │ │ SciTE4AutoHotkey-Plus.style.properties
│ │ │ │ │ SciTEUser.properties
│ │ │ │ │ user.ahk.abbrevs.properties
│ │ │ │ │ user.ahk.api
│ │ │ │ │ UserLuaScript.lua
│ │ │ │ │ UserToolbar.properties
│ │ │ │ │ _config.properties
│ │ │ │ │ _platform.properties
│ │ │ │ │ 用户自定义工具栏-UserToolbar.properties-.zip
│ │ │ │ │
│ │ │ │ ├─Extensions
│ │ │ │ ├─Macros
│ │ │ │ │ Create new class.macro
│ │ │ │ │ Create new function.macro
│ │ │ │ │ If statement.macro
│ │ │ │ │
│ │ │ │ ├─Scriptlets
│ │ │ │ │ (Example) Run or activate Notepad.scriptlet
│ │ │ │ │ Progress text.scriptlet
│ │ │ │ │
│ │ │ │ ├─Settings
│ │ │ │ └─Styles
│ │ │ │ Blank.style.properties
│ │ │ │ Classic.style.properties
│ │ │ │ SciTE4AutoHotkey-Plus.style.properties
│ │ │ │
│ │ │ ├─中文帮助
│ │ │ │ AutoHotkey_CN.chm
│ │ │ │ chm_config.js
│ │ │ │
│ │ │ └─技巧
│ │ │ 1. 自动完成增强版.gif
│ │ │ 10. ctrl+d.gif
│ │ │ 11. ctrl+q.gif
│ │ │ 12. alt+左键.gif
│ │ │ 13. ctrl+左键.gif
│ │ │ 14. ctrl+b.gif
│ │ │ 15. 创建GUI.png
│ │ │ 16. 创建对话框.png
│ │ │ 17. 可搜索函数库 (1).png
│ │ │ 17. 可搜索函数库 (2).png
│ │ │ 18. 获取窗口信息.png
│ │ │ 19. 获取窗口信息增强版.png
│ │ │ 2. 智能Tab.gif
│ │ │ 20. 调试正则表达式.png
│ │ │ 21. 调试爬虫.png
│ │ │ 22. 找字识图取色 (1).png
│ │ │ 22. 找字识图取色 (2).png
│ │ │ 22. 找字识图取色 (3).png
│ │ │ 23. 集成等宽字体.png
│ │ │ 3. 智能F1.gif
│ │ │ 4. 调试代码.gif
│ │ │ 5. 运行选区代码.gif
│ │ │ 6. 自动缩进.gif
│ │ │ 7. 代码格式化.gif
│ │ │ 8. 热键、标签、函数识别并跳转.gif
│ │ │ 9. 切换ahk版本.gif
│ │ │ 技巧说明.html
│ │ │
│ │ ├─图标
│ │ │ 16.ico
│ │ │ 32.ico
│ │ │ 48.ico
│ │ │ Delphi.ico
│ │ │ HDD (red).ico
│ │ │ ico (2).ico
│ │ │ ico-48X48.ico
│ │ │ ico.ico
│ │ │ ico2.ico
│ │ │ ico64.ico
│ │ │ laccess1.ico
│ │ │ lactivate1.ico
│ │ │ lcommu1.ico
│ │ │ lcss1.ico
│ │ │ ldpower1.ico
│ │ │ lenovo.ico
│ │ │ lfinger1.ico
│ │ │ lmedia1.ico
│ │ │ lmsgCntr1.ico
│ │ │ lpower1.ico
│ │ │ lrescue1.ico
│ │ │ lsc1.ico
│ │ │ ltools1.ico
│ │ │ ltsro1.ico
│ │ │ lupdate1.ico
│ │ │ luserguide1.ico
│ │ │ lvwmgr1.ico
│ │ │ Project1_Icon.ico
│ │ │ QuickControl1.ico
│ │ │ QuickDisplay1.ico
│ │ │ rainbow.ico
│ │ │ swift_icon.ico
│ │ │ ucloudbiz_icon.ico
│ │ │
│ │ └─电子书
│ │ AhkDll.chm
│ │
│ ├─Everything
│ │ Everything.exe
│ │ Everything.lng
│ │
│ ├─FolderSizes
│ │ FolderSizes.exe
│ │
│ ├─FSCapture
│ │ │ fsc.db
│ │ │ FSCapture.exe
│ │ │ FSCrossHair.exe
│ │ │ FSFocus.exe
│ │ │ fsrec.db
│ │ │ FSRecorder.exe
│ │ │ Portable.db
│ │ │ TBSettings.db
│ │ │
│ │ └─Languages
│ │ FSC02.fslang
│ │ FSC03.fslang
│ │
│ ├─Hash
│ │ Hash.exe
│ │
│ ├─IObitUnlocker
│ │ IObitUnlocker.exe
│ │
│ ├─JexChan
│ │ JexChan.exe
│ │
│ ├─KeePass
│ │ │ KeePass.config.xml
│ │ │ KeePass.config.zip
│ │ │ KeePass.exe
│ │ │ KeePass远程连接坚果云的WebDAV文件服务.txt
│ │ │
│ │ └─Languages
│ │ Chinese_Simplified.lngx
│ │
│ ├─Maye
│ │ │ app.arae
│ │ │ cfg.ini
│ │ │ cfg.zip
│ │ │ JDB.json
│ │ │ Maye.exe
│ │ │ MB.dll
│ │ │ 图标快捷方式数据文件JDB.rar
│ │ │ 设置配置-cfg.zip
│ │ │
│ │ ├─bak
│ │ │ JDB-20220113_094958.json
│ │ │
│ │ ├─cache
│ │ │ │ MemoryCache.dat
│ │ │ │ MemoryCacheKey.json
│ │ │ │
│ │ │ ├─icon
│ │ │ │ 1000.png
│ │ │ │ 1001.png
│ │ │ │ 1002.png
│ │ │ │ 1003.png
│ │ │ │ 1004.png
│ │ │ │ 1005.png
│ │ │ │ 1006.png
│ │ │ │ 1007.png
│ │ │ │ 1008.png
│ │ │ │ 1010.png
│ │ │ │ 1011.png
│ │ │ │ 1012.png
│ │ │ │ 1013.png
│ │ │ │ 1015.png
│ │ │ │ 1016.png
│ │ │ │ 1018.png
│ │ │ │ 1019.png
│ │ │ │ 1020.png
│ │ │ │ 1021.png
│ │ │ │ 1022.png
│ │ │ │ 1023.png
│ │ │ │
│ │ │ └─search
│ │ └─skin
│ │ Black-1.less
│ │ Black-2.less
│ │ Black-3.less
│ │ Black-4.less
│ │ Blue-1.less
│ │ Blue-2.less
│ │ Blue-3.less
│ │ Blue-4.less
│ │ Blue-Dark-1.less
│ │ Blue-Dark-2.less
│ │ Blue-Dark-3.less
│ │ BlueWhite-1.less
│ │ BlueWhite-2.less
│ │ BlueWhite-3.less
│ │ BlueWhite-4.less
│ │ BlueWhite-Dark-1.less
│ │ BlueWhite-Dark-2.less
│ │ BlueWhite-Dark-3.less
│ │ Brown-1.less
│ │ Brown-2.less
│ │ Brown-3.less
│ │ BrownWhite-1.less
│ │ BrownWhite-2.less
│ │ BrownWhite-3.less
│ │ default.less
│ │ Gray-1.less
│ │ GrayWhite-1.less
│ │ Green-1.less
│ │ Green-2.less
│ │ Green-3.less
│ │ GreenWhite-1.less
│ │ GreenWhite-2.less
│ │ GreenWhite-3.less
│ │ Orange-1.less
│ │ OrangeWhite-1.less
│ │ Pink-1.less
│ │ PinkWhite-1.less
│ │ PinkWhite-2.less
│ │ Purple-1.less
│ │ Purple-2.less
│ │ PurpleWhite-1.less
│ │ PurpleWhite-2.less
│ │ Red-1.less
│ │ Red-2.less
│ │ RedWhite-1.less
│ │ RedWhite-2.less
│ │ Win11-Dark-lite.less
│ │ Win11-Dark.less
│ │ Win11-Light-lite.less
│ │ Win11-Light.less
│ │
│ ├─Robocopy
│ │ rebocopy.exe
│ │ ROBOCOPY-Test.txt
│ │ ROBOCOPY-Test.zip
│ │ Robocopy.docx
│ │ Robocopy.exe
│ │ Robocopy.pdf
│ │ Robocopy51.exe
│ │ Robocopy64.exe
│ │ Robocopy_txt.txt
│ │
│ ├─TotalCMD
│ │ │ Noclose.exe
│ │ │ run.ahk
│ │ │ run.exe
│ │ │ Share_nt.exe
│ │ │ TCMAdmin.exe
│ │ │ TCMDx64.exe
│ │ │ TCUsbrun.exe
│ │ │ TotalCMD.exe
│ │ │ TotalCMD.inc
│ │ │ WC32to16.exe
│ │ │ WinCMD.ini
│ │ │ Wincmd.key
│ │ │
│ │ ├─Language
│ │ │ Wcmd_chn.chm
│ │ │ Wcmd_chn.inc
│ │ │ Wcmd_chn.ini
│ │ │ Wcmd_chn.lng
│ │ │ Wcmd_chn.mnu
│ │ │
│ │ └─User
│ │ History.ini
│ │ TCIgnore.ini
│ │ Tclog.txt
│ │ TC用户操作记录-Tclog.zip
│ │ User.ini
│ │ 左右子窗口浏览访问历史记录列表清单-History.zip
│ │ 快捷键Ctrl+D常用文件夹快捷访问菜单和左右子窗口默认文件夹-User.zip
│ │
│ ├─TrafficMonitor
│ │ │ config.ini
│ │ │ global_cfg.ini
│ │ │ history_traffic.dat
│ │ │ TrafficMonitor.exe
│ │ │ TrafficMonitor.VisualElementsManifest.xml
│ │ │
│ │ ├─Logo
│ │ │ TrafficMonitor.150x150Logo.png
│ │ │ TrafficMonitor.70x70Logo.png
│ │ │
│ │ └─skins
│ │ ├─0默认皮肤
│ │ │ background.bmp
│ │ │ background_l.bmp
│ │ │ background_mask.bmp
│ │ │ background_mask_l.bmp
│ │ │ skin.ini
│ │ │
│ │ ├─皮肤01
│ │ │ background.bmp
│ │ │ background_l.bmp
│ │ │ background_mask.bmp
│ │ │ background_mask_l.bmp
│ │ │ skin.ini
│ │ │
│ │ ├─皮肤02
│ │ │ background.bmp
│ │ │ background_l.bmp
│ │ │ background_mask.bmp
│ │ │ background_mask_l.bmp
│ │ │ skin.ini
│ │ │
│ │ ├─皮肤03
│ │ │ background.bmp
│ │ │ background_l.bmp
│ │ │ skin.ini
│ │ │
│ │ ├─皮肤04
│ │ │ background.bmp
│ │ │ background_l.bmp
│ │ │ skin.ini
│ │ │
│ │ ├─皮肤05
│ │ │ background.bmp
│ │ │ background_l.bmp
│ │ │ skin.ini
│ │ │
│ │ ├─皮肤06
│ │ │ background.bmp
│ │ │ background_l.bmp
│ │ │ skin.ini
│ │ │
│ │ ├─皮肤07
│ │ │ background.bmp
│ │ │ background_l.bmp
│ │ │ skin.ini
│ │ │
│ │ ├─皮肤08
│ │ │ background.bmp
│ │ │ background_l.bmp
│ │ │ skin.ini
│ │ │
│ │ ├─皮肤09
│ │ │ background.bmp
│ │ │ background_l.bmp
│ │ │ skin.ini
│ │ │
│ │ ├─皮肤10
│ │ │ background.bmp
│ │ │ background_l.bmp
│ │ │ skin.ini
│ │ │
│ │ ├─皮肤11
│ │ │ background.bmp
│ │ │ background_l.bmp
│ │ │ skin.ini
│ │ │
│ │ └─皮肤12
│ │ background.bmp
│ │ background_l.bmp
│ │ skin.xml
│ │
│ ├─xcopy
│ │ xcopy.exe
│ │
│ └─腾讯文档
│ 使用说明 腾讯文档 docs.qq.com.gif
│ 使用说明 腾讯文档 docs.qq.com.jpg
│ 使用说明 腾讯文档 docs.qq.com.png
│ 腾讯文档.ahk
│ 腾讯文档.bat
│ 腾讯文档.url
│ 腾讯文档.vbs
│
├─Program-2
│ ├─CGI-plus
│ │ CGI-plus.exe
│ │
│ ├─FileZillaPro
│ │ │ FileZillaPro.exe
│ │ │ FileZillaPro.jpg
│ │ │ fzdefaults.xml
│ │ │ fzputtygen.exe
│ │ │ fzregutil.exe
│ │ │ fzsftp.exe
│ │ │ fzshellext.dll
│ │ │ fzshellext_64.dll
│ │ │ fzstorj.exe
│ │ │ GPL.html
│ │ │ libfilezilla-13.dll
│ │ │ libfilezilla-22.dll
│ │ │ libfzpro-commonui-private-3-54-1.dll
│ │ │ libfzpro-commonui-private-3-56-1.dll
│ │ │ libfzpro-private-3-54-1.dll
│ │ │ libfzpro-private-3-56-1.dll
│ │ │ libgcc_s_seh-1.dll
│ │ │ libgcc_s_sjlj-1.dll
│ │ │ libgmp-10.dll
│ │ │ libgnutls-30.dll
│ │ │ libhogweed-6.dll
│ │ │ libjson-c-4.dll
│ │ │ libnettle-8.dll
│ │ │ libpng16-16.dll
│ │ │ libsqlite3-0.dll
│ │ │ libstdc++-6.dll
│ │ │ msimg32.dll
│ │ │ run.vbs
│ │ │ uninstall.exe
│ │ │ wxbase30u_gcc_custom.dll
│ │ │ wxbase30u_xml_gcc_custom.dll
│ │ │ wxmsw30u_adv_gcc_custom.dll
│ │ │ wxmsw30u_aui_gcc_custom.dll
│ │ │ wxmsw30u_core_gcc_custom.dll
│ │ │ wxmsw30u_xrc_gcc_custom.dll
│ │ │ zlib1.dll
│ │ │ 图标52.ico
│ │ │
│ │ ├─Data
│ │ │ filezilla.xml
│ │ │ layout.xml
│ │ │ queue.sqlite3
│ │ │ sitemanager.xml
│ │ │ tokenstore.xml
│ │ │ trustedcerts.xml
│ │ │ 站点管理器-我的站点-sitemanager - 副本.zip
│ │ │ 站点管理器-我的站点-sitemanager.zip
│ │ │
│ │ ├─docs
│ │ │ fzdefaults.xml.example
│ │ │ terms.md
│ │ │
│ │ ├─filezillacfg
│ │ │ filezilla.xml
│ │ │ layout.xml
│ │ │ sitemanager.xml
│ │ │ tokenstore.xml
│ │ │ trustedcerts.xml
│ │ │ 传输队列记录保存在此文件中请不要覆盖原有传输队列queue.sqlite3
│ │ │
│ │ ├─locales
│ │ │ ├─an
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─ar
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─az
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─bg_BG
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─ca
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─ca_ES@valencia
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─co
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─cs_CZ
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─cy
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─da
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─de
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─el
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─es
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─et
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─eu
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─fa_IR
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─fi_FI
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─fr
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─gl_ES
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─he_IL
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─hr
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─hu_HU
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─hy
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─id_ID
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─is
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─it
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─ja_JP
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─ka
│ │ │ │ filezilla.mo
│ │ │ │
│ │ │ ├─kab
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─km_KH
│ │ │ │ filezilla.mo
│ │ │ │
│ │ │ ├─ko_KR
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─ku
│ │ │ │ filezilla.mo
│ │ │ │
│ │ │ ├─ky
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─lo_LA
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─lt_LT
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─lv_LV
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─mk_MK
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─nb_NO
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─ne
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─nl
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─nn_NO
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─oc
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─pl_PL
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─pt_BR
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─pt_PT
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─ro_RO
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─ru
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─sk_SK
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─sl_SI
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─sr
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─sv
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─ta
│ │ │ │ filezilla.mo
│ │ │ │
│ │ │ ├─th_TH
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─tr
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─uk_UA
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─vi_VN
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ ├─zh_CN
│ │ │ │ filezilla.mo
│ │ │ │ libfilezilla.mo
│ │ │ │
│ │ │ └─zh_TW
│ │ │ filezilla.mo
│ │ │ libfilezilla.mo
│ │ │
│ │ └─resources
│ │ │ defaultfilters.xml
│ │ │ finished.wav
│ │ │
│ │ ├─16x16
│ │ │ filezilla.png
│ │ │ throbber.gif
│ │ │ unknown.png
│ │ │
│ │ ├─20x20
│ │ │ unknown.png
│ │ │
│ │ ├─24x24
│ │ │ unknown.png
│ │ │
│ │ ├─32x32
│ │ │ filezilla.png
│ │ │
│ │ ├─480x480
│ │ │ filezilla.png
│ │ │ filezilla_pro.png
│ │ │
│ │ ├─48x48
│ │ │ filezilla.png
│ │ │
│ │ ├─blukis
│ │ │ │ theme.xml
│ │ │ │
│ │ │ ├─16x16
│ │ │ │ ascii.png
│ │ │ │ auto.png
│ │ │ │ binary.png
│ │ │ │ bookmark.png
│ │ │ │ bookmarks.png
│ │ │ │ cancel.png
│ │ │ │ compare.png
│ │ │ │ disconnect.png
│ │ │ │ download.png
│ │ │ │ downloadadd.png
│ │ │ │ file.png
│ │ │ │ filter.png
│ │ │ │ find.png
│ │ │ │ folder.png
│ │ │ │ folderback.png
│ │ │ │ folderclosed.png
│ │ │ │ folderup.png
│ │ │ │ help.png
│ │ │ │ localtreeview.png
│ │ │ │ lock.png
│ │ │ │ logview.png
│ │ │ │ processqueue.png
│ │ │ │ queueview.png
│ │ │ │ reconnect.png
│ │ │ │ refresh.png
│ │ │ │ remotetreeview.png
│ │ │ │ server.png
│ │ │ │ showhidden.png
│ │ │ │ sitemanager.png
│ │ │ │ speedlimits.png
│ │ │ │ symlink.png
│ │ │ │ synchronize.png
│ │ │ │ upload.png
│ │ │ │ uploadadd.png
│ │ │ │
│ │ │ ├─32x32
│ │ │ │ ascii.png
│ │ │ │ auto.png
│ │ │ │ binary.png
│ │ │ │ bookmark.png
│ │ │ │ bookmarks.png
│ │ │ │ cancel.png
│ │ │ │ compare.png
│ │ │ │ disconnect.png
│ │ │ │ download.png
│ │ │ │ downloadadd.png
│ │ │ │ file.png
│ │ │ │ filter.png
│ │ │ │ find.png
│ │ │ │ folder.png
│ │ │ │ folderback.png
│ │ │ │ folderclosed.png
│ │ │ │ folderup.png
│ │ │ │ help.png
│ │ │ │ localtreeview.png
│ │ │ │ lock.png
│ │ │ │ logview.png
│ │ │ │ processqueue.png
│ │ │ │ queueview.png
│ │ │ │ reconnect.png
│ │ │ │ refresh.png
│ │ │ │ remotetreeview.png
│ │ │ │ server.png
│ │ │ │ showhidden.png
│ │ │ │ sitemanager.png
│ │ │ │ speedlimits.png
│ │ │ │ symlink.png
│ │ │ │ synchronize.png
│ │ │ │ upload.png
│ │ │ │ uploadadd.png
│ │ │ │
│ │ │ └─48x48
│ │ │ ascii.png
│ │ │ auto.png
│ │ │ binary.png
│ │ │ bookmark.png
│ │ │ bookmarks.png
│ │ │ cancel.png
│ │ │ compare.png
│ │ │ disconnect.png
│ │ │ download.png
│ │ │ downloadadd.png
│ │ │ file.png
│ │ │ filter.png
│ │ │ find.png
│ │ │ folder.png
│ │ │ folderback.png
│ │ │ folderclosed.png
│ │ │ folderup.png
│ │ │ help.png
│ │ │ localtreeview.png
│ │ │ lock.png
│ │ │ logview.png
│ │ │ processqueue.png
│ │ │ queueview.png
│ │ │ reconnect.png
│ │ │ refresh.png
│ │ │ remotetreeview.png
│ │ │ server.png
│ │ │ showhidden.png
│ │ │ sitemanager.png
│ │ │ speedlimits.png
│ │ │ symlink.png
│ │ │ synchronize.png
│ │ │ upload.png
│ │ │ uploadadd.png
│ │ │
│ │ ├─classic
│ │ │ │ theme.xml
│ │ │ │
│ │ │ └─16x16
│ │ │ ascii.png
│ │ │ auto.png
│ │ │ binary.png
│ │ │ bookmark.png
│ │ │ cancel.png
│ │ │ compare.png
│ │ │ disconnect.png
│ │ │ download.png
│ │ │ downloadadd.png
│ │ │ file.png
│ │ │ filter.png
│ │ │ find.png
│ │ │ folder.png
│ │ │ folderclosed.png
│ │ │ localtreeview.png
│ │ │ lock.png
│ │ │ logview.png
│ │ │ processqueue.png
│ │ │ queueview.png
│ │ │ reconnect.png
│ │ │ refresh.png
│ │ │ remotetreeview.png
│ │ │ server.png
│ │ │ sitemanager.png
│ │ │ speedlimits.png
│ │ │ symlink.png
│ │ │ synchronize.png
│ │ │ upload.png
│ │ │ uploadadd.png
│ │ │
│ │ ├─cyril
│ │ │ │ theme.xml
│ │ │ │
│ │ │ └─16x16
│ │ │ ascii.png
│ │ │ auto.png
│ │ │ binary.png
│ │ │ bookmark.png
│ │ │ cancel.png
│ │ │ compare.png
│ │ │ disconnect.png
│ │ │ download.png
│ │ │ downloadadd.png
│ │ │ file.png
│ │ │ folder.png
│ │ │ folderback.png
│ │ │ folderclosed.png
│ │ │ folderup.png
│ │ │ help.png
│ │ │ localtreeview.png
│ │ │ logview.png
│ │ │ processqueue.png
│ │ │ queueview.png
│ │ │ reconnect.png
│ │ │ refresh.png
│ │ │ remotetreeview.png
│ │ │ server.png
│ │ │ showhidden.png
│ │ │ sitemanager.png
│ │ │ speedlimits.png
│ │ │ synchronize.png
│ │ │ upload.png
│ │ │ uploadadd.png
│ │ │
│ │ ├─default
│ │ │ │ theme.xml
│ │ │ │
│ │ │ └─480x480
│ │ │ acl.png
│ │ │ ascii.png
│ │ │ auto.png
│ │ │ binary.png
│ │ │ bookmark.png
│ │ │ bookmarks.png
│ │ │ cancel.png
│ │ │ close.png
│ │ │ compare.png
│ │ │ disconnect.png
│ │ │ download.png
│ │ │ downloadadd.png
│ │ │ dropdown.png
│ │ │ file.png
│ │ │ filter.png
│ │ │ find.png
│ │ │ folder.png
│ │ │ folderback.png
│ │ │ folderclosed.png
│ │ │ folderup.png
│ │ │ help.png
│ │ │ leds.png
│ │ │ localtreeview.png
│ │ │ lock.png
│ │ │ logview.png
│ │ │ processqueue.png
│ │ │ queueview.png
│ │ │ reconnect.png
│ │ │ refresh.png
│ │ │ remotetreeview.png
│ │ │ server.png
│ │ │ showhidden.png
│ │ │ sitemanager.png
│ │ │ sort_down_dark.png
│ │ │ sort_down_light.png
│ │ │ sort_up_dark.png
│ │ │ sort_up_light.png
│ │ │ speedlimits.png
│ │ │ storageclass.png
│ │ │ symlink.png
│ │ │ synchronize.png
│ │ │ synctransfer.png
│ │ │ upload.png
│ │ │ uploadadd.png
│ │ │
│ │ ├─flatzilla
│ │ │ │ theme.xml
│ │ │ │
│ │ │ ├─16x16
│ │ │ │ ascii.png
│ │ │ │ auto.png
│ │ │ │ binary.png
│ │ │ │ bookmark.png
│ │ │ │ cancel.png
│ │ │ │ compare.png
│ │ │ │ disconnect.png
│ │ │ │ download.png
│ │ │ │ downloadadd.png
│ │ │ │ file.png
│ │ │ │ filter.png
│ │ │ │ find.png
│ │ │ │ folder.png
│ │ │ │ folderclosed.png
│ │ │ │ help.png
│ │ │ │ leds.png
│ │ │ │ localtreeview.png
│ │ │ │ lock.png
│ │ │ │ logview.png
│ │ │ │ processqueue.png
│ │ │ │ queueview.png
│ │ │ │ reconnect.png
│ │ │ │ refresh.png
│ │ │ │ remotetreeview.png
│ │ │ │ server.png
│ │ │ │ sitemanager.png
│ │ │ │ speedlimits.png
│ │ │ │ synchronize.png
│ │ │ │ upload.png
│ │ │ │ uploadadd.png
│ │ │ │
│ │ │ ├─24x24
│ │ │ │ ascii.png
│ │ │ │ auto.png
│ │ │ │ binary.png
│ │ │ │ bookmark.png
│ │ │ │ cancel.png
│ │ │ │ compare.png
│ │ │ │ disconnect.png
│ │ │ │ download.png
│ │ │ │ downloadadd.png
│ │ │ │ file.png
│ │ │ │ filter.png
│ │ │ │ find.png
│ │ │ │ folder.png
│ │ │ │ folderclosed.png
│ │ │ │ help.png
│ │ │ │ leds.png
│ │ │ │ localtreeview.png
│ │ │ │ lock.png
│ │ │ │ logview.png
│ │ │ │ processqueue.png
│ │ │ │ queueview.png
│ │ │ │ reconnect.png
│ │ │ │ refresh.png
│ │ │ │ remotetreeview.png
│ │ │ │ server.png
│ │ │ │ sitemanager.png
│ │ │ │ speedlimits.png
│ │ │ │ synchronize.png
│ │ │ │ upload.png
│ │ │ │ uploadadd.png
│ │ │ │
│ │ │ ├─32x32
│ │ │ │ ascii.png
│ │ │ │ auto.png
│ │ │ │ binary.png
│ │ │ │ bookmark.png
│ │ │ │ cancel.png
│ │ │ │ compare.png
│ │ │ │ disconnect.png
│ │ │ │ download.png
│ │ │ │ downloadadd.png
│ │ │ │ file.png
│ │ │ │ filter.png
│ │ │ │ find.png
│ │ │ │ folder.png
│ │ │ │ folderclosed.png
│ │ │ │ help.png
│ │ │ │ leds.png
│ │ │ │ localtreeview.png
│ │ │ │ lock.png
│ │ │ │ logview.png
│ │ │ │ processqueue.png
│ │ │ │ queueview.png
│ │ │ │ reconnect.png
│ │ │ │ refresh.png
│ │ │ │ remotetreeview.png
│ │ │ │ server.png
│ │ │ │ sitemanager.png
│ │ │ │ speedlimits.png
│ │ │ │ synchronize.png
│ │ │ │ upload.png
│ │ │ │ uploadadd.png
│ │ │ │
│ │ │ └─48x48
│ │ │ ascii.png
│ │ │ auto.png
│ │ │ binary.png
│ │ │ bookmark.png
│ │ │ cancel.png
│ │ │ compare.png
│ │ │ disconnect.png
│ │ │ download.png
│ │ │ downloadadd.png
│ │ │ file.png
│ │ │ filter.png
│ │ │ find.png
│ │ │ folder.png
│ │ │ folderclosed.png
│ │ │ help.png
│ │ │ leds.png
│ │ │ localtreeview.png
│ │ │ lock.png
│ │ │ logview.png
│ │ │ processqueue.png
│ │ │ queueview.png
│ │ │ reconnect.png
│ │ │ refresh.png
│ │ │ remotetreeview.png
│ │ │ server.png
│ │ │ sitemanager.png
│ │ │ speedlimits.png
│ │ │ synchronize.png
│ │ │ upload.png
│ │ │ uploadadd.png
│ │ │
│ │ ├─lone
│ │ │ │ theme.xml
│ │ │ │
│ │ │ ├─16x16
│ │ │ │ ascii.png
│ │ │ │ auto.png
│ │ │ │ binary.png
│ │ │ │ bookmark.png
│ │ │ │ cancel.png
│ │ │ │ compare.png
│ │ │ │ disconnect.png
│ │ │ │ download.png
│ │ │ │ downloadadd.png
│ │ │ │ file.png
│ │ │ │ filter.png
│ │ │ │ folder.png
│ │ │ │ folderback.png
│ │ │ │ folderclosed.png
│ │ │ │ folderup.png
│ │ │ │ help.png
│ │ │ │ localtreeview.png
│ │ │ │ lock.png
│ │ │ │ logview.png
│ │ │ │ processqueue.png
│ │ │ │ queueview.png
│ │ │ │ reconnect.png
│ │ │ │ refresh.png
│ │ │ │ remotetreeview.png
│ │ │ │ server.png
│ │ │ │ showhidden.png
│ │ │ │ sitemanager.png
│ │ │ │ speedlimits.png
│ │ │ │ synchronize.png
│ │ │ │ upload.png
│ │ │ │ uploadadd.png
│ │ │ │
│ │ │ ├─32x32
│ │ │ │ ascii.png
│ │ │ │ auto.png
│ │ │ │ binary.png
│ │ │ │ bookmark.png
│ │ │ │ cancel.png
│ │ │ │ compare.png
│ │ │ │ disconnect.png
│ │ │ │ download.png
│ │ │ │ downloadadd.png
│ │ │ │ file.png
│ │ │ │ filter.png
│ │ │ │ folder.png
│ │ │ │ folderback.png
│ │ │ │ folderclosed.png
│ │ │ │ folderup.png
│ │ │ │ help.png
│ │ │ │ localtreeview.png
│ │ │ │ lock.png
│ │ │ │ logview.png
│ │ │ │ processqueue.png
│ │ │ │ queueview.png
│ │ │ │ reconnect.png
│ │ │ │ refresh.png
│ │ │ │ remotetreeview.png
│ │ │ │ showhidden.png
│ │ │ │ sitemanager.png
│ │ │ │ speedlimits.png
│ │ │ │ synchronize.png
│ │ │ │ upload.png
│ │ │ │ uploadadd.png
│ │ │ │
│ │ │ └─48x48
│ │ │ ascii.png
│ │ │ auto.png
│ │ │ binary.png
│ │ │ bookmark.png
│ │ │ cancel.png
│ │ │ compare.png
│ │ │ disconnect.png
│ │ │ download.png
│ │ │ downloadadd.png
│ │ │ file.png
│ │ │ filter.png
│ │ │ folder.png
│ │ │ folderback.png
│ │ │ folderclosed.png
│ │ │ folderup.png
│ │ │ help.png
│ │ │ localtreeview.png
│ │ │ lock.png
│ │ │ logview.png
│ │ │ processqueue.png
│ │ │ queueview.png
│ │ │ reconnect.png
│ │ │ refresh.png
│ │ │ remotetreeview.png
│ │ │ showhidden.png
│ │ │ sitemanager.png
│ │ │ speedlimits.png
│ │ │ synchronize.png
│ │ │ upload.png
│ │ │ uploadadd.png
│ │ │
│ │ ├─minimal
│ │ │ │ theme.xml
│ │ │ │
│ │ │ ├─16x16
│ │ │ │ ascii.png
│ │ │ │ auto.png
│ │ │ │ binary.png
│ │ │ │ bookmark.png
│ │ │ │ bookmarks.png
│ │ │ │ cancel.png
│ │ │ │ compare.png
│ │ │ │ disconnect.png
│ │ │ │ download.png
│ │ │ │ downloadadd.png
│ │ │ │ file.png
│ │ │ │ filter.png
│ │ │ │ find.png
│ │ │ │ folder.png
│ │ │ │ folderback.png
│ │ │ │ folderclosed.png
│ │ │ │ folderup.png
│ │ │ │ help.png
│ │ │ │ localtreeview.png
│ │ │ │ lock.png
│ │ │ │ logview.png
│ │ │ │ processqueue.png
│ │ │ │ queueview.png
│ │ │ │ reconnect.png
│ │ │ │ refresh.png
│ │ │ │ remotetreeview.png
│ │ │ │ server.png
│ │ │ │ showhidden.png
│ │ │ │ sitemanager.png
│ │ │ │ speedlimits.png
│ │ │ │ synchronize.png
│ │ │ │ upload.png
│ │ │ │ uploadadd.png
│ │ │ │
│ │ │ └─32x32
│ │ │ file.png
│ │ │
│ │ ├─opencrystal
│ │ │ │ theme.xml
│ │ │ │
│ │ │ ├─16x16
│ │ │ │ ascii.png
│ │ │ │ auto.png
│ │ │ │ binary.png
│ │ │ │ bookmark.png
│ │ │ │ cancel.png
│ │ │ │ compare.png
│ │ │ │ disconnect.png
│ │ │ │ download.png
│ │ │ │ downloadadd.png
│ │ │ │ file.png
│ │ │ │ filter.png
│ │ │ │ find.png
│ │ │ │ folder.png
│ │ │ │ folderback.png
│ │ │ │ folderclosed.png
│ │ │ │ folderup.png
│ │ │ │ help.png
│ │ │ │ localtreeview.png
│ │ │ │ lock.png
│ │ │ │ logview.png
│ │ │ │ processqueue.png
│ │ │ │ queueview.png
│ │ │ │ reconnect.png
│ │ │ │ refresh.png
│ │ │ │ remotetreeview.png
│ │ │ │ server.png
│ │ │ │ showhidden.png
│ │ │ │ sitemanager.png
│ │ │ │ speedlimits.png
│ │ │ │ synchronize.png
│ │ │ │ upload.png
│ │ │ │ uploadadd.png
│ │ │ │
│ │ │ ├─20x20
│ │ │ │ server.png
│ │ │ │
│ │ │ ├─24x24
│ │ │ │ server.png
│ │ │ │
│ │ │ ├─32x32
│ │ │ │ ascii.png
│ │ │ │ auto.png
│ │ │ │ binary.png
│ │ │ │ bookmark.png
│ │ │ │ cancel.png
│ │ │ │ compare.png
│ │ │ │ disconnect.png
│ │ │ │ download.png
│ │ │ │ downloadadd.png
│ │ │ │ file.png
│ │ │ │ filter.png
│ │ │ │ find.png
│ │ │ │ folder.png
│ │ │ │ folderback.png
│ │ │ │ folderclosed.png
│ │ │ │ folderup.png
│ │ │ │ help.png
│ │ │ │ localtreeview.png
│ │ │ │ lock.png
│ │ │ │ logview.png
│ │ │ │ processqueue.png
│ │ │ │ queueview.png
│ │ │ │ reconnect.png
│ │ │ │ refresh.png
│ │ │ │ remotetreeview.png
│ │ │ │ showhidden.png
│ │ │ │ sitemanager.png
│ │ │ │ speedlimits.png
│ │ │ │ synchronize.png
│ │ │ │ upload.png
│ │ │ │ uploadadd.png
│ │ │ │
│ │ │ └─48x48
│ │ │ ascii.png
│ │ │ auto.png
│ │ │ binary.png
│ │ │ bookmark.png
│ │ │ cancel.png
│ │ │ compare.png
│ │ │ disconnect.png
│ │ │ download.png
│ │ │ downloadadd.png
│ │ │ file.png
│ │ │ filter.png
│ │ │ find.png
│ │ │ folder.png
│ │ │ folderback.png
│ │ │ folderclosed.png
│ │ │ folderup.png
│ │ │ help.png
│ │ │ localtreeview.png
│ │ │ lock.png
│ │ │ logview.png
│ │ │ processqueue.png
│ │ │ queueview.png
│ │ │ reconnect.png
│ │ │ refresh.png
│ │ │ remotetreeview.png
│ │ │ showhidden.png
│ │ │ sitemanager.png
│ │ │ speedlimits.png
│ │ │ synchronize.png
│ │ │ upload.png
│ │ │ uploadadd.png
│ │ │
│ │ ├─sun
│ │ │ │ theme.xml
│ │ │ │
│ │ │ └─48x48
│ │ │ ascii.png
│ │ │ auto.png
│ │ │ binary.png
│ │ │ bookmark.png
│ │ │ cancel.png
│ │ │ compare.png
│ │ │ disconnect.png
│ │ │ download.png
│ │ │ downloadadd.png
│ │ │ file.png
│ │ │ filter.png
│ │ │ find.png
│ │ │ folder.png
│ │ │ folderback.png
│ │ │ folderclosed.png
│ │ │ folderup.png
│ │ │ help.png
│ │ │ localtreeview.png
│ │ │ lock.png
│ │ │ logview.png
│ │ │ processqueue.png
│ │ │ queueview.png
│ │ │ reconnect.png
│ │ │ refresh.png
│ │ │ remotetreeview.png
│ │ │ showhidden.png
│ │ │ sitemanager.png
│ │ │ speedlimits.png
│ │ │ synchronize.png
│ │ │ upload.png
│ │ │ uploadadd.png
│ │ │
│ │ ├─tango
│ │ │ │ theme.xml
│ │ │ │
│ │ │ ├─16x16
│ │ │ │ ascii.png
│ │ │ │ auto.png
│ │ │ │ binary.png
│ │ │ │ bookmark.png
│ │ │ │ cancel.png
│ │ │ │ compare.png
│ │ │ │ disconnect.png
│ │ │ │ download.png
│ │ │ │ downloadadd.png
│ │ │ │ file.png
│ │ │ │ filter.png
│ │ │ │ find.png
│ │ │ │ folder.png
│ │ │ │ folderclosed.png
│ │ │ │ localtreeview.png
│ │ │ │ lock.png
│ │ │ │ logview.png
│ │ │ │ processqueue.png
│ │ │ │ queueview.png
│ │ │ │ reconnect.png
│ │ │ │ refresh.png
│ │ │ │ remotetreeview.png
│ │ │ │ server.png
│ │ │ │ sitemanager.png
│ │ │ │ synchronize.png
│ │ │ │ unknown.png
│ │ │ │ upload.png
│ │ │ │ uploadadd.png
│ │ │ │
│ │ │ ├─32x32
│ │ │ │ ascii.png
│ │ │ │ auto.png
│ │ │ │ binary.png
│ │ │ │ bookmark.png
│ │ │ │ cancel.png
│ │ │ │ compare.png
│ │ │ │ disconnect.png
│ │ │ │ download.png
│ │ │ │ downloadadd.png
│ │ │ │ file.png
│ │ │ │ filter.png
│ │ │ │ find.png
│ │ │ │ folder.png
│ │ │ │ folderclosed.png
│ │ │ │ localtreeview.png
│ │ │ │ lock.png
│ │ │ │ logview.png
│ │ │ │ processqueue.png
│ │ │ │ queueview.png
│ │ │ │ reconnect.png
│ │ │ │ refresh.png
│ │ │ │ remotetreeview.png
│ │ │ │ server.png
│ │ │ │ sitemanager.png
│ │ │ │ synchronize.png
│ │ │ │ unknown.png
│ │ │ │ upload.png
│ │ │ │ uploadadd.png
│ │ │ │
│ │ │ └─48x48
│ │ │ ascii.png
│ │ │ auto.png
│ │ │ binary.png
│ │ │ bookmark.png
│ │ │ cancel.png
│ │ │ compare.png
│ │ │ disconnect.png
│ │ │ download.png
│ │ │ downloadadd.png
│ │ │ file.png
│ │ │ filter.png
│ │ │ find.png
│ │ │ folder.png
│ │ │ folderclosed.png
│ │ │ localtreeview.png
│ │ │ lock.png
│ │ │ logview.png
│ │ │ processqueue.png
│ │ │ queueview.png
│ │ │ reconnect.png
│ │ │ refresh.png
│ │ │ remotetreeview.png
│ │ │ server.png
│ │ │ sitemanager.png
│ │ │ synchronize.png
│ │ │ unknown.png
│ │ │ upload.png
│ │ │ uploadadd.png
│ │ │
│ │ └─xrc
│ │ dialogs.xrc
│ │ netconfwizard.xrc
│ │
│ └─JPGCompact
│ JPGCompact.exe
│
├─Setup
│ ├─7-Zip
│ │ ; as-Setup-7-Zip-old.ahk
│ │ ; as-Setup-7-Zip.ahk
│ │
│ ├─AutoHotkey
│ │ AutoHotkey_1.1.33.10_setup.exe
│ │
│ ├─Delphi7
│ │ ;as-Setup-Delphi7.ahk
│ │ Delphi7_Lite_Full_Edition_1.png
│ │ Delphi7_Lite_Full_Edition_2.png
│ │ Delphi7_Lite_Full_Edition_3.png
│ │ Delphi7_Lite_Full_Edition_4.png
│ │ Delphi7_Lite_Full_Edition_5.png
│ │ Delphi7_Lite_Full_Edition_Setup_7.3.4.2_Build_20110801.txt
│ │
│ └─WinRAR
│ ; as-Setup-WinRAR-Ver2.ahk
│ as-Setup-WinRAR.ahk
│ WinRAR-x64.exe
│ WinRAR.exe
│
└─说明文档
Tree-2.txt
Tree.txt
杀死进程并删除文件-用于测试.rar
说明文档.docx
说明文档.pdf
; 12、Z:\as-Setup\Program\AutoHotkey\SciTE\user\
;
; Z:\as-Setup\Program\AutoHotkey\SciTE\user\
; SciTE4AutoHotkey toolbar user settings file
;
; You are encouraged to edit this file!
;
; Tool definitions are in the following format:
; =Tool Name|Command line|Hotkey (optional)|Icon (optional)
; Paths support the following variables:
; %FILENAME% represents the filename of the current script
; %FILEPATH% represents the path to the current script
; %FULLFILENAME% represents the path and filename of the current script
; %SCITEDIR% represents the directory where SciTE resides
; %USERDIR% represents the user SciTE directory (My Documents\AutoHotkey\SciTE)
; %PLATFORM% represents the active platform
; %LOCALAHK% is the path of SciTE4AutoHotkey's internal copy of AutoHotkey.exe
; %AUTOHOTKEY% is the path of AutoHotkey.exe
; %ICONRES% is the toolbar icon library
; Use - or -- to add separators.
; Place here your tools
; Place here your scriptlets (required by the Scriptlet Utility)
--
=代码格式化 (Auto-Syntax-Tidy) (Ctrl+4)|%LOCALAHK% tools\Auto-Syntax-Tidy\Auto-Syntax-Tidy_v12.ahk|^4
--
=窗口信息(ahkinfo)|%SCITEDIR%\tools\ahkinfo\ahkinfo.exe||%ICONRES%,9
=窗口信息(ViewWizard)|%SCITEDIR%\tools\ViewWizard\ViewWizard.exe||%SCITEDIR%\tools\ViewWizard\ViewWizard.ico
=窗口信息(WindowSpy)|%SCITEDIR%\tools\WindowSpy\WindowSpy.ahk||%ICONRES%,9
=窗口信息工具 (AHK_Window_Info) (Ctrl+6)|%SCITEDIR%\..\AutoHotkeyU32.exe tools\AHK_Window_Info\AHK_Window_Info_v1.7.ahk|^6|%ICONRES%,9
=窗口信息(Spy++)|%SCITEDIR%\tools\Spy++\Spyxx.exe||%ICONRES%,9
=系统信息(CLISD)|%SCITEDIR%\tools\CLISD\CLISD.exe||%ICONRES%,9
=颜色信息(ColorFinder)|%SCITEDIR%\tools\ColorFinder\ColorFinder.ahk||%ICONRES%,9
--
=宏录制(MacroCreator)(Ctrl+1)|%SCITEDIR%\tools\MacroCreator\MacroCreator.exe|^1|%SCITEDIR%\tools2\MacroCreator\MacroCreator.ico
=宏录制(Au3Record)|%SCITEDIR%\tools\Au3Record\Au3Record.exe||%SCITEDIR%\tools2\Au3Record\Au3Record.ico
=宏录制(AutoScriptWriter)|%SCITEDIR%\tools\AutoScriptWriter\AutoScriptWriter.exe||%SCITEDIR%\tools2\AutoScriptWriter\AutoScriptWriter.ico
--
=AutoGUI (Ctrl+5)|%LOCALAHK% tools\AutoGUI\AutoGUI.ahk|^5|tools\AutoGUI\Icons\AutoGUI.icl,1
=AHK 正则终结者 (Ctrl+7)|%LOCALAHK% "tools\AHK 正则终结者\AHK 正则终结者.ahk"|^7|
--
=爱码源码仓库(Ctrl+3)|%SCITEDIR%\tools\iCodeRepository3\iCodeRepository3.exe|^3|%SCITEDIR%\tools2\iCodeRepository3\iCodeRepository3.ico
=源码正文搜索(FileLocatorPro)|%SCITEDIR%\tools\FileLocatorPro\FileLocatorPro.exe||%SCITEDIR%\tools2\FileLocatorPro\FileLocatorPro.ico
=提取图标修改资源(eXeScope)|%SCITEDIR%\tools\eXeScope\eXeScope.exe||%SCITEDIR%\tools2\eXeScope\eXeScope.ico
; 13、Z:\as-Setup\Program\KeePass\KeePass.config.xml
;
; 14、Z:\as-Setup\Program\Maye\JDB.json
;
; 15、Z:\as-Setup\Program\Maye\cfg.ini
;
; 16、ROBOCOPY-Test.bat
ROBOCOPY.EXE %A_ScriptDir%\%ProgramPath%\ %ProgramDrive%\%ProgramPath%\ /e /mt /r:3 /w:3 *.*
ROBOCOPY.EXE %~dp0%ProgramPath%\ %ProgramDrive%\%ProgramPath%\ /e /mt /r:3 /w:3 *.*
;
; 17、腾讯文档.bat
explorer.exe https://docs.qq.com/desktop
;
; ===== 此文章到此行结束 =====
我的AutoHotkey_v1.1编程环境部署自动静默安装包是_https://ds920.lanzouy.com/iS8Gm0ck5wmh_可能含有病毒或者木马_如果不喜欢请删除文件__我的腾讯QQ电子邮箱地址是 595076941@qq.com