Skip to content

Instantly share code, notes, and snippets.

@MattMS
Created October 6, 2023 02:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MattMS/773d83e989ba64757f4044a339a7893b to your computer and use it in GitHub Desktop.
Save MattMS/773d83e989ba64757f4044a339a7893b to your computer and use it in GitHub Desktop.
Parse INI content to Posh hashtable
$ini -split "`n" | % -Begin {$HT = @{}} -End {$HT} -Process {$n, $v = $_ -split '='; $HT[$n] = $v}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment