|
本帖最后由 slore 于 2020-3-22 00:46 编辑
另外,为什么在这里回复呢?
工具放PE很容易,主要是关联,快捷方式看看通常怎么做的,
你的工具快捷方式写的有点水,复制粘贴啊。有点累。
你基本上桌面和开始菜单都做,也没有特别分目录组,简单来说封装一个函数可以少一半。
LINK([[%Desktop%\傲梅无损分区.lnk]], [[%ProgramFiles%\PartAssist\PartAssistPE.exe]])
LINK([[%Programs%\傲梅无损分区.lnk]], [[%ProgramFiles%\PartAssist\PartAssistPE.exe]])
LINK([[%Desktop%\微型word.lnk]], [[%ProgramFiles%\SoftMaker\TextMaker.exe]])
LINK([[%Programs%\微型word.lnk]], [[%ProgramFiles%\SoftMaker\TextMaker.exe]])
LINK([[%Desktop%\微型excel.lnk]], [[%ProgramFiles%\SoftMaker\PlanMaker.exe]])
LINK([[%Programs%\微型excel.lnk]], [[%ProgramFiles%\SoftMaker\PlanMaker.exe]])
LINK([[%Desktop%\微型ppt.lnk]], [[%ProgramFiles%\SoftMaker\Presentations.exe]])
LINK([[%Programs%\微型ppt.lnk]], [[%ProgramFiles%\SoftMaker\Presentations.exe]])
...
改成下面这样:
local function AppLink(lnkname, path)
LINK('%Desktop%\\' .. lnkname .. '.lnk', '%ProgramFiles%\\' .. path)
LINK('%Program%\\' .. lnkname .. '.lnk', '%ProgramFiles%\\' .. path)
end
AppLink('傲梅无损分区', 'SoftMaker\\Presentations.exe')
AppLink('微型word', 'SoftMaker\\TextMaker.exe')
AppLink('微型excel', 'SoftMaker\\PlanMaker.exe')
AppLink('微型ppt', 'SoftMaker\\Presentations.exe')
... |
|