Files
StudyDiary/10-WebClipper/Windows使用命令行 查看定时计划任务_windows查看当前定时任务-CSDN博客.md
T
2026-07-23 20:36:13 +08:00

41 lines
1.1 KiB
Markdown
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
最新推荐文章于 2025-06-19 15:20:11 发布
转载 于 2020-12-14 15:50:58 发布 · 1.6w 阅读
· ![](https://csdnimg.cn/release/blogv2/dist/pc/img/newHeart2023Black.png)
4
· ![](https://csdnimg.cn/release/blogv2/dist/pc/img/tobarCollect2.png)
10 ·
schtasks 命令 ,用途广泛,使用高效,不仅能为本地 计算 机添加任务计划,而且还能通过某台计算机的操作,运行另外一台计算机的程序。可定时、定日、定月、定周、定年等让本机或局域网电脑启动软件。
 查看计划任务
```
  schtasks
  schtasks /query
```
  视图模式详细 信息
```
  schtasks /query /v
  schtasks /query /v /fo list
```
  逗号分隔列表
```
  schtasks /query /v /fo csv
```
     逗号分隔列表,不显示标题
```
  schtasks /query /v /fo csv /nh
  schtasks /query /v /fo /nh
  schtasks /query /v /fo csv /nh
  C:\\>schtasks /query /s 169.254.100.225 /u administrator /p windows
  INFO: There are no scheduled tasks present in the system.
```