Не удается увидеть запланированные задачи из Windows 7

После обновления до Windows 7 я больше не могу видеть запланированные задачи на удаленном компьютере, доступ к которому осуществляется по пути UNC (т. Е. \\mymachinename). Есть идеи почему?

2 ответа

Еще один способ - открыть планировщик задач на компьютере с Windows 7, а затем щелкнуть правой кнопкой мыши "Task Scheduler Local" и выбрать подключение к другому компьютеру.

Диспетчер задач

Вы должны быть в состоянии проверить, используя 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  
#>
Другие вопросы по тегам