Toml is a PowerShell module for reading TOML file content from disk so scripts can load and process configuration text.
Install the module from the PowerShell Gallery:
Install-PSResource -Name Toml
Import-Module -Name TomlUse this command to read TOML content from a file path:
Get-Toml -Path '.\settings.toml'Documentation is published at psmodule.io/Toml.
Use PowerShell help and command discovery for details:
Get-Command -Module Toml
Get-Help -Name Get-Toml -Examples