我有一张包含大约600行的Excel表格,每行包含一些可下载文件的超链接。
#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
}
到目前为止,我已经设法显示超链接的名称,但我想实际上“点击”它们并下载它们。
我怎么能做到这一点? 感谢。