Tu connais le nom du fichier concerné, donc il te suffit de le trouver. Pour ce faire, tu dois trouver le dossier dans lequel il est, à partir de "C:\Documents and Settings\Program Files\".
Inspire-toi de ce code d'exemple :
Imports System
Public Class Test
Public Shared Sub Main()
Dim paths As String() = { _
"C:\\foo\\bar", _
"C:\\foo\\baz" _
}
Dim regex As String = "C:\\*\\bar"
Dim ans As String = String.empty
For Each path As String In paths
If (path Like regex) Then
ans = "matches"
Else
ans = "doesn't match"
End If
Console.WriteLine(path + ": " + ans)
Next
End Sub
End Class
Si tu ne connais pas l'opérateur Like :
http://msdn.microsoft.com/en-us/library/swf8kaxw%28vs.71%29.aspx