_FileListToArray erlaubt aber auch entsprechende Filter:
[autoit]
#include <File.au3>
#include <Array.au3>
$Path = 'C:\Programme\'
$FileList = _FileListToArray($Path, 'Logotec*', 2)
If Not IsArray($FileList) Then
MsgBox(0, '', 'Keine Verzeichnisse gefunden!')
Exit
EndIf
For $i = 1 To $FileList[0]
$ret = DirMove($Path & $FileList[$i], $Path & $FileList[$i] & '_')
If $ret = 0 Then MsgBox(0, '', 'Konnte das Verzeichnis: ' & $Path & $FileList[$i] & ' nicht umbenennen!')
Next