How to startup PowerShell scripting
For the major use case the PowerShell is designed for systems administrators and engineers. The PowerShell framework has rich features that helps self learning about its usage. Further to that its cmdlet syntax using verb-noun helps you easily find the relevant cmdlets. Here is how you get to know/find something within PowerShell Use Get-Command to see if there is any cmdlet that is already available for doing the action you are looking for. PS C:> Get-Command *drive CommandType Name ModuleName ———– —- ———- Cmdlet Get-PSDrive Microsoft.PowerShell.Management Cmdlet New-PSDrive Microsoft.PowerShell.Management Cmdlet Remove-PSDrive Microsoft.PowerShell.Management PS C:> Getting quick more details about […]
Read more