Skip to main content
TopMiniSite

Back to all posts

How to Check Who Has Access to Folders Using Cmd Or Powershell?

Published on
4 min read
How to Check Who Has Access to Folders Using Cmd Or Powershell? image

Best Tools and Software to Check Folder Access to Buy in October 2025

1 Laplink PCmover Ultimate 11 - Migration of your Applications, Files, and Settings from an Old PC to a New PC - Data Transfer Software - With Optional Super Speed USB 3.0 Transfer Cable - 1 License

Laplink PCmover Ultimate 11 - Migration of your Applications, Files, and Settings from an Old PC to a New PC - Data Transfer Software - With Optional Super Speed USB 3.0 Transfer Cable - 1 License

  • EFFORTLESS TRANSFERS: MIGRATE YOUR PC QUICKLY WITH WI-FI DIRECT AND USB 3.0.

  • AI-POWERED GUIDANCE: GET PERSONALIZED INSIGHTS AND OPTIMIZE YOUR TRANSFER.

  • FULL CONTROL OVER DATA: SELECT SPECIFIC FILES AND SETTINGS; EASILY CUSTOMIZE TRANSFERS.

BUY & SAVE
$63.95
Laplink PCmover Ultimate 11 - Migration of your Applications, Files, and Settings from an Old PC to a New PC - Data Transfer Software - With Optional Super Speed USB 3.0 Transfer Cable - 1 License
2 EZ Home and Office Address Book Software

EZ Home and Office Address Book Software

  • EFFORTLESS SORTING: EASILY ORGANIZE CONTACTS BY FIRST OR LAST NAME!

  • PRINT VIBRANT LABELS: CREATE AND PRINT CUSTOM LABELS WITH CLIP ART!

  • UNLIMITED CATEGORIES: MANAGE SEPARATE DATABASES FOR HOME & BUSINESS!

BUY & SAVE
$29.95
EZ Home and Office Address Book Software
3 Functional Assessment: Strategies to Prevent and Remediate Challenging Behavior in School Settings, Pearson eText with Loose-Leaf Version -- Access Card Package

Functional Assessment: Strategies to Prevent and Remediate Challenging Behavior in School Settings, Pearson eText with Loose-Leaf Version -- Access Card Package

BUY & SAVE
$93.93 $133.32
Save 30%
Functional Assessment: Strategies to Prevent and Remediate Challenging Behavior in School Settings, Pearson eText with Loose-Leaf Version -- Access Card Package
4 Laplink PCmover Migration Software - Initial Pay-Per-Use License Fee - Monthly invoicing for additional uses - $29.95/license - With Super Speed USB 3.0 cable - Business Technician, 10 Licenses

Laplink PCmover Migration Software - Initial Pay-Per-Use License Fee - Monthly invoicing for additional uses - $29.95/license - With Super Speed USB 3.0 cable - Business Technician, 10 Licenses

  • CUSTOMIZABLE TRANSFER CONTROL: SEAMLESSLY MIGRATE APPS, FILES, AND SETTINGS.

  • COST-EFFECTIVE PAY-PER-USE MODEL: ONLY PAY FOR COMPLETED PC TRANSFERS.

  • FLEXIBLE USAGE TIERS: CHOOSE FROM MULTIPLE LICENSING OPTIONS TO FIT NEEDS.

BUY & SAVE
$99.90
Laplink PCmover Migration Software - Initial Pay-Per-Use License Fee - Monthly invoicing for additional uses - $29.95/license - With Super Speed USB 3.0 cable - Business Technician, 10 Licenses
5 Parallels Desktop 26 for Mac Pro Edition | Run Windows on Mac Virtual Machine Software | Authorized by Microsoft | 1 Year Subscription [Mac Key Card]

Parallels Desktop 26 for Mac Pro Edition | Run Windows on Mac Virtual Machine Software | Authorized by Microsoft | 1 Year Subscription [Mac Key Card]

  • RUN 200,000+ WINDOWS APPS ALONGSIDE MACOS SEAMLESSLY.

  • MICROSOFT-AUTHORIZED FOR STRESS-FREE WINDOWS 11 INTEGRATION ON MAC.

  • AI TOOLS FOR DEVELOPERS: STREAMLINE MODEL ACCESS AND APP CREATION.

BUY & SAVE
$77.99
Parallels Desktop 26 for Mac Pro Edition | Run Windows on Mac Virtual Machine Software | Authorized by Microsoft | 1 Year Subscription [Mac Key Card]
6 Laplink PCmover - Easy Migration of your Applications, Files and Settings from an Old PC to a New PC - Data Transfer Software - With Optional Super Speed USB 3.0 Cable - Business Standard, 5 Licenses

