try:
$excel = New-object -ComObject excel.application $workbook = $excel.WorkBooks.Open("filepath") $Workbook.Parent.Calculation = -4135 ... ... #Turn recalculate back on $Workbook.Parent.Calculation = 1
This works if you have Excel installed