Dim fileSystem, pluginPath Set fileSystem = CreateObject("Scripting.FileSystemObject") pluginPath = "C:\Program Files\ManageSoft\SecurityAnalysis\plugins\ldevmgr.dll" If fileSystem.FileExists(pluginPath) Then WScript.Echo "File found" Else WScript.Echo "File not found" End If