PowerShell Introduction

Leave a comment

PowerShell is an interactive shell and a scripting language for Windows environments. It has several uses including for automation and configuration.

It is also object oriented and based on the .NET Framework.

To run commands, open the Windows PowerShell app:

You can then run commands such as changing directory like in DOS.

PowerShell also has the concept of “aliasing”, which is running a command by typing a different name. For example, there are several UNIX commands that are available in PowerShell, such as “ls” for directory listing (“dir” in DOS). The idea is that this helps users of other scripting languages learn PowerShell quickly:

You can read more about the available UNIX commands and aliasing here.

To get more information on an alias you can typing the name “Get-Alias”:

Note PowerShell is case insensitive.

To get help, you can run Get-Help:

This provides help on the PowerShell help system. You can also provide parameters to get help on specific commands:

PowerShell also supports wildcards:

To display all commands available in the system, you can type in “Get-Command”:

 

Carl de Souza
Keep learning. Keep building.

Explore AI, agents & Microsoft technology.

I share practical ideas, tutorials, and videos about AI, AI agents, Microsoft technologies, and the Power Platform.

Subscribe on YouTube →
Carl de Souza Enterprise Architect at Microsoft · AI Technology Expert

Leave a Reply

Your email address will not be published. Required fields are marked *