Creating windows schedule task from previously exported.
Windows schedule tasks are tricky. Sometimes you need to setup very special attributes like parallel process run. I have ended with simple solution: create task via GUI and export as xml file and import it later.
windows_xmltask {'My Task Name':
ensure => present,
overwrite => 'false',
xmlfile => 'puppet:///config/soft/my_exported_task.xml',
}