Category: 1. PowerShell Cmdlet Basic
-
PowerShell Get-childItem
The Get-ChildItem cmdlet gets the items and the child items in one or more locations. If an item is a container, it gets the items inside the container, known as the child items. A location can be a registry hive, file system registry, or a certificate store. This cmdlet does not display the empty directories. The gci, dir,…
-
What is PowerShell Cmdlet?
A cmdlet ‘pronounced as a command-lets‘ is a lightweight command which is used in the PowerShell environment. These are the special commands in the PowerShell environment which implements the special functions. The cmdlets follow a ‘verb-noun‘ pattern, such as ‘set-childItem‘. Windows PowerShell runtime invokes these commands in the context of automation scripts which are provided…