gpt4 book ai didi

powershell - 在任务计划程序上运行PowerShell脚本

转载 作者:行者123 更新时间:2023-12-03 14:35:35 26 4
gpt4 key购买 nike

我已经查看了任务调度程序答案中所有其他问题的PowerShell脚本,但找不到能够解决此问题的脚本。

我尝试使用以下命令直接通过任务计划程序运行PowerShell脚本:

       powershell.exe -file c:\path_to_your_script\script.ps1

以及创建批处理以运行PowerShell脚本。

PowerShell脚本可以自动运行,也可以手动运行批处理。

它打开一个excel,刷新它,保存并关闭。

我无法通过任务处理程序成功安排此时间。

有什么建议吗?

谢谢您的帮助

编辑:

@luke这是任务计划程序设置的导出
<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<Date>2015-05-11T12:40:51.6084684</Date>
<Author>----------</Author>
</RegistrationInfo>
<Triggers>
<TimeTrigger>
<Repetition>
<Interval>PT1H</Interval>
<StopAtDurationEnd>false</StopAtDurationEnd>
</Repetition>
<StartBoundary>2015-05-11T12:30:00</StartBoundary>
<Enabled>true</Enabled>
</TimeTrigger>
</Triggers>
<Principals>
<Principal id="Author">
<UserId>------\Administrator</UserId>
<LogonType>Password</LogonType>
<RunLevel>HighestAvailable</RunLevel>
</Principal>
</Principals>
<Settings>
<MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
<DisallowStartIfOnBatteries>true</DisallowStartIfOnBatteries>
<StopIfGoingOnBatteries>true</StopIfGoingOnBatteries>
<AllowHardTerminate>true</AllowHardTerminate>
<StartWhenAvailable>true</StartWhenAvailable>
<RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
<IdleSettings>
<StopOnIdleEnd>true</StopOnIdleEnd>
<RestartOnIdle>false</RestartOnIdle>
</IdleSettings>
<AllowStartOnDemand>true</AllowStartOnDemand>
<Enabled>true</Enabled>
<Hidden>true</Hidden>
<RunOnlyIfIdle>false</RunOnlyIfIdle>
<WakeToRun>true</WakeToRun>
<ExecutionTimeLimit>P3D</ExecutionTimeLimit>
<Priority>7</Priority>
</Settings>
<Actions Context="Author">
<Exec>
<Command>C:\Windows\System32\cmd.exe</Command>
<Arguments>/q /c "C:\Users\---------\Documents\PowerBI\PowerShell\RunExcelRefreshingScriptPowerShell2.bat"</Arguments>
</Exec>
</Actions>
</Task>

最佳答案

可以提供没有用户名或密码的任务计划设置的导出。

我有许多Powershell通过Task Scheduler运行,而不是一个单一的问题,因为我的调度程序称为启动Powershell的 bat 。

这是您找到最后运行结果的地方。

关于powershell - 在任务计划程序上运行PowerShell脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30173327/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com