This commit is contained in:
Alexander 2024-09-14 16:23:04 -04:00
parent c2d3fe570d
commit 59b3136e74

10
assets/powershell.md Normal file
View File

@ -0,0 +1,10 @@
# Get-Children
Gets items in a specified location. To list the folders in my drive C, I will run
the command below:
`Get-ChildItem c:/`
This will list all the top-level folders. To list all files, folders include subfolders use the -Recurse parameter.
# Get-Help