10 lines
242 B
Text
10 lines
242 B
Text
Module Host {
|
|
\\ one way
|
|
Print computer$
|
|
\\ second way
|
|
Declare objNetwork "WScript.Network"
|
|
With objNetwork, "ComputerName" as cName$
|
|
Print cName$, cName$=Computer$
|
|
Declare objNetwork Nothing
|
|
}
|
|
Host
|