Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 1.78 KB

event-grid-preview-feature-note.md

File metadata and controls

51 lines (36 loc) · 1.78 KB
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.

Install extension for Azure CLI

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:

  1. Uninstall Azure CLI locally.
  2. Install the latest version of Azure CLI.
  3. Launch command window.
  4. Uninstall previous versions of the extension az extension remove -n eventgrid
  5. Install the extension az extension add -n eventgrid

Install module for PowerShell

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:

  1. Open PowerShell console as administrator
  2. Install the module Install-Module -Name AzureRM.EventGrid -AllowPrerelease -Force -Repository PSGallery

If the -AllowPrerelease parameter isn't available, use the following steps:

  1. Run Install-Module PowerShellGet -Force
  2. Run Update-Module PowerShellGet
  3. Close the PowerShell console
  4. Restart PowerShell as administrator
  5. Install the module Install-Module -Name AzureRM.EventGrid -AllowPrerelease -Force -Repository PSGallery