Linked Questions
48 questions linked to/from Aliases in Windows command prompt
8
votes
2
answers
12k
views
How can i create own alias for "php artisan" command on windows? [duplicate]
I have seen the documentation for creating own alias but its little confusing.
can anyone help me and simply say me what to do?
I think it will help a lot of people, because i saw few questions ...
0
votes
1
answer
7k
views
Creating an Alias in Windows [duplicate]
I have the command below.
php public/index.php phinx setup
Is there a way in which I could simplify this in Windows? I was wanting to create a shortcut/alias as shown below.
phinx setup
Any help ...
1
vote
2
answers
5k
views
CMD doesn't run environment variables [duplicate]
So I set my environment variables and their value correctly.
When I open cmd and enter the variable's name i get an error saying:
(variable name here) is not recognized as an internal or external
...
0
votes
0
answers
163
views
How do I create an alias for Windows command line using Inno Setup? [duplicate]
I want to create an alias for running a Java program - java -jar {app}\exec\myprog.jar
How do I create it?
573
votes
14
answers
1.1m
views
Command prompt won't change directory to another drive
I'm trying to compile some java (learning java currently), and to do so I need to change command-prompt's directory.
C:\...\Admin> cd D:\Docs\Java
C:\...\Admin> cd
C:\...\Admin
It doesn't ...
73
votes
19
answers
201k
views
Starting Visual Studio from a command prompt
I have three different versions of Visual Studio installed on my machine,
Visual Studio 2003, Visual Studio 2008, and VS2005.
How do I start a particular version of Visual Studio using a command ...
77
votes
9
answers
74k
views
How to launch python Idle from a virtual environment (virtualenv)
I have a package that I installed from a virtual environment. If I just launch the python interpreter, that package can be imported just fine. However, if I launch Idle, that package cannot be ...
88
votes
8
answers
55k
views
Build a Call graph in python including modules and functions? [closed]
I have a bunch of scripts to perform a task. And I really need to know the call graph of the project because it is very confusing. I am not able to execute the code because it needs extra HW and SW to ...
35
votes
6
answers
70k
views
How can I start octave from the command line and not the GUI?
I recently installed GNU Octave on my Mac using Homebrew and as soon as I typed
octave into bash, it opened up the octave-gui window. The Octave GUI looks quite unappealing (on a mac, at least) so I ...
17
votes
4
answers
12k
views
How to define a DOSKEY alias for multiple commands?
Following on from an answer to this question
For the Windows command prompt I can define aliases as follows:
@echo off
DOSKEY ns=npm start
DOSKEY nsr=npm run serve
I want to define an alias that ...
7
votes
3
answers
17k
views
How to set this command "flutter run -d chrome --web-renderer html" to run as default on VSCode?
When I choose Chrome to run my Flutter app, the resizing page doesn't work correctly and by searching through the internet I found this command to solve the problem:
flutter run -d chrome --web-...
3
votes
3
answers
2k
views
How do I call a DOSkey Alias from Powershell?
I have DOSKey Alias that I setup like so (Aliases in Windows command prompt) calling it from the registry, and I'd like to be able to run it from powershell; is there some way to do this? All it ...
1
vote
1
answer
9k
views
pwd alias on Windows cmd
I want to create a fixed pwd alias like in this topic, but I want to keep all aliases in one file as in this answer by Argyll. Currently my file cmdAliases.cmd looks like this:
@echo off
doskey ls=...
0
votes
2
answers
8k
views
How to source a file in Windows command prompt?
Coming from a linux shell, I'm used to being able to source a file into the current environment. How can I do this in the Windows cmd command prompt?
e.g. in linux I can create an alias for a long ...
6
votes
3
answers
4k
views
Running both Python 2.7 and 3.5 on PC
I have both versions of Python installed on my PC running Windows 10 and I can switch between them manually as needed, but I was wondering if there is a way to edit their path environment variables so ...