因此,我尝试创建一个“通用”的 Windows 任务计划程序 xml,我可以将其推送到多台计算机,然后直接将其导入任务计划程序,而无需编辑用户名和文件路径等内容。我有一个已设置为通过计划任务运行的 bat 文件,但我需要帮助弄清楚我需要使用什么正确的编码,以便在将任务的 xml 文件导入另一台计算机时自动输入和保存 bat 文件的位置。这是我目前拥有的 xml 文件的代码(我使用任务计划程序进行了基本设置,然后导出了任务):
<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<Date>2021-09-13T01:19:32.4413372</Date>
<Author>PC\%User%</Author>
<Description>This task will backup the main (C:\) drive on this computer every other week on Sunday, Tuesday, and Thursday at 18:36:00 (6:36pm) to the home network storage device (or NAS) that is located near and connected to the wireless router.</Description>
<URI>\Auto Backup of Main Drive</URI>
</RegistrationInfo>
<Triggers>
<CalendarTrigger>
<StartBoundary>2021-09-24T18:36:00</StartBoundary>
<Enabled>true</Enabled>
<ScheduleByWeek>
<DaysOfWeek>
<Sunday />
<Tuesday />
<Thursday />
</DaysOfWeek>
<WeeksInterval>2</WeeksInterval>
</ScheduleByWeek>
</CalendarTrigger>
</Triggers>
<Principals>
<Principal id="Author">
<UserId>%User%</UserId>
<LogonType>Password</LogonType>
<RunLevel>HighestAvailable</RunLevel>
</Principal>
</Principals>
<Settings>
<MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
<DisallowStartIfOnBatteries>true</DisallowStartIfOnBatteries>
<StopIfGoingOnBatteries>false</StopIfGoingOnBatteries>
<AllowHardTerminate>false</AllowHardTerminate>
<StartWhenAvailable>true</StartWhenAvailable>
<RunOnlyIfNetworkAvailable>true</RunOnlyIfNetworkAvailable>
<IdleSettings>
<StopOnIdleEnd>true</StopOnIdleEnd>
<RestartOnIdle>false</RestartOnIdle>
</IdleSettings>
<AllowStartOnDemand>true</AllowStartOnDemand>
<Enabled>true</Enabled>
<Hidden>false</Hidden>
<RunOnlyIfIdle>false</RunOnlyIfIdle>
<WakeToRun>true</WakeToRun>
<ExecutionTimeLimit>PT0S</ExecutionTimeLimit>
<Priority>7</Priority>
<RestartOnFailure>
<Interval>PT1H</Interval>
<Count>18</Count>
</RestartOnFailure>
</Settings>
<Actions Context="Author">
<Exec>
<Command>"%SystemRoot%\NeverDelete_Backup\MainDriveBackup.bat"</Command>
</Exec>
</Actions>
</Task>
%SystemRoot% 是否是指向 bat 文件的文件位置的正确方法(它应该位于主驱动器上的文件夹中)?
就作者而言,PC%User% 是否正确?
%User% 是否是使当前用户成为运行该任务的用户的正确方法?
请原谅我的菜鸟本性,这是我第一次真正编辑来自任务计划程序的任务的 xml 文件。如果我完全错了,或者有些地方是对的,或者不管是什么情况,请帮助我纠正所有问题。我只想要一种简单的方法将计划任务推送到多台机器,而不必每次都为每台特定机器更改所有内容。
提前感谢大家的帮助!祝大家一切顺利,健康、快乐、平安!