September 27, 200916 yr Let's say I have a folder in drive C: named XI can open that folder from a cmd window with the command start C:\Xbut what If I want to close the same opened folder through cmd or a bat , How can I do it?? thanx in advance.. Edited September 27, 200916 yr by laz3boy
September 27, 200916 yr Try NirCmd.exe. Read the help file.To close all opened explorer folders, syntax : nircmd.exe win close class "CabinetWClass"To close only a particular folder, say My Picture folder ( I have My Pictures & My Music folders open), syntax: nircmd.exe win close title "My Pictures"
September 29, 200916 yr Author Wow!, this gets the job done man!!, thanx a lot ~~!!Its a nice little utility and it helps in many other stuffthanks again.
May 17, 201313 yr method 1 : With CMD(command prompt):TASKKILL /F /FI "WINDOWTITLE eq MYTITLEEEEEEEEEEEEEE" /IM explorer.exe(just change MYTITLEEEEEEEEEEEEEE with the opened folder's title [case-sensitive]) method 2 :open a new text document and enter this code:Set oShell = CreateObject("WScript.Shell")If oShell.AppActivate("YourWindowTITLEEEEEEEEEEEEE") ThenWScript.Sleep 100oShell.SendKeys "%{F4}"End Ifthen save that file as yourfile.vbs and put to your desired path.Then run the Command:%windir%\system32\cmd.exe /C "START /WAIT CScript C:\ExampleFolder\yourfile.vbs //NoLogo" (note,that you should change "YourWindowTITLEEE" and "yourFileName.vbs" to whatever you want. Below is just an Edited July 11, 201412 yr by tazosmr
August 9, 201511 yr Metod1Metod2 Don't work Something Else maybe. Can't close folder Libraries in win7
August 9, 201511 yr Metod1Metod2 Don't work Something Else maybe. Can't close folder Libraries in win7Which "Title" are you using for it?DId you try the nircmd.exe? jaclaz
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now