powershell 如何定时执行 ps1
3个回答
2014-04-11
展开全部
如果你用的是powershell 2.0那就用chtasks。如果你使用的是高版本的PowerShell 3.0+那可以使用计划工作。
ScheduledJob相关的命令位于PowerShell的PSScheduledJob组件 。该组件是在Windows PowerShell 3.0 版本中引进的,当然也只能在PowerShell 3.0和最新的版本环境中使用。
Windows PowerShell 计划工作非常实用,因为它整合了PowerShell 后台工作和Windows 中的计划任务。 像Windows PowerShell后台工作一样,计划工作也是在后台异步运行。因为一个已经运行的计划工作的实例,也可以使用Start-Job, Get-Job, Stop-Job, and Receive-Job 这些命令来管理。
具体使用示例,可以参考:http://www.pstips.net/about-scheduledjob.html
ScheduledJob相关的命令位于PowerShell的PSScheduledJob组件 。该组件是在Windows PowerShell 3.0 版本中引进的,当然也只能在PowerShell 3.0和最新的版本环境中使用。
Windows PowerShell 计划工作非常实用,因为它整合了PowerShell 后台工作和Windows 中的计划任务。 像Windows PowerShell后台工作一样,计划工作也是在后台异步运行。因为一个已经运行的计划工作的实例,也可以使用Start-Job, Get-Job, Stop-Job, and Receive-Job 这些命令来管理。
具体使用示例,可以参考:http://www.pstips.net/about-scheduledjob.html
展开全部
用CMD命令 schtasks 创建一个计划任务
C:\Users>schtasks /?
SCHTASKS /parameter [arguments]
Description:
Enables an administrator to create, delete, query, change, run and
end scheduled tasks on a local or remote system.
Parameter List:
/Create Creates a new scheduled task.
/Delete Deletes the scheduled task(s).
/Query Displays all scheduled tasks.
/Change Changes the properties of scheduled task.
/Run Runs the scheduled task on demand.
/End Stops the currently running scheduled task.
/ShowSid Shows the security identifier corresponding to a scheduled t
ask name.
/? Displays this help message.
Examples:
SCHTASKS
SCHTASKS /?
SCHTASKS /Run /?
SCHTASKS /End /?
SCHTASKS /Create /?
SCHTASKS /Delete /?
SCHTASKS /Query /?
SCHTASKS /Change /?
SCHTASKS /ShowSid /?
C:\Users>schtasks /?
SCHTASKS /parameter [arguments]
Description:
Enables an administrator to create, delete, query, change, run and
end scheduled tasks on a local or remote system.
Parameter List:
/Create Creates a new scheduled task.
/Delete Deletes the scheduled task(s).
/Query Displays all scheduled tasks.
/Change Changes the properties of scheduled task.
/Run Runs the scheduled task on demand.
/End Stops the currently running scheduled task.
/ShowSid Shows the security identifier corresponding to a scheduled t
ask name.
/? Displays this help message.
Examples:
SCHTASKS
SCHTASKS /?
SCHTASKS /Run /?
SCHTASKS /End /?
SCHTASKS /Create /?
SCHTASKS /Delete /?
SCHTASKS /Query /?
SCHTASKS /Change /?
SCHTASKS /ShowSid /?
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2014-04-11 · 知道合伙人软件行家
关注
展开全部
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询