This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Function New-GlobalPermission { | |
| <# | |
| .DESCRIPTION | |
| Script to add vSphere Global Permission | |
| .NOTES | |
| Author: William Lam | |
| Site: www.virtuallyghetto.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #requires -version 4 | |
| Function Check-PowerCLIUpdate { | |
| <# | |
| .DESCRIPTION | |
| Checks installed versions of PowerCLI modules and compares versions to those available in the online gallery. | |
| .NOTES | |
| Author: Alan Renouf, Jeff Hicks | |
| Blog Post: http://www.virtu-al.net/2017/10/11/checking-date-powercli/ |