EmEditor 自动部署所有设置

EmEditor Auto-deploy all settings

我已经为我的团队创建了一个 Windows 10 导出(到 reg 文件)我的最佳 EmEditor 设置。

是否可以通过命令行(相当于工具 - 导入和导出 - 从注册表文件导入所有设置)使用 EmEditor 和命令行开关批量部署到所有用户 file/script?

当前使用的是 v20.1,用户在他们的机器上没有管理员权限。希望能够以静默方式向前部署(如果可能,通过登录脚本)。

我写了一个批处理文件,您可以在命令提示符中 运行。 如果您将此文件保存为 EEImportReg.bat,并且如果 EmEditor 设置已导出到 C:\ExportedFolder(其中存在 exported.reg 文件),您将 运行 此为:

EEImportReg.bat "C:\ExportedFolder"

我会在您 运行 EmEditor 之前推荐 运行ning 这个批处理文件。

@echo off
if not exist "%1\exported.reg" (
    echo "%1\exported.reg" does not exist.
    exit /b
)
reg.exe import "%1\exported.reg"
xcopy "%1\AppData" "%appdata%\Emurasoft\EmEditor" /s /y /q