> For the complete documentation index, see [llms.txt](https://www.pentestwiki.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.pentestwiki.com/cloud/azure.md).

# Azure

Azure는 Microsoft의 클라우드 플랫폼이며파워쉘을 통해 Azure cli를 사용할 수 있습니다.

<pre class="language-powershell"><code class="lang-powershell"><strong># Azure cli 설치
</strong>$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri https://aka.ms/installazurecliwindowsx64 -OutFile .\AzureCLI.msi; Start-Process msiexec.exe -Wait -ArgumentList '/I AzureCLI.msi /quiet'; Remove-Item .\AzureCLI.msi

<strong># Microsoft Graph PowerShell SDK 설치
</strong>Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
</code></pre>

## References

{% embed url="<https://learn.microsoft.com/en-us/cli/azure/install-azure-cli-windows?pivots=msi-powershell&view=azure-cli-latest>" %}
