Chirag Nagrekar has Published 465 Articles

How to use custom headers in the PowerShell output table?

Chirag Nagrekar

Chirag Nagrekar

Updated on 26-Mar-2020 07:07:34

5K+ Views

If you want the specific properties in PowerShell, you need to use the Select-Object (Alias − Select) as a pipeline.In the below example, we will retrieve the specific properties of the Spooler service.ExampleGet-Service Spooler | Select Name, DisplayName, Starttype, StatusOutputName       DisplayName    StartType    Status ----   ... Read More

Explain output formatting PowerShell

Chirag Nagrekar

Chirag Nagrekar

Updated on 26-Mar-2020 07:03:15

417 Views

In PowerShell, the output is in the default table format. To format the output in the desired format, mainly below pipeline commands are used.Format-TableFormat-ListFormat-WideThere are also commands to format the output data but not used widely.Format-CustomFormat-HexIn the below example, we will get the service's details using Get-Service and format it ... Read More

How to manipulate Date in PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 20-Mar-2020 07:08:36

2K+ Views

To add/remove date from the date string you need to use AddDay() method. For example, We need to add 6 days to the current date.(Get-Date).AddDays(6) 25 March 2020 22:40:36To go back to the specific number of days, the same AddDays() method will be used but the numbers are negative. For example, ... Read More

How to format date string in PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 20-Mar-2020 07:05:50

3K+ Views

By default the when you run the (Get-Date) cmdlet, its output is in the below format.PS C:\WINDOWS\system32> Get-Date 18 March 2020 22:56:18You can format the above output in the various format supported by PowerShell.Examplesd – Short date pattern.PS C:\WINDOWS\system32> Get-Date -Format d 18-03-2020D – Long date patternPS C:\WINDOWS\system32> Get-Date -Format D 18 ... Read More

How to check if the date is adjusted by Daylight saving time using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 20-Mar-2020 06:57:02

3K+ Views

To check if the date is adjusted by the daylight savings you need to use the function IsDayLightSavingTime() of the Get-Date cmdlet.PS C:\WINDOWS\system32> (Get-Date).IsDaylightSavingTime() FalseTo know more about DST, check the link below.http://www.webexhibits.org/daylightsaving/b.html

Explain Get-Date function in PowerShell.

Chirag Nagrekar

Chirag Nagrekar

Updated on 20-Mar-2020 06:52:48

468 Views

Get-Date function in PowerShell is to get the current system date and time. For example, when you type simply Get-Date, the output will be, Get-DatePS C:\WINDOWS\system32> Get-Date 18 March 2020 19:17:03When you check the type of the (Get-Date) function, it is DateTime.(Get-Date).GetType() PS C:\WINDOWS\system32> (Get-Date).GetType() IsPublic IsSerial    Name   ... Read More

How to convert the Integer variable to the string variable in PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 20-Mar-2020 06:48:35

29K+ Views

To convert the integer variable to the string variable, you need to use the explicit conversion or the functional method. In the below example, we are assigning an integer value to the variable $X.$x = 120 $x.GetType().NameNow when you check the data type of that variable, it will be Int32.To ... Read More

How to get the variable data type in PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 20-Mar-2020 06:42:48

67K+ Views

There are different data types exist for the variable like Byte, Int32, Float, String, etc. To get the variable type, we need to use the GetType() method.Example$x = 10 $x.GetType()OutputIsPublic IsSerial Name    BaseType -------- -------- ----    -------- True     True     Int32   System.ValueTypeTo get ... Read More

How to convert the content of the file into uppercase or lowercase?

Chirag Nagrekar

Chirag Nagrekar

Updated on 16-Mar-2020 07:53:22

3K+ Views

To convert the content of the file into the upper case, you need to use the method ToUpper() and to convert into lower case, you need to use ToLower() method.Upper case example(Get-Content D:\Temp\PowerShellaliases.txt).ToUpper()OutputPS C:\WINDOWS\system32> (Get-Content D:\Temp\PowerShellaliases.txt).ToUpper() COMMANDTYPE     NAME                       ... Read More

How to search in the file using PowerShell?

Chirag Nagrekar

Chirag Nagrekar

Updated on 16-Mar-2020 07:51:34

12K+ Views

To search the content in the file in PowerShell, you need to first get the content from the file using Get-Content command and then you need to add Select-String pipeline command. In the below example, we need to search the lines which contain the Get word.PS C:\WINDOWS\system32> Get-Content D:\Temp\PowerShellaliases.txt | ... Read More

Advertisements