Skip to main content
ubuntuask.com

Back to all posts

How to Launch Cmd Running A Command From Powershell?

Published on
2 min read
How to Launch Cmd Running A Command From Powershell? image

Best Command Line Tools to Buy in October 2025

1 Data Science at the Command Line: Obtain, Scrub, Explore, and Model Data with Unix Power Tools

Data Science at the Command Line: Obtain, Scrub, Explore, and Model Data with Unix Power Tools

BUY & SAVE
$38.50 $65.99
Save 42%
Data Science at the Command Line: Obtain, Scrub, Explore, and Model Data with Unix Power Tools
2 Powerful Command-Line Applications in Go: Build Fast and Maintainable Tools

Powerful Command-Line Applications in Go: Build Fast and Maintainable Tools

BUY & SAVE
$40.15 $45.95
Save 13%
Powerful Command-Line Applications in Go: Build Fast and Maintainable Tools
3 Small, Sharp Software Tools: Harness the Combinatoric Power of Command-Line Tools and Utilities

Small, Sharp Software Tools: Harness the Combinatoric Power of Command-Line Tools and Utilities

BUY & SAVE
$21.53
Small, Sharp Software Tools: Harness the Combinatoric Power of Command-Line Tools and Utilities
4 Cleaning Data for Effective Data Science: Doing the other 80% of the work with Python, R, and command-line tools

Cleaning Data for Effective Data Science: Doing the other 80% of the work with Python, R, and command-line tools

BUY & SAVE
$26.83 $43.99
Save 39%
Cleaning Data for Effective Data Science: Doing the other 80% of the work with Python, R, and command-line tools
5 Command Line Fundamentals: Learn to use the Unix command-line tools and Bash shell scripting

Command Line Fundamentals: Learn to use the Unix command-line tools and Bash shell scripting

BUY & SAVE
$37.98
Command Line Fundamentals: Learn to use the Unix command-line tools and Bash shell scripting
6 The Linux Command Line: A Complete Introduction

The Linux Command Line: A Complete Introduction

BUY & SAVE
$35.67
The Linux Command Line: A Complete Introduction
7 Windows 7 and Vista Guide to Scripting, Automation, and Command Line Tools

Windows 7 and Vista Guide to Scripting, Automation, and Command Line Tools

  • QUALITY ASSURANCE: CAREFULLY INSPECTED FOR READABILITY AND CONDITION.
  • ECO-FRIENDLY CHOICE: SAVE RESOURCES BY BUYING GENTLY USED BOOKS.
  • AFFORDABLE PRICES: ENJOY SIGNIFICANT SAVINGS ON A WIDE SELECTION.
BUY & SAVE
$90.10
Windows 7 and Vista Guide to Scripting, Automation, and Command Line Tools
8 Build Awesome Command-Line Applications in Ruby: Control Your SPuter, Simplify Your Life

Build Awesome Command-Line Applications in Ruby: Control Your SPuter, Simplify Your Life

  • AFFORDABLE PRICES: SAVE MONEY WITH QUALITY USED BOOKS.
  • ECO-FRIENDLY CHOICE: PROMOTE SUSTAINABILITY BY REUSING BOOKS.
  • QUALITY ASSURANCE: EACH BOOK IS VETTED FOR GOOD CONDITION.
BUY & SAVE
$10.17 $33.00
Save 69%
Build Awesome Command-Line Applications in Ruby: Control Your SPuter, Simplify Your Life
9 The Software Developer's Guide to Linux: A practical, no-nonsense guide to using the Linux command line and utilities as a software developer

The Software Developer's Guide to Linux: A practical, no-nonsense guide to using the Linux command line and utilities as a software developer

BUY & SAVE
$30.00 $39.99
Save 25%
The Software Developer's Guide to Linux: A practical, no-nonsense guide to using the Linux command line and utilities as a software developer
10 The Windows Command Line Beginner's Guide - Second Edition

The Windows Command Line Beginner's Guide - Second Edition

BUY & SAVE
$0.99
The Windows Command Line Beginner's Guide - Second Edition
+
ONE MORE?

To launch cmd running a command from PowerShell, you can use the Start-Process cmdlet with the -ArgumentList parameter. Here's an example:

Start-Process cmd -ArgumentList "/c ping google.com"

This will open a cmd window and run the "ping google.com" command. You can replace "ping google.com" with any command you want to run in cmd.

What is the quickest way to launch cmd from Powershell?

The quickest way to launch cmd from Powershell is by typing "cmd" in the Powershell console and pressing Enter. This will open a new instance of Command Prompt within the Powershell window.

How to launch cmd as an admin from Powershell?

To launch Command Prompt (cmd) as an administrator from PowerShell, you can use the following command:

Start-Process cmd -Verb RunAs

This command will prompt you to confirm that you want to open Command Prompt as an administrator. Once you confirm, a new Command Prompt window will open with elevated privileges.

What is the syntax for launching cmd in Powershell?

To launch cmd from Powershell, you can use the cmd.exe command followed by the /c flag and the command you want to run in cmd.

The syntax is:

cmd.exe /c

For example, if you want to run the dir command in cmd from Powershell, you would use:

cmd.exe /c dir

How to access the command prompt from Powershell?

To access the command prompt from Powershell, you can simply use the "cmd" command.

  1. Open Powershell by searching for it in the start menu or by pressing Win + X and selecting "Windows PowerShell".
  2. Once Powershell is open, type the following command and press Enter: cmd

This will launch the Command Prompt window within the Powershell window, allowing you to use both Powershell and Command Prompt commands interchangeably.