↧
Answer by user387876 for Use existing explorer.exe instance when calling from...
You can use the start command to re-use instances of Windows file explorer.Change your batch file to:echo off start "C:\Users"
View ArticleUse existing explorer.exe instance when calling from batch file - Windows 7
In my batch file, I am calling a new Windows file explorer at a specific location by using the following:echo offexplorer.exe "C:/Users"The user then navigates to other folders as needed. Then, when I...
View Article