diff --git a/windows/application-management/app-v/revision-heidi/appv-reporting.md b/windows/application-management/app-v/revision-heidi/appv-reporting.md
index 31e90e2bf4..201e56d2d5 100644
--- a/windows/application-management/app-v/revision-heidi/appv-reporting.md
+++ b/windows/application-management/app-v/revision-heidi/appv-reporting.md
@@ -111,29 +111,33 @@ Set-AppVClientConfiguration –ReportingEnabled 1
#### Configuring the client to automatically send data to a specific reporting server
-Use the following command to configure the client to automatically send data to a specific reporting server:
+To configure the client to automatically send data to a specific reporting server, use a command with the following format:
```PowerShell
Set-AppVClientConfiguration -ReportingServerURL http://MyReportingServer:MyPort/ -ReportingStartTime 20 -ReportingInterval 1 -ReportingRandomDelay 30
```
-This command configures the client to automatically send the reporting data to the reporting server URL **http://MyReportingServer:MyPort/**. Additionally, the reporting data will be sent daily between 8:00 and 8:30 PM, depending on the random delay generated for the session.
+This example command configures the client to automatically send the reporting data to the reporting server URL ```http://MyReportingServer:MyPort/```. The reporting data will be sent to the URL daily between 8:00 PM and 8:30 PM, depending on the session's generated random delay.
#### Limiting the size of the client's data cache
+To limit the client's data cache size, use a command with the following format:
+
```PowerShell
Set-AppvClientConfiguration –ReportingDataCacheLimit 100
```
-This command configures the maximum size of the App-V client computer's reporting cache to 100 MB. If the cache limit is reached before the data is sent to the server, then the log rolls over and data will be overwritten as necessary.
+This example command configures the maximum size of the App-V client computer's reporting cache to 100 MB. If the cache limit is reached before the data is sent to the server, then the log rolls over and data will be overwritten as necessary.
-**To configure the data block size transmitted across the network between the client and the server**:
+#### Configuring the data block size transmitted across the network between the client and the server
+
+To configure the data block size, use a command with the following format:
```PowerShell
Set-AppvClientConfiguration –ReportingDataBlockSize 10240
```
-Specifies the maximum data block that the client sends to 10240 MB.
+This example command specifies the maximum size of the data block as 10,240 MB.
### Types of data collected
@@ -147,75 +151,71 @@ The following table displays the types of information you can collect by using A
-
Client Information
-Package Information
-Application Usage
+Client information
+Package information
+Application usage
Host Name
Package Name
Start and End Times
Host name
Package name
Start and end times
App-V Client Version
Package Version
Run Status
App-V client version
Package version
Run status
Processor Architecture
Package Source
Shutdown State
Processor architecture
Package source
Shutdown state
Operating System Version
Percent Cached
Application Name
Operating system version
Percent cached
Application name
Service Pack Level
Service Pack level
Application Version
Application version
Operating System Type
Operating system type
Username
Connection Group
Connection group
If you have an existing App-V reporting Server, create a customized scheduled task or script. Specify that the client send the data to the specified location with the desired frequency.
If you have an existing App-V reporting server, create a customized scheduled task or script. Specify that the client sends the data to the specified location at the desired frequency.
If you do not have an existing App-V reporting Server, use the –URL parameter to send the data to a specified share. For example:
Send-AppVClientReport –URL \\Myshare\MyData\ -DeleteOnSuccess
The previous example will send the reporting data to \\MyShare\MyData\ location indicated by the -URL parameter. After the data has been sent, the cache is cleared.
If a location other than the Reporting Server is specified, the data is sent using .xml format with no additional processing.