I have a Excel sheet with about 600 rows with each row containing hyperlink to some downloadable file.
#rowMax is the maxinum rows in the excel sheet
$rowMax = 99
$StartingColumnValue = 3
$StartingRowValue = 2
for ($StartingRowValue; $StartingRowValue -lt $rowMax+1; $StartingRowValue++){
write-host $ExcelWorkSheet.Cells.Item($StartingRowValue,$StartingColumnValue).Text
}
So far I've managed to display the names of the hyperlinks, but I would like to actually "click" on them and download them.
How may I accomplish this? Thanks.