Skip to content

Commit aac61ef

Browse files
author
Manika Dhiman
committed
acrolinx fixes
1 parent 9a9dd6b commit aac61ef

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

azure-local/concepts/data-collection.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ ms.date: 02/27/2025
1616

1717
This article describes required data collected to keep Azure Stack HCI secure, up to date, and working as expected.
1818

19-
Customer data, including the names, metadata, configuration, and contents of your on-premises virtual machines (VMs) is never sent to the cloud unless you turn on additional services like Azure Backup or Azure Site Recovery, or unless you enroll those VMs individually into cloud management services like Azure Arc.
19+
Customer data, including the names, metadata, configuration, and contents of your on-premises virtual machines (VMs) is never sent to the cloud unless you turn on other services like Azure Backup or Azure Site Recovery, or unless you enroll those VMs individually into cloud management services like Azure Arc.
2020

21-
We do collect diagnostic data. The data described below is required for Microsoft to provide Azure Stack HCI. This data is collected once a day, and data collection events can be viewed in the event logs. Azure Stack HCI collects the minimum data required to keep your clusters up to date, secure, and operating properly.
21+
We do collect diagnostic data. The data described in the following section is required for Microsoft to provide Azure Stack HCI. This data is collected once a day, and data collection events can be viewed in the event logs. Azure Stack HCI collects the minimum data required to keep your clusters up to date, secure, and operating properly.
2222

