API Reference
Cmdlet
Get-OfficeDocumentIngest
Reads a folder into an OfficeIMO.Reader ingestion summary.
Remarks
Reads a folder into an OfficeIMO.Reader ingestion summary.
Examples
Ingest a report folder.
PS>
$ingest = Get-OfficeDocumentIngest -FolderPath .\Reports -Extension docx,pdf,rtf -MaxFiles 50
$ingest.Files | Select-Object Path, Parsed, ChunksProduced
Reads supported files from a folder and returns the ingestion summary with per-file status and chunk counts.
Common Parameters
This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
For more information, see about_CommonParameters.
Syntax
Get-OfficeDocumentIngest [-AllStoreItems] [-ExcelA1Range <String>] [-ExcelChunkRows <Int32>] [-ExcelSheetName <String>] [-ExcludePowerPointNotes] [-ExcludeWordFootnotes] [-Extension <String[]>] -FolderPath <String> [-MaxChars <Int32>] [-MaxFiles <Int32>] [-MaxInputBytes <Int64>] [-MaxStoreItems <Int32>] [-MaxTableRows <Int32>] [-MaxTotalBytes <Int64>] [-NoChunks] [-NoExcelHeaders] [-NoHashes] [-NoMarkdownHeadingChunks] [-NoRecurse] [-OpenXmlMaxCharactersInPart <Int64>] [-Reader <OfficeDocumentReader>] [<CommonParameters>]#Parameter set:
All Parameter SetsParameters
- AllStoreItems SwitchParameter
- Project every matching item from each email store.
- ExcelA1Range String
- Optional Excel A1 range to read.
- ExcelChunkRows Int32
- Excel rows per emitted worksheet chunk.
- ExcelSheetName String
- Optional Excel sheet name to read.
- ExcludePowerPointNotes SwitchParameter
- Exclude PowerPoint speaker notes.
- ExcludeWordFootnotes SwitchParameter
- Exclude Word footnotes.
- Extension String[]
- Allowed folder extensions such as .docx, .xlsx, .pdf, .html, or json.
- FolderPath String
- Folder path to ingest.
- MaxChars Int32
- Maximum emitted chunk characters.
- MaxFiles Int32
- Maximum number of folder files to read.
- MaxInputBytes Int64
- Maximum input size in bytes.
- MaxStoreItems Int32
- Maximum PST, OST, OLM, or EMLX items projected from each store. The default is 1,000.
- MaxTableRows Int32
- Maximum table rows per emitted table chunk.
- MaxTotalBytes Int64
- Maximum total folder bytes to read.
- NoChunks SwitchParameter
- Do not materialize chunks in the returned ingestion result.
- NoExcelHeaders SwitchParameter
- Treat the first Excel row as data instead of headers.
- NoHashes SwitchParameter
- Disable source and chunk hash computation.
- NoMarkdownHeadingChunks SwitchParameter
- Do not split Markdown by headings.
- NoRecurse SwitchParameter
- Do not recurse into child folders.
- OpenXmlMaxCharactersInPart Int64
- OpenXML maximum characters per part.
- Reader OfficeDocumentReader
- Optional immutable OfficeIMO reader with caller-configured handlers and processors.
Outputs
OfficeIMO.Reader.ReaderIngestResult