[ad_1]

In 2022, Microsoft lastly upgraded Home windows 11’s File Explorer with tab help. Nevertheless, the app lacks many fundamental options, comparable to transferring a tab out of the window, combining tabs, or working the file explorer with a number of preset tabs. Though all three complaints might be addressed utilizing the Recordsdata app, which we not too long ago beneficial to all Home windows 11 customers, not everybody desires to make use of third-party file managers. Those that need to stick to File Explorer and open a number of tabs directly can use a easy script to bypass one among File Explorer’s main limitations.
Open File Explorer with a number of tabs on the identical time
Utilizing a script to open File Explorer with a number of tabs is a bit far-fetched, so be ready to commerce one comfort for an additional. You’ll solely want to make use of one particular desktop shortcut, which can’t be pinned to the taskbar. However, you’ll be able to create a number of scripts to open completely different preset tabs.
Run Notepad and paste the next script:
Set oShell = CreateObject("WScript.Shell") oShell.Run("""C:windowsexplorer.exe""") WScript.Sleep 1000 oShell.AppActivate "Explorer" WScript.Sleep 500 oShell.SendKeys "%d" WScript.Sleep 300 oShell.SendKeys "PATH1" WScript.Sleep 300 oShell.SendKeys "{ENTER}" WScript.Sleep 500 oShell.SendKeys "^t" WScript.Sleep 300 oShell.SendKeys "%d" WScript.Sleep 300 oShell.SendKeys "PATH2" WScript.Sleep 300 oShell.SendKeys "{ENTER}"
The script is about to open File Explorer with two tabs, however you need to specify paths earlier than executing it. Go to the folder you need to open while you launch File Explorer, click on the deal with bar and duplicate the trail.
- Swap PATH1 In line 8 with the deal with of the primary folder. Be sure to paste it contained in the quotes so it appears to be like much like “C:WindowsUsersTarasDownloads”
- Repeat the identical with PATH2 on line 16.
- If you wish to add a 3rd tab, create a brand new line on the finish of the script and paste the next:
WScript.Sleep 500 oShell.SendKeys "^t" WScript.Sleep 300 oShell.SendKeys "%d" WScript.Sleep 300 oShell.SendKeys "PATH3" WScript.Sleep 300 oShell.SendKeys "{ENTER}"
- Swap PATH3 with a sound folder path.
- Repeat steps 4 and 5 so as to add extra tabs. Remember the fact that the extra tabs you add, the longer it’ll take to open them.
- knock File > Save As And alter the file identify to one thing with a .vbs extension – for instancescript.vbs.
- Run the script to open the file explorer with a number of tabs.
recommendation: You possibly can attempt to velocity up the script by decreasing WScript.Sleep values (laid out in ms) in case your laptop has sufficient horsepower. Simply do not set values too low – File Explorer is not the quickest software within the Home windows 11 repository, so give it a while to deal with Such a demanding process.
Whereas the implementation is way from the quickest or most handy, it’ll certainly make File Explorer a bit higher whereas we look ahead to Microsoft to ship the lacking options.
supply: u/f_it_is_in_a on Reddit | Through
[ad_2]