If you have a non-default association with the .bat extension (for example, Notepad++), the console and shell shortcuts won't launch. This can be checked with
>assoc .bat
.bat=Notepad++_file
>assoc .vbs
.vbs=Notepad++_file
This can be fixed with (requires cmd to be run as administrator)
assoc .bat=batfile
assoc .vbs=VBSFile
The .cmd extension (also a batfile) doesn't cause any issues with launching console/shell, but is another one to be aware of.
If you have a non-default association with the .bat extension (for example, Notepad++), the console and shell shortcuts won't launch. This can be checked with
This can be fixed with (requires cmd to be run as administrator)
The .cmd extension (also a batfile) doesn't cause any issues with launching console/shell, but is another one to be aware of.