Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Use Windows PowerShell to Automate Microsoft ExcelContent of Use Windows PowerShell to Automate Microsoft Excel.ps1MD5 Hash: A6D03CAF0BC2B5ED9419F03C5B31589A |
||
$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 :: |