'VBS Script To Send A Remote Machines Hot Fix Information To Excel
'VBS Script To Send A Remote Machines Hot Fix Information To ExcelstrComputer = InputBox ("Enter Machine Name") Set objExcel = CreateObject("Excel.Application") objExcel.Visible = True objExcel.Workbooks.Add intRow = 2 objExcel.Cells(1, 1).Value = "Machine Name" objExcel.Cells(1, 2).Value = "Hot Fix ID" objExcel.Cells(1, 3).Value = "Description" objExcel.Cells(1, 4).Value = "Install Date" Set objWMIService = GetObject("winmgmts:" … Read more