How to Read the First Line of a File in PowerShell?

Read the First Line of a File in PowerShell

A common task when working with text files in PowerShell is reading the first line of a file. PowerShell provides several ways to get the first line of a file, and in this blog post, we will explore different methods to read the first line of a file using PowerShell. To read the first line … Read more

How to Get File Modified Date in PowerShell?

Get File Modified Date in PowerShell

If you want to know how to get file modified date in PowerShell, check out this tutorial completely. In this blog post, we will explore various methods to retrieve file modification dates using PowerShell. To get the file modified date in PowerShell, you can use the Get-Item cmdlet followed by the LastWriteTime property. For example, … Read more

How to List File Names Only in PowerShell?

Get File Names Only Using Get-ChildItem Cmdlet

You can do crazy things in PowerShell, one of which is to get file names only. In this article, I will show you how to list file names only in PowerShell. To list file names only in PowerShell, you can use the Get-ChildItem cmdlet combined with the -Name parameter. For example, Get-ChildItem -Path “C:\Your\Directory” -Name … Read more

PowerShell Write-Host to File [With Examples]

PowerShell Write-Host to File

Recently, I was required to write the output of Write-Host to a file in PowerShell. I did extensive research to find different approaches and best practices. In this tutorial, we will discuss everything about PowerShell Write-Host to file with examples. To write the output of Write-Host to a file in PowerShell, you can use the … Read more

How to Extract Directory from File Path in PowerShell? [3 Methods]

Extract Directory from File Path in PowerShell

Sometimes, you might need to extract the directory from the file path. In this PowerShell tutorial, I will explain how to extract a directory from a file path in PowerShell using various methods. To get the directory from a file path in PowerShell, you can use the Split-Path cmdlet with the -Parent parameter. For example, … Read more

How to Get the Size of a File in PowerShell?

How to Get the Size of a File in PowerShell

Recently, one of my clients asked to get the size of files in a folder. So, I wrote a PowerShell script to get the file size. In this PowerShell tutorial, I will explain how to get the size of a file in PowerShell. To get the size of a file in PowerShell, you can use … Read more

How to Check if a File Contains a String in PowerShell?

Check if a File Contains a String in PowerShell

While working with files in PowerShell, you may get requirements to check if a file contains a specified string. PowerShell provides different methods to check if a file contains a string. Let us check each method with examples. To check if a file contains a specific string in PowerShell, you can use the Select-String cmdlet … Read more

How to Write JSON to File in PowerShell?

How to Write JSON to File in PowerShell

In this PowerShell tutorial, I will explain how to write JSON to a file in PowerShell. To write JSON to a file in PowerShell, you can use the ConvertTo-Json cmdlet to convert a PowerShell object into a JSON string, and then output this string to a file using Out-File or Set-Content. For example: This approach is simple and effective for … Read more

How to Delete a File in PowerShell? [3 Methods]

Delete Multiple Files in PowerShell

Do you want to delete files in PowerShell? In this tutorial, I will show you various methods to delete files using PowerShell. To delete a file in PowerShell, use the Remove-Item cmdlet followed by the -Path parameter and the file path. For instance, Remove-Item -Path “C:\path\to\file.txt” will remove the specified file. If you need to … Read more

100 PowerShell cmdlets download free

100 POWERSHELL CMDLETS E-BOOK

FREE Download an eBook that contains 100 PowerShell cmdlets with complete script and examples.