What is PowerShell Basic commands in PowerShell

Surely every computer user knows or has at least used the Command Prompt or CMD, but when it comes to PowerShell, not everyone knows it. First of all, to understand it briefly, PowerShell is a command-line interface similar to CMD, it can do everything CMD can do and even more. PowerShell is gradually becoming the default on Windows 10 instead of the outdated CMD, but PowerShell is still a strange program for ordinary computer users. In the following article, TipsMake.com will answer you the question of what is Powershell and some of your basic commands in Powershell, please refer.

What is PowerShell Basic commands in PowerShell Picture 1

1. What is PowerShell?

To better understand PowerShell we first need to know what Shell is. In computer science, the shell is basically a user interface that gives you access to various operating system services. A shell may be command line based or it may include a graphical user interface (GUI).

Windows PowerShell is a shell developed by Microsoft for the purpose of automating and configuring tasks. PowerShell will work on .NET and .NET Framework environments including commands and coding languages.

In parallel with PowerShell, Windows has developed Windows Power Shell ISE. ISE stands for integrated coding environment including graphical user interface for advanced programmers and integrates various tools to help you without having to enter all the commands on a single command line.

Windows PowerShell has been in development for a long time by Microsoft, but a new version with improved features has been introduced since Windows 8.1 and Windows Server 2012.

On Windows 10 you can open PowerShell by right-clicking on the Windows icon and selecting Windows PowerShell or Windown PowerShell (Admin)

What is PowerShell Basic commands in PowerShell Picture 2

PowerShell interface:

What is PowerShell Basic commands in PowerShell Picture 3

2. Basic commands in PowerShell

- Get Help

This command allows users to learn basic syntax and information about commands used in Windows PowerShell.

For example: If the user wants to know what the Get Process command is and how the syntax is, you will type the command

Get-Help -Name Get-Process

What is PowerShell Basic commands in PowerShell Picture 4

Similarly, when a user wants to list all Get related statements, you will type the command

Get-Help -Name Get- *

What is PowerShell Basic commands in PowerShell Picture 5

- Get-Service

This command will list all services running and installed on the system.

What is PowerShell Basic commands in PowerShell Picture 6

If you need to learn more about any of these services, you can add the -Service name after the Get-Service statement

- ConvertTo-HTML

When you need to see the system information in the most intuitive way, you can use the ConvertTo-HTML command to export the information into an html file located on the hard drive partition.

The sample command is as follows:

Get-Service | ConvertTo-HTML -Property Name, Status> C: filename.htm

Get-Service: It means that you will output the Service information running into HTML, you can also replace the Service with the information you want according to the command form listed in the Get Help section above.

C: The name of the hard drive partition

Filename: The file name you set

For example: Export the running information to TTPM-service.htm file located in D: Thuthuatphanmem partition, you will type the command:

Get-Service | ConvertTo-HTML -Property Name, Status> D: ThuthuatphanmemTTPM-service.htm

What is PowerShell Basic commands in PowerShell Picture 7

We will get an HTML file as shown:

What is PowerShell Basic commands in PowerShell Picture 8

Here is the content of the html file:

What is PowerShell Basic commands in PowerShell Picture 9

- Export-CSV

Similar to extracting information into an HTML file, PowerShell also allows you to export information to an Excel file. The statement is as follows:

Get-Service | Export-CSV X: filename.csv

Get-Service: It means that you will output the Service information running into HTML, you can also replace the Service with the information you want according to the command form listed in the Get Help section above.

X: Name of hard drive partition

Filename: The file name you set

What is PowerShell Basic commands in PowerShell Picture 10

- Get-EventLog

The command allows you to look up changes in the system through the log file. User can use the command

Get-EventLog -Log "Application"

To look up the Application change log

- Get-Process

With this command, the user can list Processes running on the computer. Actions to extract html file, csv file, get event log can be applied to this get process command

What is PowerShell Basic commands in PowerShell Picture 11

- Stop-Process:

Sometimes, there are services in the system that are 'suspended'. For such cases, use the Get-Process command to determine the exact name or ID of the process, and turn off the process with the Stop-Process command. For example, to turn off NotePad activity, type the following command:

Stop-Process -Name notepad

Above is an introduction to PowerShell and basic commands used in PowerShell. Hopefully through the article you will know more about the PowerShell command line interface and know how to use it. Thank you for watching!

4 ★ | 1 Vote

May be interested

  • Summary of the common Run CMD commandsSummary of the common Run CMD commands
    instead of performing manual and direct access operations on windows, we can replace existing cmd commands for faster access.
  • Summary of commands in PowerShellSummary of commands in PowerShell
    summary of commands in powershell. powershell has loads of different commands you can use, of course we don't need to know them all. but some of the commands are useful and used a lot, you should know through v
  • How to install PowerShell 7.0 in Windows 10/8/7How to install PowerShell 7.0 in Windows 10/8/7
    powershell 7 is the latest major update for powershell. powershell includes command line shells, object-oriented programming languages, along with a set of tools for script / cmdlet execution and module management.
  • How to create and run a PowerShell script file on Windows 10How to create and run a PowerShell script file on Windows 10
    a script is a collection of commands stored in a text file (using the special extension .ps1) that powershell understands and executes step by step to trigger a variety of operations.
  • Monitor Hyper-V with the command line (Part 2): Basic monitoring commandsMonitor Hyper-V with the command line (Part 2): Basic monitoring commands
    in this article, we will learn how to access the virtual machine list and see general information about virtual machines with simple powershell statements. we will also look at stop commands and start virtual machines from the command window.
  • Basic features of PowerShell on WindowsBasic features of PowerShell on Windows
    sharing the basic features of powershell on windows, powershell is mainly used by developers to fix bugs on windows.
  • Combine all the most basic AutoCAD commandsCombine all the most basic AutoCAD commands
    using autocad shortcut commands helps to manipulate faster. if you do not know all the cad commands, please see the summary of autocad commands that we have done below.
  • How to add the Open Powershell Here option to the context menu on WindowsHow to add the Open Powershell Here option to the context menu on Windows
    to open and use powershell faster and simpler when needed, you can add the 'open powershell here' option to the context menu - the menu when you right-click. in the following article, network administrator will show you how to add the 'open powershell here' option to the context menu on the windows operating system.
  • Server administration in Exchange 2007 using PowershellServer administration in Exchange 2007 using Powershell
    in this article, i will show you the database and the problem of managing storage groups using the commands in powershell.
  • PHP syntaxPHP syntax
    before starting programming in any language, the basic syntax and program structure is very important. this chapter introduces you to the basic php syntax, including: php tags, comments, print commands, echo commands, and two print and echo commands.