Skip to content

Commit 6b09d79

Browse files
authored
Merge pull request #110661 from rikogeln/clarifyconnectazaccountcmd
clarify Connect-AzAccount usage and link to docs
2 parents 48458b3 + 0edcbce commit 6b09d79

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

articles/remote-rendering/quickstarts/convert-model.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ Fill out the form in the following manner:
6767
* Create a new Resource Group from the link below the drop-down box and name this **ARR_Tutorial**
6868
* For the **Storage account name**, enter a unique name here. **This name must be globally unique**, otherwise there will be a prompt that informs you that the name is ready given. In the scope of this quickstart, we name it **arrtutorialstorage**. Accordingly, you need to replace it with your name for any occurrence in this quickstart.
6969
* Select a **location** close to you. Ideally use the same location as used for setting up the rendering in the other quickstart.
70-
* **Performance** set to ‘Standard’
71-
* **Account kind** set to ‘StorageV2 (general purpose v2)’
72-
* **Replication** set to ‘Read-access geo-redundant storage (RA-GRS)’
73-
* **Access tier** set to ‘Hot’
70+
* **Performance** set to ‘Standard’
71+
* **Account kind** set to ‘StorageV2 (general purpose v2)’
72+
* **Replication** set to ‘Read-access geo-redundant storage (RA-GRS)’
73+
* **Access tier** set to ‘Hot’
7474

7575
None of the properties in other tabs have to be changed, so you can proceed with **"Review + create"** and then follow the steps to complete the setup.
7676

@@ -154,12 +154,15 @@ Once the model was converted it will be written back to the storage container gi
154154

155155
The config setting **outputAssetFileName** determines the name of the converted asset - the parameter is optional and the output filename will be deduced from the input file name otherwise.
156156

157-
Open a PowerShell, make sure you installed the *Azure PowerShell* as mentioned in the [prerequisites](#prerequisites). Then log into your subscription:
157+
Open a PowerShell, make sure you installed the *Azure PowerShell* as mentioned in the [prerequisites](#prerequisites). Then log into your subscription with the following command and follow the on-screen directions:
158158

159159
```PowerShell
160-
Connect-AzAccount -Subscription "<your Azure subscription id>"
160+
Connect-AzAccount
161161
```
162162

163+
> [!NOTE]
164+
> In case your organization has more than one subscription you might need to specify the SubscriptionId and Tenant arguments. Find details in the [Connect-AzAccount documentation](https://docs.microsoft.com/powershell/module/az.accounts/connect-azaccount).
165+
163166
Change to the `azure-remote-rendering\Scripts` directory and run the conversion script:
164167

165168
```PowerShell

articles/remote-rendering/samples/powershell-example-scripts.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,12 @@ To execute the sample scripts, you need a functional setup of [Azure PowerShell]
3030

3131
1. [Prepare an Azure Storage account](../how-tos/conversion/blob-storage.md#prepare-azure-storage-accounts)
3232

33-
1. Log into the subscription containing your Azure Remote Rendering account:
33+
1. Log into your subscription containing your Azure Remote Rendering account:
3434
1. Open a PowerShell
35-
1. Run: `Connect-AzAccount -Subscription "<your Azure subscription id>"`
35+
1. Run: `Connect-AzAccount` and follow the on-screen directions.
36+
37+
> [!NOTE]
38+
> In case your organization has more than one subscription you might need to specify the SubscriptionId and Tenant arguments. Find details in the [Connect-AzAccount documentation](https://docs.microsoft.com/powershell/module/az.accounts/connect-azaccount).
3639
3740
1. Download the *Scripts* folder from the [Azure Remote Rendering GithHub repository](https://github.com/Azure/azure-remote-rendering).
3841

0 commit comments

Comments
 (0)