首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >无法从windows 7查看计划任务。

无法从windows 7查看计划任务。
EN

Server Fault用户
提问于 2009-10-14 18:22:13
回答 2查看 336关注 0票数 1

由于升级到windows 7,我再也无法看到UNC路径访问的远程计算机上的计划任务(即:\mymachinename)。知道为什么吗?

EN

回答 2

Server Fault用户

发布于 2011-08-18 10:16:22

另外一种方法是在windows 7机器上打开任务调度程序,然后右键单击“任务计划程序本地”并选择连接到另一台计算机。

票数 0
EN

Server Fault用户

发布于 2013-10-29 22:09:56

您应该能够使用Powershell进行验证:

代码语言:javascript
运行
复制
<#   
.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  
#>
票数 0
EN
页面原文内容由Server Fault提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://serverfault.com/questions/74483

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档