Do you know the notepad
command in PowerShell or cmd.exe? I would like to do the same for NotePad2 I would like to type the following command inside PowerShell and open up the me.txt file;
PS C:\Apps> no -me
how can I configure that?
Do you know the notepad
command in PowerShell or cmd.exe? I would like to do the same for NotePad2 I would like to type the following command inside PowerShell and open up the me.txt file;
PS C:\Apps> no -me
how can I configure that?
You can create an alias, except the -me would only be me.
PS > set-alias no notepad
PS > no me
You would have to set one to the full path of notepad2.exe so it would be something like
PS > set-alias no c:\my\customdirectory\notepad2.exe