Page 1 of 1

How to close just one opened folder ?

Posted: Tue Jul 28, 2015 2:03 am
by hackoo
I have this vbscript to close all opened folders
VBScript Code
Double-click the code block to select all.
Option Explicit
Dim shell,oWindows,j
Set shell = CreateObject("Shell.Application")
set oWindows = shell.windows
for j = 0 to oWindows.count - 1
  oWindows.item(j).quit
next
set shell = nothing
set oWindows = nothing
Now, i wonder is there a solution or a trick to close just one opened folder example c:\Test and not all folders ?

How to close just one opened folder ?

Posted: Tue Jul 28, 2015 2:03 am
by SAPIEN Support Forums
This is an automated post. A real person will respond soon.

Thank you for posting, hackoo.

Here are some hints to help you get an accurate and complete answer to your question.

Ask in the best forum: If you asked in the wrong forum, just copy your question to the right forum.

Anticipate follow-up questions!

Did you remember to include the following?
  • 1. Product, version and build
    2. 32 or 64 bit product
    3. Operating system, e.g. Windows 7 64 bit.
    4. Attach a screenshot, if applicable
    5. Attach logs, crash reports, etc., in a ZIP file
If not, please take a moment to edit your original post or reply to this one.

*** Make sure you do not post any licensing information ***

Re: How to close just one opened folder ?

Posted: Tue Jul 28, 2015 4:40 am
by jvierra
What are "open folders"?

You appear to be trying to close all open applications.

Just match the Window title if it exists.

Shell will only show you copies of IE and not of Explorer.