About 1,110,000 results
Open links in new tab
  1. Get-ItemProperty (Microsoft.PowerShell.Management) - PowerShell

    For example, you can use this cmdlet to get the value of the LastAccessTime property of a file object. You can also use this cmdlet to view registry entries and their values. This command gets …

  2. PowerShell File Attributes - Get File Attributes - ShellGeek

    Jun 21, 2022 · To get the list of all properties available, use the Get-Member cmdlet. It takes the input from the Get-ChildItem or Get-Item objects and returns the file properties. In this article, we will …

  3. Unlocking PowerShell File Properties: A Quick Guide

    In PowerShell, `Get-Item` and `Get-ChildItem` are the primary cmdlets used to access file properties. Get-Item: This cmdlet retrieves a specific file or directory's properties. When you know the exact path …

  4. How to Get Details of a File in PowerShell?

    May 13, 2024 · To get details of a file in PowerShell, you can use the Get-ItemProperty cmdlet to retrieve properties such as file size, creation time, and last modified time. For example, Get …

  5. Using PowerShell to Check File Properties

    Apr 6, 2024 · With a few simple commands, you can access a wide range of file properties, such as size, creation date, modification date, and more. Before we dive into the specifics of using PowerShell to …

  6. PowerShell: File Properties

    Jun 15, 2025 · File Properties, Attributes, Permission.

  7. Getting Started with PowerShell File Properties and Methods

    Apr 2, 2019 · With some of the below methods, we use the properties we recently extracted to see how these can be used dynamically along with how we can extract properties in one line without …

  8. How to find the file properties using powershell - GeeksforGeeks

    Nov 21, 2022 · In this article we will find out certain commands to find the file properties using PowerShell. Now to access the file properties using the PowerShell we use some commands in …

  9. PowerShell Get-ItemProperty [with Examples] - SPGuides

    May 19, 2025 · Now, let me show you how to get file properties using the Get-ItemProperty cmdlet in PowerShell. Beyond registry values, Get-ItemProperty is excellent for retrieving file metadata: This …

  10. File Attributes in PowerShell - PowerShell - SS64.com

    How-to: Change file attributes in PowerShell. The PowerShell scripts below can be used to get, set or remove file attributes. for example [int] [io.fileattributes]::ReadOnly will return 1. The scripts below …