维持权限schtasks命令
Posted ABKing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了维持权限schtasks命令相关的知识,希望对你有一定的参考价值。
创建本地定时任务(注意修改时间)
schtasks /create /sc once /tn testtask02 /tr "calc.exe" /sd 2021/06/19 /st 19:07
创建远程计算机的定时任务
schtasks /s 192.168.200.20 /u abking /p abking_password /create /sc once /tn testtask02 /tr "calc.exe" /sd 2021/06/19 /st 19:07
删除定时任务
schtasks /delete /tn testtask02 /f
taskkill根据进程名杀死进程
taskkill /im calc.exe /f
以上是关于维持权限schtasks命令的主要内容,如果未能解决你的问题,请参考以下文章