![]() Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Use Windows PowerShell to Automate Microsoft Excel
|
||
$a = New-Object -comobject Excel.Application
$a.Visible = $True $b = $a.Workbooks.Add() $c = $b.Worksheets.Item(1) $c.Cells.Item(1,1) = "A value in cell A1." $b.SaveAs("C:\Scripts\Test.xls") $a.Quit() | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |