Knowledge Base Bot: Technical Documentation
  • Knowledge Base Bot: Technical Documentation
  • Setting up
    • Prerequisites
      • Set up Azure
      • Install PowerShell modules
      • Install Azure CLI
      • Install Bicep CLI
      • Install Python
    • Pre-deployment
      • Create an app registration
      • Configure access policies
    • Deploy the code and Azure resources
    • Post-deployment
      • Execute post-deployment setup
      • Run the indexer script
  • RESOURCES
    • Architecture
Powered by GitBook
On this page
  1. Setting up
  2. Prerequisites

Install PowerShell modules

Windows PowerShell is needed to execute deployment scripts.

Follow the steps below to install Azure and SQL PowerShell modules:

  1. Select the Windows key. Search for "Windows PowerShell".

  2. Right-click on PowerShell -> Run as Administrator to open Windows PowerShell as an Administrator.

  3. Run the “Install-Module -Name Az -AllowClobber -Force” command on the Windows PowerShell terminal. This command installs the "Az" module in PowerShell, allowing us to use the PowerShell cmdlets provided by the module to manage Azure Services.

  4. Enter Y when asked if you want PowerShellGet to install and import the NuGet provider.

  5. Run the “Install-Module -Name SqlServer -AllowClobber -Force” command on the Windows PowerShell terminal. This command is used to install the “SqlServer” module in PowerShell.

PreviousSet up AzureNextInstall Azure CLI