Powershell reading multiple variables from text file
问题 I'm quite new to PS, so please don't kill me if the resolution is so easy :) I've tried to find a solution here and in google, but no luck. This is part of code which don't work as I want $Contents = Get-Content "Path\test.txt" foreach($Line in $Contents) { $Line = $Line.split(":")[1] $s = $line -split ':' $RegPath = $s[0] $Value_Name = $s[1] $Type = $s[2] $Value = $s[3] Write-host $RegPath $Value_Name $Type $Value } The output from Write-Host is ok, but the main problem is when I want to use