Changement état
Différence entre versions
De MappingDoc
imported>Admin m (1 révision importée) |
(→Exemple de script) |
||
Ligne 6 : | Ligne 6 : | ||
==== Exemple de script ==== | ==== Exemple de script ==== | ||
− | + | @echo off | |
− | + | SET PATH_MAPPING=C:\MappingWindows\ | |
− | + | IF "%MAP_QUEUE_STATUS%" == "ready" goto :end | |
− | + | "%PATH_BIN%\map_mail" -server:outlook.office365.com -port:587 -from:test1@mappingsuite.com -to:test2@mappingsuite.com -login:test@mappingsuite.com -passwd:azerty1234 "-subject:Error in queue %MAP_QUEUE_NAME%%" -message:Error | |
− | + | :end | |
− | + | echo "1" | |
− | |||
− | |||
− |
Version actuelle datée du 25 mars 2019 à 11:03
Action après changement d'état
Lien vers documentation FR / EN
Paramètres d'environnement Mapping utilisables dans le script
Lien vers documentation FR / EN
Exemple de script
@echo off SET PATH_MAPPING=C:\MappingWindows\ IF "%MAP_QUEUE_STATUS%" == "ready" goto :end "%PATH_BIN%\map_mail" -server:outlook.office365.com -port:587 -from:test1@mappingsuite.com -to:test2@mappingsuite.com -login:test@mappingsuite.com -passwd:azerty1234 "-subject:Error in queue %MAP_QUEUE_NAME%%" -message:Error :end echo "1"