--- title: "system.gui.findWindow" description: "Finds and returns a list of windows with the given path." --- # system.gui.findWindow > Finds and returns a list of windows with the given path. This function is used in **Python Scripting**. ## Description Finds and returns a list of windows with the given path. If the window is not open, an empty list will be returned. Useful for finding all instances of an open window that were opened with [system.nav.openWindowInstance](appendix\scripting-functions\system-nav\system-nav-openWindowInstance.md). ## Client Permission Restrictions This scripting function has no [Client Permission](../../../ignition-modules/vision/vision-project-properties/vision-project-properties.md#vision-permissions-properties) restrictions. ## Syntax `system.gui.findWindow(path)` ### Parameters Type | Parameter | Description ------- | ------- | ------ String | `path` | The path of the window to search for. ### Returns **List** - A list of [window objects](appendix\components\vision-components\vision-window-object\vision-window-object.md). May be empty if window is not open, or have more than one entry if multiple windows are open. ### Scope Vision Client ## Code Examples ```python title="Example #1 - Finding a Window and Closing It" # This example finds all open instances of the window named "Popup" and closes them all. allInstances = system.gui.findWindow("Popup") for window in allInstances: system.nav.closeWindow(window) ```