由于升级到windows 7,我再也无法看到UNC路径访问的远程计算机上的计划任务(即:\mymachinename)。知道为什么吗?
发布于 2011-08-18 10:16:22
另外一种方法是在windows 7机器上打开任务调度程序,然后右键单击“任务计划程序本地”并选择连接到另一台计算机。
发布于 2013-10-29 22:09:56
您应该能够使用Powershell进行验证:
<#
.SYNOPSIS
Script that return informations about scheduled tasks on a computer
.DESCRIPTION
This script uses the Schedule.Service COM-object to query the local or a remote computer in order to gather a
formatted list including the Author, UserId and description of the task. This information is parsed from the
XML attributed to provide a more human readable format
.PARAMETER Computername
The computer that will be queried by this script, local administrative permissions are required to query this
information
.NOTES
Name: Get-ScheduledTask.ps1
Author: Jaap Brasser
DateCreated: 2012-05-23
DateUpdated: 2012-07-22
Site: http://www.jaapbrasser.com
Version: 1.2
.LINK
http://www.jaapbrasser.com
.EXAMPLE
.\Get-ScheduledTask.ps1 -Computername mycomputer1
Description
-----------
This command query mycomputer1 and display a formatted list of all scheduled tasks on that computer
.EXAMPLE
.\Get-ScheduledTask.ps1
Description
-----------
This command query localhost and display a formatted list of all scheduled tasks on the local computer
#>
https://serverfault.com/questions/74483
复制相似问题