User Tools

Site Tools


en:powershell:start

This is an old revision of the document!


PowerShell

Basics

According to me, the first thing we need to deal with is CSV file. First let's read one CSV file, loop over it.

Here is an example of CSV input file.

csv.ps1
Import-Csv -Path input.csv | foreach {
 
  $currentLine = $_
 
}
en/powershell/start.1615173777.txt.gz · Last modified: 2021/03/07 22:22 by lonclegr