Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Items in the Network Connections FolderContent of List Items in the Network Connections Folder.jsMD5 Hash: 148B1A97FF6B64114B85AD4CDF8D9943 |
||
// description: reports the path to the network connections folder, and then lists any items found in that folder. for windows nt 4.0 and windows 98, this script requires windows script host 5.1 and internet explorer 4.0 or later.
var network_connections = 0x31; var objshell = new ActiveXObject("shell.application"); var objfolder = objshell.namespace(network_connections); var objfolderitem = objfolder.self; WScript.Echo(objfolderitem.path); var colitems = objfolder.items(); var myJS_Enumerator_1 = new Enumerator(colitems); for (;!myJS_Enumerator_1.atEnd();myJS_Enumerator_1.moveNext()) { objitem = myJS_Enumerator_1.item(); WScript.Echo(objitem.name); } | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |