class= " lineNumbers " del
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
|
class= del
id= " codeSnippet941526 " class= " del ' archivo de texto a leer en
strReadFile = “C:\computers.txt”
'sobresalir el archivo para crear
sXLS = “C:\service tags.xls”
Fijar el objFSO = CreateObject (“Scripting.FileSystemObject”)
Fijar el objTS = objFSO.OpenTextFile (strReadFile)
Fijar el objShell = CreateObject (“WScript.Shell”)
Fijar el objExcel = CreateObject (“Excel.Application”)
objExcel.Application.DisplayAlerts = falso
objExcel.Visible = verdad
objExcel.Workbooks.Add
'definir los títulos de la columna
objExcel.Cells (1.1). Valor = “nombre de computadora”
objExcel.Cells (1.2). Valor = “modelo”
objExcel.Cells (1.3). Valor = “etiqueta del servicio”
xRow = 1
yColumn = 1
'aplicar los estilos a las filas y a las columnas
Hacen hasta yColumn = 4
objExcel.Cells (xRow, yColumn). Font.Bold = verdad
objExcel.Cells (xRow, yColumn). Font.Size = 11
objExcel.Cells (xRow, yColumn). Interior.ColorIndex = 11
objExcel.Cells (xRow, yColumn). Interior.Pattern = 1
objExcel.Cells (xRow, yColumn). Font.ColorIndex = 2
objExcel.Cells (xRow, yColumn). Borders.LineStyle = 1
objExcel.Cells (xRow, yColumn) .WrapText = verdad
yColumn = yColumn + 1
Lazo
x = 2
y = 1
'comenzar a leer en el archivo de texto, hasta el extremo
Hacer hasta objTS.AtEndOfStream
strComputer = objTS.ReadLine
'comprobar si el nombre de computadora es pingbale, si no entonces saltan para nombrar después
Si (IsPingable (strComputer) = verdad) entonces
Fijar el objWMIService = GetObject (“winmgmts: ” _
¡y “{impersonationLevel=impersonate}! \ \” _
y strComputer y “\ raíz \ cimv2”)
Fijar el colComputer = el _ de objWMIService.ExecQuery
(“SELECCIONAR * de Win32_ComputerSystemProduct”, de “WQL”, 48)
y1 = y
Si Err.number=0 entonces
Para cada objComputer en colComputer
objExcel.Cells (x, y1). Valor = strComputer
y1 = y1 + 1 'van a la columna siguiente
objExcel.Cells (x, y1). Valor = objComputer.Name
y1 = y1 + 1 'van a la columna siguiente
objExcel.Cells (x, y1). Valor = objComputer.IdentifyingNumber
x = x + 1 'va a la fila siguiente
Después
objExcel.Cells (x, y1). Valor = strComputer
y1 = y1 + 1 'van a la columna siguiente
objExcel.Cells (x, y1). Valor = “modelo no encontrado!”
y1 = y1 + 1 'van a la columna siguiente
objExcel.Cells (x, y1). Valor = “cuento por entregas no encontrado!”
x = x + 1 'va a la fila siguiente
Terminar si
Err.clear
objExcel.Cells (x, y1). Valor = strComputer
y1 = y1 + 1 'van a la columna siguiente
objExcel.Cells (x, y1). Valor = “no Pingable”
x = x + 1 'va a la fila siguiente
Terminar si
Lazo
objExcel.Columns (“A: C”). Selecto
objExcel.Selection.HorizontalAlignment = 3 'centran todos los datos
objExcel.Selection.Borders.LineStyle = 1 'aplican las fronteras
objExcel.Columns (“A: AH”) autofit de .EntireColumn.AutoFit 'todas las columnas
el appVerInt = partió (objExcel.Version, “.") (0)
Si appVerInt-Excel2007 >=0 entonces
objExcel.ActiveWorkbook.SaveAs (sXLS), 56 'oficina 2007
objExcel.ActiveWorkbook.SaveAs (sXLS), 43 'oficina 2003
Terminar si
objExcel.Quit
fijar el objExcel = nada
objTS.Close
msgbox “hecho!”
WScript.Quit
Función IsPingable (strHost de ByVal)
Si "" del <> del ajuste (strHost) entonces
strCommand = “Ping.exe - n 3 - w 750” y strHost
Fijar el objExecObject = el _ de objShell.Exec
(“título del %comspec% /c” y _ del strHost
y chr (38) y strCommand)
Hacer mientras que no objExecObject.StdOut.AtEndOfStream
strText = objExecObject.StdOut.ReadLine ()
Si Instr (strText, “TTL=") > 0 _
Entonces IsPingable = verdad: La salida hace
Lazo
Si IsPingable = entonces verdad
Con GetObject (“winmgmts: raíz \ cimv2”)
Para cada objProcess en _ de .ExecQuery
(“Commandline SELECTO _ de Win32_Process”
y “DONDE nombre = “ping.exe””, 48)
Si mandline de objProcess.com = _ del strCommand
Entonces objProcess.Terminate (): Salir para
Después
Extremo con
Terminar si
Terminar si
Si (no IsPingable = verdad) entonces IsPingable = falso
Función del final
|