Skip to content

IsoExtractor

aelassas edited this page Nov 12, 2022 · 1 revision
<?xml version="1.0" encoding="utf-8" ?>
<Tasks>
  <!--
    IsoExtractor is a sequential task that extracts .iso files.
   
   The files extracted are loaded by the IsoExtractor task so that other tasks can select them through the selectFiles option.
  -->
  <Task id="$int" name="IsoExtractor" description="$string" enabled="true|false">
    <!-- The .iso files loaded by the task having as id $taskId will be extracted.-->
    <Setting name="selectFiles" value="$taskId" />
    <Setting name="selectFiles" value="$taskId" />
    <!-- You can add as many selecteFiles as you want.-->

    <!-- Required. Destination directory where the .iso files will be extracted.-->
    <Setting name="destDir" value="$string" />

    <!-- Optional. Samba computer name. -->
    <Setting name="smbComputerName" value="$string" />
    <!-- Optional. Samba domain name. -->
    <Setting name="smbDomain" value="$string" />
    <!-- Optional. Samba username. -->
    <Setting name="smbUsername" value="$string" />
    <!-- Optional. Samba password. -->
    <Setting name="smbPassword" value="$string" />
  </Task>
</Tasks>
Clone this wiki locally