You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns a simplified list of tasks for the local system that are not set to run interactively.
31
+
32
+
## PARAMETERS
33
+
34
+
### -TaskName
35
+
Specifies an array of one or more names of a scheduled task.
36
+
You can use "*" for a wildcard character query.
37
+
38
+
```yaml
39
+
Type: String[]
40
+
Parameter Sets: (All)
41
+
Aliases:
42
+
43
+
Required: False
44
+
Position: 1
45
+
Default value: None
46
+
Accept pipeline input: False
47
+
Accept wildcard characters: False
48
+
```
49
+
50
+
### -TaskPath
51
+
Specifies an array of one or more paths for scheduled tasks in Task Scheduler namespace.
52
+
You can use "*" for a wildcard character query.
53
+
You can use \ for the root folder.
54
+
To specify a full TaskPath you need to include the leading and trailing \ *.
55
+
If you do not specify a path, the cmdlet uses the root folder.
56
+
57
+
```yaml
58
+
Type: String[]
59
+
Parameter Sets: (All)
60
+
Aliases:
61
+
62
+
Required: False
63
+
Position: 2
64
+
Default value: None
65
+
Accept pipeline input: False
66
+
Accept wildcard characters: False
67
+
```
68
+
69
+
### -NonInteractive
70
+
Exclude tasks that are set to run interactively, include only tasks with credentials set.
71
+
72
+
```yaml
73
+
Type: SwitchParameter
74
+
Parameter Sets: (All)
75
+
Aliases:
76
+
77
+
Required: False
78
+
Position: Named
79
+
Default value: False
80
+
Accept pipeline input: False
81
+
Accept wildcard characters: False
82
+
```
83
+
84
+
### -ProgressAction
85
+
{{ Fill ProgressAction Description }}
86
+
87
+
```yaml
88
+
Type: ActionPreference
89
+
Parameter Sets: (All)
90
+
Aliases: proga
91
+
92
+
Required: False
93
+
Position: Named
94
+
Default value: None
95
+
Accept pipeline input: False
96
+
Accept wildcard characters: False
97
+
```
98
+
99
+
### CommonParameters
100
+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
72
+
73
+
## INPUTS
74
+
75
+
### System.String containing the path to a script file to parse.
76
+
## OUTPUTS
77
+
78
+
### System.Management.Automation.CommandInfo for each command parsed from the file.
-**[Restore-SchTasks.ps1](Restore-SchTasks.ps1.md)**: Imports from a single XML file into the local Scheduled Tasks.
236
237
237
238
### Scripts
@@ -241,6 +242,7 @@ Scripts from the [Scripts](https://github.com/brianary/Scripts/) repo.
241
242
-**[Optimize-Help.ps1](Optimize-Help.ps1.md)**: Cleans up comment-based help blocks by fully unindenting and capitalizing dot keywords.
242
243
-**[Rename-Script.ps1](Rename-Script.ps1.md)**: Renames all instances of a script, and updates any usage of it.
243
244
-**[Repair-ScriptStyle.ps1](Repair-ScriptStyle.ps1.md)**: Accepts justifications for script analysis rule violations, fixing the rest using Invoke-ScriptAnalysis.
245
+
-🆕**[Select-ScriptCommands.ps1](Select-ScriptCommands.ps1.md)**: Returns the commands used by the specified script.
0 commit comments