Original title: Why won’t VSCode Smart Send my Python code line by line to the terminal as it used to?

I generally just run my Python code line-by-line using the Python Smart Send feature on VSCode, but after I was away from work for a bit, it suddenly stopped working. Normally Shift + Enter or Right Click > Run Python > Run Selection/line in Terminal will run one chunk/line of code at a time directly in the integrated Python terminal. Now, it does absolutely nothing. No error message is sent, it’s just inert. Near as I can tell, this is related to the fact that the integrated terminal is opening as Powershell instead of a command prompt that automatically starts up a Python instance. I have tried setting terminal.integrated.defaultProfile.Windows to Command Prompt, but with no luck; it actually continues to open up a Powershell on first load and whenever I open a terminal without specifying that it should be a command line. Each new powershell terminal runs the following command when it is opened, if it’s any help to anyone in understanding things: (& C:\Users\REDACTED\AppData\Local\mi

Read the original question here