# 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>" %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://www.pentestwiki.com/cloud/azure.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
