Skip to content

Latest commit

 

History

History
887 lines (847 loc) · 42.5 KB

ansible.windows.win_service_info_module.rst

File metadata and controls

887 lines (847 loc) · 42.5 KB

ansible.windows.win_service_info

Gather information about Windows services

  • Gather information about all or a specific installed Windows service(s).
Parameter Choices/Defaults Comments
name
string
If specified, this is used to match the name or display_name of the Windows service to get the info for.
Can be a wildcard to match multiple services but the wildcard will only be matched on the name of the service and not display_name.
If omitted then all services will returned.

.. seealso::

   :ref:`ansible.windows.win_service_module`
      The official documentation on the **ansible.windows.win_service** module.


- name: Get info for all installed services
  ansible.windows.win_service_info:
  register: service_info

- name: Get info for a single service
  ansible.windows.win_service_info:
    name: WinRM
  register: service_info

- name: Get info for a service using its display name
  ansible.windows.win_service_info:
    name: Windows Remote Management (WS-Management)

- name: Find all services that start with 'win'
  ansible.windows.win_service_info:
    name: win*

Common return values are documented here, the following are the fields unique to this module:

Key Returned Description
exists
boolean
always
Whether any services were found based on the criteria specified.

Sample:
True
services
list / elements=dictionary
always
A list of service(s) that were found based on the criteria.
Will be an empty list if no services were found.

 
checkpoint
integer
A check-point value that the service increments periodically to report its progress.

 
controls_accepted
list / elements=string
A list of controls that the service can accept.
Common controls are stop, pause_continue, shutdown.

Sample:
['stop', 'shutdown']
 
dependencies
list / elements=string
A list of services by their name that this service is dependent on.

Sample:
['HTTP', 'RPCSS']
 
dependency_of
list / elements=string
A list of services by their name that depend on this service.

Sample:
['upnphost', 'WMPNetworkSvc']
 
description
string
The description of the service.

Sample:
Example description of the Windows service.
 
desktop_interact
boolean
Whether the service can interact with the desktop, only valid for services running as SYSTEM.

 
display_name
string
The display name to be used by SCM to identify the service.

Sample:
Windows Remote Management (WS-Management)
 
error_control
string
The action to take if a service fails to start.
Common values are critical, ignore, normal, severe.

Sample:
normal
 
failure_action_on_non_crash_failure
boolean
Controls when failure actions are fired based on how the service was stopped.

 
failure_actions
list / elements=dictionary
A list of failure actions to run in the event of a failure.

   
delay_ms
integer
The time to wait, in milliseconds, before performing the specified action.

Sample:
120000
   
type
string
The action that will be performed.
Common values are none, reboot, restart, run_command.

Sample:
run_command
 
failure_command
string
The command line that will be run when a run_command failure action is fired.

Sample:
runme.exe
 
failure_reboot_msg
string
The message to be broadcast to server users before rebooting when a reboot failure action is fired.

Sample:
Service failed, rebooting host.
 
failure_reset_period_sec
integer
The time, in seconds, after which to reset the failure count to zero.

Sample:
86400
 
launch_protection
string
The protection type of the service.
Common values are none, windows, windows_light, or antimalware_light.

Sample:
none
 
load_order_group
string
The name of the load ordering group to which the service belongs.
Will be an empty string if it does not belong to any group.

Sample:
My group
 
name
string
The name of the service.

Sample:
WinRM
 
path
string
The path to the service binary and any arguments used when starting the service.
The binary part can be quoted to ensure any spaces in path are not treated as arguments.

Sample:
C:\Windows\System32\svchost.exe -k netsvcs -p
 
pre_shutdown_timeout_ms
integer
The preshutdown timeout out value in milliseconds.

Sample:
10000
 
preferred_node
integer
The node number for the preferred node.
This will be null if the Windows host has no NUMA configuration.

 
process_id
integer
The process identifier of the running service.

Sample:
5135
 
required_privileges
list / elements=string
A list of privileges that the service requires and will run with

Sample:
['SeBackupPrivilege', 'SeRestorePrivilege']
 
service_exit_code
integer
A service-specific error code that is set while the service is starting or stopping.

 
service_flags
list / elements=string
Shows more information about the behaviour of a running service.
Currently the only flag that can be set is runs_in_system_process.

Sample:
['runs_in_system_process']
 
service_type
string
The type of service.
Common types are win32_own_process, win32_share_process, user_own_process, user_share_process, kernel_driver.

Sample:
win32_own_process
 
sid_info
string
The behavior of how the service's access token is generated and how to add the service SID to the token.
Common values are none, restricted, or unrestricted.

Sample:
none
 
start_mode
string
When the service is set to start.
Common values are auto, manual, disabled, delayed.

Sample:
auto
 
state
string
The current running state of the service.
Common values are stopped, start_pending, stop_pending, started, continue_pending, pause_pending, paused.

Sample:
started
 
triggers
list / elements=dictionary
A list of triggers defined for the service.

   
action
string
The action to perform once triggered, can be start_service or stop_service.

Sample:
start_service
   
data_items
list / elements=dictionary
A list of trigger data items that contain trigger specific data.
A trigger can contain 0 or multiple data items.

     
data
complex
The trigger data item value.
Can be a string, list of string, int, or base64 string of binary data.

Sample:
named pipe
     
type
string
The type of data for the trigger.
Common values are string, binary, level, keyword_any, or keyword_all.

Sample:
string
   
sub_type
string
The trigger event sub type that is specific to each type.
Common values are named_pipe_event, domain_join, domain_leave, firewall_port_open, and others.

   
sub_type_guid
string
The guid which represents the trigger sub type.

Sample:
1ce20aba-9851-4421-9430-1ddeb766e809
   
type
string
The trigger event type.
Common values are custom, rpc_interface_event, domain_join, group_policy, and others.

Sample:
domain_join
 
username
string
The username used to run the service.
Can be null for user services and certain driver services.

Sample:
NT AUTHORITY\SYSTEM
 
wait_hint_ms
integer
The estimated time in milliseconds required for a pending start, stop, pause,or continue operations.

 
win32_exitcode
integer
The error code returned from the service binary once it has stopped.
When set to 1066 then a service specific error is returned on service_exit_code.



Authors

  • Jordan Borean (@jborean93)