On Ubuntu, the default path includes /usr/bin, which is where most system applications are installed via sudo. The equivalent on Windows is C:\Program Files, protected by UAC. (Of course, it's more complicated than that.)
On Ubuntu, the default path also include ~/.local/bin (kinda), which is where you can drop user applications, for example a Python script you can invoke from anywhere. sudo is not required in any part of the process.
Is there an equivalent to ~/.local/bin on Windows? A user folder already on the path where you could drop an EXE, open the terminal, navigate to any folder, and invoke the EXE, all without triggering UAC. Alternatively, is there a de facto convention?