community.windows.win_toast module – Sends Toast windows notification to logged in users on Windows 10 or later hosts
Note
This module is part of the community.windows collection (version 1.13.0).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install community.windows
.
To use it in a playbook, specify: community.windows.win_toast
.
Synopsis
Sends alerts which appear in the Action Center area of the windows desktop.
Parameters
Parameter |
Comments |
---|---|
How long in seconds before the notification expires. Default: |
|
Which notification group to add the notification to. Default: |
|
The message to appear inside the notification. May include \n to format the message to appear within the Action Center. Default: |
|
If Choices:
|
|
The tag to add to the notification. Default: |
|
The notification title, which appears in the pop up.. Default: |
Notes
Note
This module must run on a windows 10 or Server 2016 host, so ensure your play targets windows hosts, or delegates to a windows host.
The module does not fail if there are no logged in users to notify.
Messages are only sent to the local host where the module is run.
You must run this module with async, otherwise it will hang until the expire period has passed.
See Also
See also
- community.windows.win_msg
Sends a message to logged in users on Windows hosts.
- community.windows.win_say
Text to speech module for Windows to speak messages and optionally play sounds.
Examples
- name: Warn logged in users of impending upgrade (note use of async to stop the module from waiting until notification expires).
community.windows.win_toast:
expire: 60
title: System Upgrade Notification
msg: Automated upgrade about to start. Please save your work and log off before {{ deployment_start_time }}
async: 60
poll: 0
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
Calculated utc date time when the notification expires. Returned: always Sample: |
|
Text containing the reason why a notification was not sent. Returned: when no logged in users are detected Sample: |
|
local date time when the notification was sent. Returned: always Sample: |
|
How long the module took to run on the remote windows host in seconds. Returned: always Sample: |
|
Whether the module was able to send a toast notification or not. Returned: always Sample: |