Login | |
|
 |
RE: Best way to edit .ini file - 8/3/2006 5:32:06 AM
|
|
 |
|
| |
Country73
Posts: 735
Score: 10
Status: offline
|
This will give you the Computer Name of the machine the script is ran from: Set oFS = CreateObject("Scripting.FileSystemObject") Set oNet = CreateObject("Wscript.Network") strComputer = oNet.ComputerName If Not oFS.FileExists("C:\" & strComputer)Then oFS.CreateFolder "C:\" & strComputer End If That should get you started.
|
|
| |
|
|
|
|
|