How can I get batch files to run through the new Windows Terminal? [closed]
You can have this behaviour on double click by changing HKEY_CLASSES_ROOT\batfile\shell\open\command default value from: “%1” %* to: “C:\Users\<user>\AppData\Local\Microsoft\WindowsApps\wt.exe” -p “Command Prompt” “%1″ %* or by using ftype command: ftype batfile=”C:\Users\<user>\AppData\Local\Microsoft\WindowsApps\wt.exe” -p “Command Prompt” “%1” %* You have to change <user> with the current user name directory and of course, this wt.exe path (C:\Users\<user>\AppData\Local\Microsoft\WindowsApps\) is if … Read more