2323
> [!IMPORTANT]
24-
> The data described below that Azure Stack HCI collects is independent from Windows diagnostic data, which can be configured for various levels of collection. In Azure Stack HCI, the default setting for Windows diagnostic data collection is Security (off), meaning that no Windows diagnostic data is sent unless the administrator changes the diagnostic data settings. For more information, see [Configure Windows diagnostic data in your organization](/windows/privacy/configure-windows-diagnostic-data-in-your-organization). Microsoft is an independent controller of any Windows diagnostic data collected in connection with Azure Stack HCI. Microsoft will handle the Windows diagnostic data in accordance with the [Microsoft Privacy Statement](https://privacy.microsoft.com/privacystatement).
24+
> The data described below that Azure Stack HCI collects is independent from Windows diagnostic data, which can be configured for various levels of collection. In Azure Stack HCI, the default setting for Windows diagnostic data collection is Security (off), meaning that no Windows diagnostic data is sent unless the administrator changes the diagnostic data settings. For more information, see [Configure Windows diagnostic data in your organization](/windows/privacy/configure-windows-diagnostic-data-in-your-organization). Microsoft is an independent controller of any Windows diagnostic data collected in connection with Azure Stack HCI. Microsoft handles the Windows diagnostic data in accordance with the [Microsoft Privacy Statement](https://privacy.microsoft.com/privacystatement).
2525
2626
## Data collection and residency
2727

@@ -43,14 +43,14 @@ To learn about how Microsoft stores diagnostic data in Azure, see [Data residenc
4343

4444
## Data retention
4545

46-
After Azure Stack HCI collects this data, it is retained for 90 days. Aggregated, de-identified data may be kept longer.
46+
After Azure Stack HCI collects this data, it's retained for 90 days. Aggregated, de-identified data may be kept longer.
4747

4848
## What data is collected?
4949

5050
Azure Stack HCI collects:
5151

5252
- Information about servers such as operating system version, processor model, number of processor cores, memory size, cluster identifier, and hash of hardware ID
53-
- List of installed Azure Stack HCI server features (e.g. BitLocker)
53+
- List of installed Azure Stack HCI server features (for example, BitLocker)
5454
- Information necessary to compute the reliability of the Azure Stack HCI operating system
5555
- Information necessary to compute the reliability of the health collection data
5656
- Information gathered from the event log for specific errors, such as update download failed

azure-local/manage/cluster-powershell.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ You can use Windows PowerShell to manage resources and configure features on you
2121
You manage clusters from a remote computer, rather than on a host server in a cluster. This remote computer is called the management computer.
2222

2323
> [!NOTE]
24-
> When running PowerShell commands from a management computer, include the `-Name` or `-Cluster` parameter with the name of the cluster you are managing. In addition, you will need to specify the fully qualified domain name (FQDN) when using the `-ComputerName` parameter for a server node.
24+
> When running PowerShell commands from a management computer, include the `-Name` or `-Cluster` parameter with the name of the cluster you're managing. In addition, you need to specify the fully qualified domain name (FQDN) when using the `-ComputerName` parameter for a server node.
2525
2626
For the complete reference documentation for managing clusters using PowerShell, see the [FailoverCluster reference](/powershell/module/failoverclusters).
2727

@@ -32,7 +32,7 @@ Windows PowerShell is used to perform all the tasks in this article. It's recomm
3232
If the following cmdlets aren't available in your PowerShell session, you may need to add the `Failover Cluster` Module for Windows PowerShell Feature, using the following PowerShell cmd: `Add-WindowsFeature RSAT-Clustering-PowerShell`.
3333

3434
> [!NOTE]
35-
> Starting with Windows 10 October 2018 Update, RSAT is included as a set of "Features on Demand" right from Windows 10. For versions older than Windows 10 22H2, simply go to **Settings > Apps > Apps & features > Optional features > Add a feature > RSAT: Failover Clustering Tools**, and select **Install**. For Windows 10 22H2 and Windows 11, go to **Settings > System > Optional features > Add a feature > RSAT: Failover Clustering Tools**, and select **Add**. To see operation progress, click the Back button to view status on the "Manage optional features" page. The added feature will persist across Windows 10 version upgrades.
35+
> Starting with Windows 10 October 2018 Update, RSAT is included as a set of "Features on Demand" right from Windows 10. For versions older than Windows 10 22H2, go to **Settings > Apps > Apps & features > Optional features > Add a feature > RSAT: Failover Clustering Tools**, and select **Install**. For Windows 10 22H2 and Windows 11, go to **Settings > System > Optional features > Add a feature > RSAT: Failover Clustering Tools**, and select **Add**. To see operation progress, click the Back button to view status on the "Manage optional features" page. The added feature persists across Windows 10 version upgrades.
3636
## View cluster settings and resources
3737

3838
Gets information about a cluster named Cluster1:
@@ -86,7 +86,7 @@ Starts the Cluster service on all server nodes of the cluster on which it isn't
8686
Start-Cluster -Name Cluster1
8787
```
8888

89-
This example stops the Cluster service on all nodes in the cluster named Cluster1, which will stop all services and applications configured in the cluster:
89+
This example stops the Cluster service on all nodes in the cluster named Cluster1, which stops all services and applications configured in the cluster:
9090

9191
```powershell
9292
Stop-Cluster -Name Cluster1
@@ -109,7 +109,7 @@ Remove-ClusterNode -Cluster Cluster1 -Name Node4
109109
```
110110

111111
>[!NOTE]
112-
> If the node has been added to a single server, see these [manual steps](../deploy/single-server.md#change-a-single-node-to-a-multi-node-cluster-optional) to reconfigure Storage Spaces Direct.
112+
> If the node is added to a single server, see these [manual steps](../deploy/single-server.md#change-a-single-node-to-a-multi-node-cluster-optional) to reconfigure Storage Spaces Direct.
113113
114114
## Set up the cluster witness
115115

@@ -166,7 +166,7 @@ Before you remove (destroy) a cluster, you must unregister it from Azure first.
166166
Use the `Remove-ClusterResource` cmdlet to remove one or all resources on a cluster. For more examples and usage information, see the [Remove-ClusterResource](/powershell/module/failoverclusters/remove-clusterresource) reference documentation.
167167

168168
> [!NOTE]
169-
> You will need to temporarily enable Credential Security Service Provider (CredSSP) authentication to remove a cluster. For more information, see [Enable-WSManCredSSP](/powershell/module/microsoft.wsman.management/enable-wsmancredssp).
169+
> You need to temporarily enable Credential Security Service Provider (CredSSP) authentication to remove a cluster. For more information, see [Enable-WSManCredSSP](/powershell/module/microsoft.wsman.management/enable-wsmancredssp).
170170
171171
The following example removes cluster resources by name on cluster Cluster1:
172172

azure-local/manage/convert-to-stretched-cluster.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,24 +38,24 @@ Whenever you add or remove a server, perform cluster validation afterwards to en
3838

3939
## Before you add server nodes
4040

41-
Stretched clusters require the same number of server nodes and the same number of drives in each site. When adding servers to an Azure Stack HCI cluster, their drives are automatically added to a single storage pool. In a stretched cluster however, each site must have its own storage pool.
41+
Stretched clusters require the same number of server nodes and the same number of drives in each site. When you add servers to an Azure Stack HCI cluster, their drives are automatically added to a single storage pool. In a stretched cluster however, each site must have its own storage pool.
4242

4343
To ensure that separate storage pools are created, sites must be created first before new server nodes can be added. Once the sites are created, the server nodes can be added to the cluster and its own pool created, one for each site.
4444

4545
## Create an additional site
4646

4747
Azure Stack HCI automatically creates a site when you create a (non-stretched) cluster. Because the cluster is created in a single site, server nodes are added to this site and a single drive pool is created.
4848

49-
Normally, when creating additional sites, the [New-ClusterFaultDomain](/powershell/module/failoverclusters/new-clusterfaultdomain) cmdlet is used. However, you cannot add server nodes to a site when the servers are not a part of the cluster.
49+
Normally, when creating additional sites, the [New-ClusterFaultDomain](/powershell/module/failoverclusters/new-clusterfaultdomain) cmdlet is used. However, you can't add server nodes to a site when the servers aren't a part of the cluster.
5050

51-
Much like when you [Add or remove servers](add-cluster.md) to an Azure Stack HCI cluster using Windows Admin Center, the [Get-ClusterFaultDomainXML](/powershell/module/failoverclusters/get-clusterfaultdomainxml) and [Set-ClusterFaultDomainXML](/powershell/module/failoverclusters/set-clusterfaultdomainxml) cmdlets are used to create an XML file that specifies the sites and nodes in them. When additional server nodes are added to the cluster, they are added to the new site and the second site's drive pool is created.
51+
Much like when you [Add or remove servers](add-cluster.md) to an Azure Stack HCI cluster using Windows Admin Center, the [Get-ClusterFaultDomainXML](/powershell/module/failoverclusters/get-clusterfaultdomainxml) and [Set-ClusterFaultDomainXML](/powershell/module/failoverclusters/set-clusterfaultdomainxml) cmdlets are used to create an XML file that specifies the sites and nodes in them. When additional server nodes are added to the cluster, they're added to the new site and the second site's drive pool is created.
5252

5353
You can add additional servers simultaneously using the [Add-ClusterNode](/powershell/module/failoverclusters/add-clusternode) cmdlet, which adds each new server's drives at the same time.
5454

5555
Typically, you manage clusters from a remote client computer, rather than on a server in the cluster. This remote computer is called the management computer.
5656

5757
>[!NOTE]
58-
>When running PowerShell commands from a management computer, include the `-Cluster` parameter with the name of the cluster you are managing.
58+
>When running PowerShell commands from a management computer, include the `-Cluster` parameter with the name of the cluster you're managing.
5959
6060
Ok, let's begin:
6161

@@ -65,7 +65,7 @@ Ok, let's begin:
6565
Get-ClusterFaultDomainXML | out-file sites.xml
6666
```
6767
68-
1. Navigate to where the `Sites.xml` file is located on your management computer and open the file. For example, if there are two nodes currently in the cluster, the `Sites.xml` file will look like this:
68+
1. Navigate to where the `Sites.xml` file is located on your management computer and open the file. For example, if there are two nodes currently in the cluster, the `Sites.xml` file looks like this:
6969
7070
```PowerShell
7171
<Topology>
@@ -106,7 +106,7 @@ Ok, let's begin:
106106
107107
## Add new server nodes
108108
109-
Once the sites have been created, you next add the new servers to the cluster. These servers would be added to the new site as specified previously and a new pool of the drives is also created.
109+
Once the sites are created, you next add the new servers to the cluster. These servers would be added to the new site as specified previously and a new pool of the drives is also created.
110110
111111
1. Using the `Add-ClusterNode` cmdlet, add the new server nodes to the cluster:
112112
@@ -130,7 +130,7 @@ Once the sites have been created, you next add the new servers to the cluster. T
130130
131131
Creating the virtual disks on the secondary site and setting up Storage Replica is a manual process. To see all the virtual disks currently in the cluster, use the [Get-VirtualDisk](/powershell/module/storage/get-virtualdisk) cmdlet.
132132
133-
With Storage Replica, all disks must be of the same size and attributes. When creating the disks on the secondary site, the same method of virtual disk creation and disk resiliency that you used for the primary site nodes. Storage Replica also requires a log drive for each site to perform replication.
133+
With Storage Replica, all disks must be of the same size and attributes. When you create the disks on the secondary site, use the same method of virtual disk creation and disk resiliency that you used for the primary site nodes. Storage Replica also requires a log drive for each site to perform replication.
134134
135135
## Next steps
136136

azure-local/manage/create-stretched-volumes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.date: 02/27/2025
1616

1717
This article describes how to create volumes and set up replication for stretched clusters in Azure Stack HCI using Windows Admin Center and PowerShell.
1818

19-
We'll create volumes on four servers in two sites, two servers per site as an example. Keep in mind however, that if you want to create three-way mirror volumes, you need at least six servers, three servers per site.
19+
We create volumes on four servers in two sites, two servers per site as an example. Keep in mind however, that if you want to create three-way mirror volumes, you need at least six servers, three servers per site.
2020

2121
## Stretched volumes and replication using Windows Admin Center
2222

@@ -150,7 +150,7 @@ Test-SRTopology -SourceComputerName Server1 -SourceVolumeName W: -SourceLogVolum
150150

151151
### Step 2: Create the replication partnership
152152

153-
Now that you completed the `Test-SRTopology` tests, you are ready to configure Storage Replica and create the replication partnership. In a nutshell, we'll configure Storage Replica by creating replication groups (RG) for each site and specifying the data volumes and log volumes for both the source server nodes in Site1 (Server1, Server2) and the destination (replicated) server nodes in Site2 (Server3, Server4).
153+
Now that you completed the `Test-SRTopology` tests, you're ready to configure Storage Replica and create the replication partnership. In a nutshell, we'll configure Storage Replica by creating replication groups (RG) for each site and specifying the data volumes and log volumes for both the source server nodes in Site1 (Server1, Server2) and the destination (replicated) server nodes in Site2 (Server3, Server4).
154154

155155
Let's begin:
156156

@@ -160,7 +160,7 @@ Let's begin:
160160
Add-ClusterSharedVolume -Name "Cluster Virtual Disk (Site1)"
161161
```
162162

163-
1. The Available Storage group should be "owned" by the node it is currently sitting on. The group can be moved to Server1 using:
163+
1. The Available Storage group should be "owned" by the node it's currently sitting on. The group can be moved to Server1 using:
164164

165165
```powershell
166166
Move-ClusterGroup -Name "Available Storage" -Node Server1

azure-local/manage/languages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ To manually obtain and add language packs to the operating system:
6565

6666
To learn more, see [Add languages to Windows images](/windows-hardware/manufacture/desktop/add-language-packs-to-windows).
6767

68-
1. We recommend adding Language Features on Demand (FODs) to enable additional functionality to the language you added, as in the following example:
68+
1. We recommend adding Language Features on Demand (FODs) to enable other functionality to the language you added, as in the following example:
6969

7070
```DOS
7171
dism /online /add-capability /capabilityname:Language.Basic~~~de-de~0.0.1.0

0 commit comments

Comments
 (0)