我有一个脚本,可以将WIM部署到分区并使其可引导,并使用unattend.xml配置名称和其他所有内容。我包含BackInfo.exe及其设置,当操作系统启动时,我让它运行一个登录脚本来初始化操作系统以获得一些东西。我已经尝试在脚本中运行BackInfo.exe,我在unattend.xml中尝试过,我已经尝试将注册表项添加到HKLM \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Run中,我尝试添加计划任务。
无论发生什么,背景始终是默认背景,并且永远不会从BackInfo设置为生成的背景。当我手动运行命令时,它完美地工作。我为我的生活似乎无法让这个工作。
非常感谢任何帮助!
答案 0 :(得分:0)
事实证明,我已将代码放入FirstLogonCommands部分,结果证明不起作用,我将其更改为LogonCommands。
<LogonCommands>
<AsynchronousCommand wcm:action="add">
<CommandLine>%SystemDrive%\Applications\BackInfo\BackInfo.exe</CommandLine>
<Description>BgInfo</Description>
<Order>1</Order>
</AsynchronousCommand>
</LogonCommands>
希望这可以帮助其他人,并防止他们浪费时间试图找出其他方法。