I want to close all opened windows that names are begin with "C:",so the windows name will be "C:\[folder name]"
I tried to replace [folder name] by **,but it didn't work,please helpCode:windows = Window.EnumerateTitles(); window_name = "C:"..** for handle, title in windows do result = String.Find(title, window_name, 1, false); if (result1 ~= -1) then Window.Close(handle, CLOSEWND_SENDMESSAGE); end end

