mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
b0bcc35fda
Signed-off-by: kagarmoe <kgarmoe@chef.io>
95 lines
2.6 KiB
Text
95 lines
2.6 KiB
Text
---
|
|
title: About the windows_task Resource
|
|
platform: windows
|
|
---
|
|
|
|
# windows_task
|
|
|
|
Use the `windows_task` InSpec audit resource to test a scheduled tasks configuration on a Windows platform.
|
|
Microsoft and application vendors use scheduled tasks to perform a variety of system maintaince tasks but system administrators can schedule their own.
|
|
|
|
<br>
|
|
|
|
## Syntax
|
|
|
|
A `windows_task` resource block declares the name of the task (as its full path) and tests its configuration:
|
|
|
|
describe windows_task('task name uri') do
|
|
its('parameter') { should eq 'value' }
|
|
it { should be_enabled }
|
|
end
|
|
|
|
where
|
|
|
|
* `'parameter'` must be a valid parameter defined within this resource ie `logon_mode`, `last_result`, `task_to_run`, `run_as_user`
|
|
* `'value'` will be used to compare the value gather from your chosen parameter
|
|
* `'be_enabled'` is an example of a valid matcher that checks the state of a task, other examples are `exist` or `be_disabled`
|
|
|
|
<br>
|
|
|
|
## Examples
|
|
|
|
The following examples show how to use this InSpec resource.
|
|
|
|
### Tests that a task is enabled
|
|
|
|
```ruby
|
|
describe windows_task('\Microsoft\Windows\Time Synchronization\SynchronizeTime') do
|
|
it { should be_enabled }
|
|
end
|
|
```
|
|
|
|
### Tests that a task is disabled
|
|
|
|
```ruby
|
|
describe windows_task('\Microsoft\Windows\AppID\PolicyConverter') do
|
|
it { should be_disabled }
|
|
end
|
|
```
|
|
|
|
### Tests the configuration parameters of a task
|
|
|
|
```ruby
|
|
describe windows_task('\Microsoft\Windows\AppID\PolicyConverter') do
|
|
its('logon_mode') { should eq 'Interactive/Background' }
|
|
its('last_result') { should eq '1' }
|
|
its('task_to_run') { should cmp '%Windir%\system32\appidpolicyconverter.exe' }
|
|
its('run_as_user') { should eq 'LOCAL SERVICE' }
|
|
end
|
|
```
|
|
|
|
### Tests that a task is defined
|
|
|
|
```ruby
|
|
describe windows_task('\Microsoft\Windows\Defrag\ScheduledDefrag') do
|
|
it { should exist }
|
|
end
|
|
```
|
|
|
|
## Gathering Tasknames
|
|
|
|
Rather then use the GUI you can use the `schtasks.exe` to output a full list of tasks available on the system
|
|
|
|
`schtasks /query /FO list`
|
|
|
|
rather than use the `list` output you can use `CSV` if it is easier.
|
|
|
|
Please make sure you use the full TaskName (include the prefix `\`) within your control
|
|
|
|
```ruby
|
|
C:\>schtasks /query /FO list
|
|
...
|
|
Folder: \Microsoft\Windows\Diagnosis
|
|
HostName: XPS15
|
|
TaskName: \Microsoft\Windows\Diagnosis\Scheduled
|
|
Next Run Time: N/A
|
|
Status: Ready
|
|
Logon Mode: Interactive/Background
|
|
...
|
|
```
|
|
|
|
<br>
|
|
|
|
## Matchers
|
|
|
|
For a full list of available matchers, please visit our [matchers page](https://www.inspec.io/docs/reference/matchers/).
|