title | description | services | author | ms.service | ms.topic | ms.date | ms.author | ms.custom |
---|---|---|---|---|---|---|---|---|
include file |
include file |
event-grid |
tfitzmac |
event-grid |
include |
11/06/2018 |
tomfitz |
include file |
This feature is in preview. To use it, you must install a preview extension or module.
For Azure CLI, you need the Event Grid extension.
In CloudShell:
- If you've installed the extension previously, update it
az extension update -n eventgrid
- If you haven't installed the extension previously, install it
az extension add -n eventgrid
For a local installation:
- Uninstall Azure CLI locally.
- Install the latest version of Azure CLI.
- Launch command window.
- Uninstall previous versions of the extension
az extension remove -n eventgrid
- Install the extension
az extension add -n eventgrid
For PowerShell, you need the AzureRM.EventGrid module.
In CloudShell:
- Install the module
Install-Module -Name AzureRM.EventGrid -AllowPrerelease -Force -Repository PSGallery
For a local installation:
- Open PowerShell console as administrator
- Install the module
Install-Module -Name AzureRM.EventGrid -AllowPrerelease -Force -Repository PSGallery
If the -AllowPrerelease
parameter isn't available, use the following steps:
- Run
Install-Module PowerShellGet -Force
- Run
Update-Module PowerShellGet
- Close the PowerShell console
- Restart PowerShell as administrator
- Install the module
Install-Module -Name AzureRM.EventGrid -AllowPrerelease -Force -Repository PSGallery