...
Run the following commands to locate the PowerShell modules:
Code Block | ||
---|---|---|
| ||
$Found = Get-Module -Name $PowerShellModuleName -ListAvailable |
Run the following commands to unload the PowerShell modules
...
Run the code blocks in one of the following sections to update or install the latest version of the Graph PowerShell modules from the PSGallery:
To update or install install the module:
Code Block language powershell Install-Module -Name $PowerShellModuleName
To update the module:
Code Block language powershell Update-Module -Name $PowerShellModuleName
...