I want to use terminal script to open both of my working folders using VS code at once. I'm currently using this
@echo off
start code "path to folder 1"
start code "path to folder 2"
While this does open both folders in VS code at once it also open 2 terminals. Is there anyway for me stop those terminals from opening and only have VS code windows open?
.cmd(or.bat), but a shortcut file with file extension.lnk. The usage of the shortcut file results in startingcode.exebyexplorer.exeby calling the the Windows kernel library function CreateProcess without opening a console window at all because ofcode.exeis a Windows GUI application and not a Windows console application likecmd.exeprocessing the batch file.code.exeon startup.