使用非管理员(或管理员)cmd.exe
,输入以下命令以使用管理员凭据admin
和P@ssw0rd
创建计划任务:
schtasks /CREATE /S %computername% /U admin /P P@ssw0rd /RU SYSTEM /SC ONLOGON /TN SYSTEM_notepad /TR C:\Windows\System32\notepad.exe
ERROR: User credentials are not allowed on the local machine.
但是,我收到错误消息ERROR: User credentials are not allowed on the local machine.
。
是否存在某种阻止凭据与计划任务一起存储的组策略?如果是这样,如何禁用它?
AFAIK:/U
和/P
指定运行schtasks
的帐户,而/RU
和/RP
指定运行任务本身的帐户运行。
如下所示,admin
确实是管理员组的成员:
net localgroup administrators
Alias name administrators
Comment Administrators have complete and unrestricted access to the computer/domain
Members
-------------------------------------------------------------------------------
AuraExpressService
di3dh7
admin
The command completed successfully.