Top 22 PowerShell Interview Questions (2024)

Here are PowerShell interview questions and answers for freshers as well as experienced candidates to get their dream job.

1) Explain what is PowerShell?

Power shell is an extendable command shell and a scripting language for Windows.

2) What are the key characteristics of PowerShell?

The key characteristics of PowerShell are
  • PowerShell is object-based and not text based
  • Commands in PowerShell are customizable
  • It is a command line interpreter and scripting environment

Free PDF Download: PowerShell Interview Questions and Answers


3) In PowerShell what does variables holds?

In variables PowerShell contains strings, integers and objects.  It does not have special variables as it is pre-defined with PowerShell

4) Explain what is the significance of brackets in PowerShell?

  • Parenthesis Brackets (): Curved parenthesis style brackets are used for compulsory arguments.
  • Braces Brackets {} : Curly brackets are employed in blocked statements
  • Square Brackets []: They define optional items, and they are not frequently used

5) What does it mean cmdlet’s?

Cmdlet’s are simple build in commands written in .net language like C# or VB introduced by Windows PowerShell
PowerShell Interview Questions
PowerShell Interview Questions

6) Explain what is PowerShell Loop?

Automating repetitive task with the help of PowerShell loop is known as PowerShell Loop.  Through PowerShell, you can execute  For each loop, While loop and Do While loop.

7) Explain can you create PowerShell scripts for deploying components in SharePoint?

If you have created a web part using VS 2010 then, you can deploy it using cntrl+f5. However to activate the web part feature you can write a PowerShell script (.ps1) and execute it after deployment

8) Explain about the PowerShell’s comparison operators?

Comparison Operators compares value in PowerShell.  Four types of comparison operators are used equality, match, containment and replace. In PowerShell, one of the key comparison operators is –eq that is used instead of “=” sign for declaring variables.  Likewise, there are other operators like –ne for “not equal” , -gt ( greater than ) or –lt (less than).

9) Explain what is PowerShell pipeline is used for?

PowerShell pipeline is used for joining two statements such that the output of one statement becomes the input of the second.
PowerShell
PowerShell

10) Explain what is PowerShell get-command?

Get command in PowerShell is used to fetch other cmdlets, for example you are looking for cmdlet between letter L and R then your PowerShell get-command will be like
# PowerShell Get - Command Range

Clear-Host

Get-Command [ L–R ]*

11) Explain with an example how you can map a network drive in PowerShell?

To map a network drive in PowerShell you have to use the command like
# PowerShell Map Network Drive

$Net = $( New - Object – ComObject Wscript.Network )

$Net.MapNetworkDrive( "S:", \\expert\guru99 )
In here the drive letter is “S:” and the Network share is called ‘expert’ on a computer called ‘guru99.’

12) Mention what are the three ways that PowerShell uses to ‘Select’?

  • The most common way is in a WMI Query Language (WQL) statement. In this technique Wmiobject uses ‘-query’ to introduce a classic ‘Select * from’ a phrase
  • The second context for ‘Select’ in PowerShell is Select-String. This cmdlet checks for a word, phrase or any pattern match
  • Another way is Select Object

13) What is the function for Get-Service status in PowerShell?

The cmdlet of windows enables you to filter the window services.  PowerShell can list which services are ‘Running’ and which are ‘Stopped’ by scripting with windows.

14)  Explain what PowerShell Scripting is?

PowerShell file contains a series of PowerShell commands with each command appearing on a separate line. To use a text file as a PowerShell script, its filename should have .PS1 extension. To run a script you need
  • Type the commands in a text editor
  • Save the file with .ps1 extension
  • Execute the file in PowerShell

15) What is the use of hash table in PowerShell?

A hash table is also referred as dictionary. It is an array that allows you to store data in a “key-value” pair association. The “key” and “value” can be of any data and length. To declare a hash table you have to use @ followed by curly braces.

16) Explain what is the use of Array in PowerShell?

The use of Array in PowerShell is to run a script against remote computers.  In order to create an array, you have to create a variable and assign the array.  Arrays are represented by “@”symbol, they are represented as hashtable but not followed by curly braces. For example, $arrmachine = @ ( “machine1” , “machine2” , “machine3”)

17) Mention what is the command that can be used to get all child folders in a specific folder?

To get all child folders in a specific folder, you have to use parameter recurse in the code. Get-ChildItem C:\Scripts –recurse

18) Explain how you can convert the object into HTML?

To convert the object into HTML Get-Process l Sort-object – property CPU –descending l convert to – HTML l Out-file “process.html”

19) Explain how you can rename a variable?

To rename a variable,
Rename-Item- Path Env: MyVariable –NewName MyRenamedVar

20) Explain what is the function of $input variable?

The $input variable enables a function to access data coming from the pipeline

21) What is the code to find the name of the installed application on the current computer?

Get-WmiObject-Class Win32_Product- ComputerName . l Format-wide-column1

22) Explain how you can find in PowerShell that all the sql services are on one server?

There are two ways to do this
  • get-wmiobject win32_service l where-object {$_.name-like “*sql*”}
  • get-service sql*
These interview questions will also help in your viva(orals)
Share

15 Comments

  1. Avatar KelownaGuy says:

    #11 In here the drive letter is “S:” and the Network share is called ‘expert’ on a computer called ‘guru99.’
    You want to reverse that – network share is called “guru99” on a computer called “expert”

  2. Get-Process l Sort-object – property CPU –descending l convert to – HTML l Out-file “process.html” is wrong .
    Correct one -> Get-Process l Sort-object – property CPU –descending l Out-file “process.html”

    1. Nope, Sandhya is wrong. Get-Process | Sort-object -Property CPU -Descending | ConvertTo-Html | Out-file “process.html” is correct code

    2. Avatar Savindra ITPogo.com says:

      This answer is correct because the question is to convert the output to html

  3. Avatar Shiwanand says:

    one typo mistake question no. 13
    Get-ServiceStatus instead of Get-service

    please correct me if I’m wrong.

    1. updated! Thanks for pointing this out

      1. Avatar Savindra ITPogo.com says:

        There is no such command as Get-ServiceStatus

    2. Avatar Christian B McGhee says:

      No such cmdlt as Get-Servicestatus. Get-Service is correct using the Status property to determine if it is or is not running

  4. No 13) — No such cmdlet as “Get-ServiceStatus” – Please remove it and do not confuse readers

    1. Thanks for writing. It is reviewed and updated.

  5. Q 22: It should be `$_.name` instead of `$_name`.

    1. Thanks for writing. It is updated.

  6. Avatar Amar Sakhare , Pune says:

    Hi All,

    Need Powershell Script to – Auto delete “files” after quota limit finish

    is it possible to make script in power shell or is there any options like “FSRM”

    i need it very urgently..

Leave a Reply

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