You can use the following from the command line to open windows explorer in the current working directory with folders open. Create a batch folder at c:batch. Add the path to it in your System Environment Variable path. Save the script below in a file called pop.bat, and put it in your batch folder. Add the second script below to a file called batch.bat, and put it in your batch folder.
Now open a cmd prompt. And do the following:
c:usersuser>batch c:batch>pop c:batch>
@echo off REM From the command line, open Windows Explorer to the current REM working directory with Folders sidebar open %SystemRoot%explorer.exe /E,.pop.batREM The following will launch a rooted directory. REM "%SystemRoot%explorer.exe" /E, /ROOT, %CD%
@echo off cd c:batchbatch.bat

