Home » KBArticles » SCRIPT: Folder exists on multiple servers

SCRIPT: Folder exists on multiple servers

 Dim strFolder
        Dim arrServers
        Dim strProfile
        strProfile = “C$usersadministrator”
 arrComputers =     Array(“server1″,”server2”)
        Set objFSO = CreateObject(“Scripting.FileSystemObject”)
        sOutput=”Script Results for:” & strprofile & vbcrlf & vbcrlf       
        For EACH strComputer in arrComputers
        sOutput = sOutput & objFSO.FolderExists (“\”& strComputer & strProfile) & vbtab & strComputer & vbcrlf
        On Error Resume Next               
        Next
        wscript.echo sOutput

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.