InterviewSolution
Saved Bookmarks
| 1. |
How Will You Check What Commands Have Been Added After Adding The New Snapin To Powershell ? |
|
Answer» Get-Command -pssnapin <SNAPIN NAME> –> Lists all commands that got added when the snapin was added to the SHELL Get-Command -pssnapin <snapin name> –> Lists all commands that got added when the snapin was added to the shell |
|