Laplink PCmover - Easy Migration of your Applications, Files and Settings from an Old PC to a New PC - Data Transfer Software - With Optional Super Speed USB 3.0 Cable - Business Standard, 5 Licenses

  • SEAMLESS MIGRATIONS: AI-ASSISTED TRANSFERS STREAMLINE THE ENTIRE PROCESS.
  • FLEXIBLE LICENSING: CHOOSE FROM MULTIPLE TIERS FOR ANY MIGRATION NEEDS.
  • COMPREHENSIVE CONTROL: TRANSFER ALL DATA WITH AN INTUITIVE SUMMARY REPORT.
BUY & SAVE
$230.00
Laplink PCmover - Easy Migration of your Applications, Files and Settings from an Old PC to a New PC - Data Transfer Software - With Optional Super Speed USB 3.0 Cable - Business Standard, 5 Licenses
7 Training Guide Installing and Configuring Windows Server 2012 R2 (MCSA)

Training Guide Installing and Configuring Windows Server 2012 R2 (MCSA)

BUY & SAVE
$51.96 $59.99
Save 13%
Training Guide Installing and Configuring Windows Server 2012 R2 (MCSA)
+
ONE MORE?

To check who has access to folders using Command Prompt (cmd) or Powershell, you can use the "icacls" command. Open Command Prompt or Powershell and navigate to the folder you want to check the access permissions for. Then, type the command "icacls <folder_path>" and press Enter. This command will display a list of users and their corresponding access permissions for the folder. Additionally, you can use the Powershell command "Get-Acl <folder_path>" to view the access control list (ACL) for a folder, which includes information about the users and groups with access to the folder.

What is the command in powershell to check folder permissions?

To check folder permissions in PowerShell, you can use the Get-Acl (Get Access Control List) command. Here's an example of how you can check folder permissions for a specific folder:

Get-Acl -Path "C:\path\to\folder"

Replace "C:\path\to\folder" with the actual path to the folder you want to check permissions for. This command will display the access control list (ACL) for the folder, which includes information about the permissions assigned to users and groups on that folder.

How to check who has access to folders using cmd?

  1. Open Command Prompt by searching for it in the Start menu or by pressing Windows Key + R, typing in "cmd", and pressing Enter.
  2. In the Command Prompt window, navigate to the directory where the folder you want to check access for is located. You can use the "cd" command to change directories. For example, to navigate to the Desktop folder, you would type: cd Desktop
  3. Once you are in the directory containing the folder you want to check access for, type the following command and press Enter: icacls foldername

Replace "foldername" with the name of the folder you want to check access for.

  1. The command will display a list of users and their respective permissions for the folder. You can identify who has access to the folder by looking at the output.
  2. If you want to save the output to a text file for easier viewing, you can use the following command: icacls foldername > output.txt

This will save the output to a text file named "output.txt" in the current directory.

How to check who has access to folders using powershell?

To check who has access to folders using Powershell, you can use the following command:

Get-Acl -Path "C:\Path\To\Folder"

This command will show you the access control list (ACL) for the specified folder, including the users or groups that have access to it and the type of access they have (e.g. read, write, modify, etc.).

Alternatively, you can use the following command to get a list of all folders and their permissions on a specific drive:

Get-ChildItem -Directory -Path "C:\Path\To\Drive" -Recurse | ForEach-Object {Get-Acl $_.FullName}

This command will recursively list all folders on the specified drive and show the ACL for each folder.

You can also filter the results to only show specific users or groups by using the Where-Object cmdlet in combination with the Get-Acl command. For example, to show only the permissions for a specific user:

Get-Acl -Path "C:\Path\To\Folder" | Where-Object {$_.Access | Where-Object {$_.IdentityReference -match "username"}}

Replace "username" with the name of the user you want to check for.

What is the syntax for checking folder permissions using powershell?

To check folder permissions using PowerShell, you can use the following syntax:

Get-Acl -Path "C:\Path\To\Folder"

This command will retrieve the access control list (ACL) for the specified folder and show the permissions that are set for that folder.

How to check folder permissions using powershell?

To check folder permissions using PowerShell, you can use the following steps:

  1. Open PowerShell as an administrator.
  2. Use the Get-Acl cmdlet to get the access control list (ACL) of the folder you want to check. For example, to get the ACL of a folder named "C:\TestFolder", you can use the following command:

Get-Acl C:\TestFolder

  1. This command will return a list of access control entries (ACEs) that specify the permissions assigned to different users or groups on the folder. You can review this list to see the permissions that are currently set on the folder.
  2. To get a more readable output of the folder permissions, you can use the Format-List cmdlet along with the Select-Object cmdlet to select specific properties to display. For example, you can use the following command:

Get-Acl C:\TestFolder | Format-List -Property Owner, AccessToString

  1. This command will display the owner of the folder and a more user-friendly representation of the folder permissions.

By following these steps, you can easily check the folder permissions using PowerShell.