diff --git a/windows/application-management/app-v/appv-apply-the-deployment-configuration-file-with-powershell.md b/windows/application-management/app-v/appv-apply-the-deployment-configuration-file-with-powershell.md
index 42754ef837..a3958c5d49 100644
--- a/windows/application-management/app-v/appv-apply-the-deployment-configuration-file-with-powershell.md
+++ b/windows/application-management/app-v/appv-apply-the-deployment-configuration-file-with-powershell.md
@@ -6,7 +6,7 @@ ms.pagetype: mdop, appcompat, virtualization
ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
-ms.date: 04/19/2017
+ms.date: 06/12/2018
---
# How to apply the deployment configuration file by using Windows PowerShell
@@ -20,12 +20,12 @@ The dynamic deployment configuration file is applied when a package is added or
## Apply the deployment configuration file with Windows PowerShell
>[!NOTE]
->The following procedure is an example that uses the following two file paths for the package and configuration files:
+>The following example cmdlet uses the following two file paths for the package and configuration files:
>
>* C:\\Packages\\Contoso\\MyApp.appv
>* C:\\Packages\\Contoso\\DynamicConfigurations\\deploymentconfig.xml
>
->If your package and configuration file use different file paths than the example, feel free to replace them as needed.
+>If your package and configuration files use different file paths than the example, feel free to replace them as needed.
To specify a new default set of configurations for all users who will run the package on a specific computer, in a Windows PowerShell console, enter the following cmdlet:
@@ -35,10 +35,10 @@ Add-AppVClientPackage -Path C:\Packages\Contoso\MyApp.appv -DynamicDeploymentCon
>[!NOTE]
>This command captures the resulting object into $pkg. If the package is already present on the computer, the **Set-AppVclientPackage** cmdlet can be used to apply the deployment configuration document:
- >
- ```PowerShell
- Set-AppVClientPackage -Name Myapp -Path C:\Packages\Contoso\MyApp.appv -DynamicDeploymentConfiguration C:\Packages\Contoso\DynamicConfigurations\deploymentconfig.xml
- ```
+
+ ```PowerShell
+ Set-AppVClientPackage -Name Myapp -Path C:\Packages\Contoso\MyApp.appv -DynamicDeploymentConfiguration C:\Packages\Contoso\DynamicConfigurations\deploymentconfig.xml
+ ```
## Have a suggestion for App-V?
diff --git a/windows/application-management/app-v/appv-apply-the-user-configuration-file-with-powershell.md b/windows/application-management/app-v/appv-apply-the-user-configuration-file-with-powershell.md
index 2632d17e87..c115854e06 100644
--- a/windows/application-management/app-v/appv-apply-the-user-configuration-file-with-powershell.md
+++ b/windows/application-management/app-v/appv-apply-the-user-configuration-file-with-powershell.md
@@ -1,12 +1,12 @@
---
-title: How to Apply the User Configuration File by Using Windows PowerShell (Windows 10)
-description: How to Apply the User Configuration File by Using Windows PowerShell
+title: How to apply the user configuration file by using Windows PowerShell (Windows 10)
+description: How to apply the user configuration file by using Windows PowerShell (Windows 10).
author: MaggiePucciEvans
ms.pagetype: mdop, appcompat, virtualization
ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
-ms.date: 04/19/2017
+ms.date: 06/12/2018
---
# How to apply the user configuration file by using Windows PowerShell
@@ -14,22 +14,18 @@ ms.date: 04/19/2017
The dynamic user configuration file is applied when a package is published to a specific user and determines how the package will run.
-Use the following procedure to specify a user-specific configuration file. The following procedure is based on the example:
-
-* C:\\Packages\\Contoso\\MyApp.appv
-
## Apply a user configuration file
-Use the following procedure to specify a user-specific configuration file.
+You can follow these steps to specify a user-specific configuration file:
>[!NOTE]
>The following procedure uses the following example file path for its package:
>
>* C:\\Packages\\Contoso\\MyApp.appv.
>
->f your package file uses a different file path than the example, feel free to replace it.
+>f your package file uses a different file path than the example, feel free to replace it as needed.
-1. Enter the following cmdlet to add the package to the computer using the Windows PowerShell console:
+1. Enter the following cmdlet in Windows PowerShell to add the package to the computer:
```PowerShell
Add-AppVClientPackage C:\Packages\Contoso\MyApp.appv
@@ -37,7 +33,7 @@ Use the following procedure to specify a user-specific configuration file.
2. Enter the following cmdlet to publish the package to the user and specify the updated the dynamic user configuration file:
```PowerShell
- Publish-AppVClientPackage $pkg -DynamicUserConfigurationPath c:\Packages\Contoso\config.xml
+ Publish-AppVClientPackage $pkg -DynamicUserConfigurationPath C:\Packages\Contoso\config.xml
```
## Have a suggestion for App-V?
diff --git a/windows/application-management/app-v/appv-auto-clean-unpublished-packages.md b/windows/application-management/app-v/appv-auto-clean-unpublished-packages.md
index 5292d2ed73..bb51d5cad8 100644
--- a/windows/application-management/app-v/appv-auto-clean-unpublished-packages.md
+++ b/windows/application-management/app-v/appv-auto-clean-unpublished-packages.md
@@ -1,18 +1,18 @@
---
-title: Automatically cleanup unpublished packages on the App-V client (Windows 10)
-description: How to automatically clean-up any unpublished packages on your App-V client devices.
+title: Automatically clean up unpublished packages on the App-V client (Windows 10)
+description: How to automatically clean up any unpublished packages on your App-V client devices.
author: eross-msft
ms.pagetype: mdop, appcompat, virtualization
ms.mktglfcycl: deploy
ms.sitesec: library
ms.prod: w10
-ms.date: 04/19/2017
+ms.date: 06/12/2018
---
# Automatically clean up unpublished packages on the App-V client
>Applies to: Windows 10, version 1703
-Previous versions of App-V have required you to manually remove your unpublished packages from your client devices, to free up additional storage space. Windows 10, version 1703 introduces the ability to use PowerShell or Group Policy settings to automatically clean up your unpublished packages after a device restart.
+If you wanted to free up additional storage space in previous versions of App-V, you would have had to manually remove your unpublished packages from your client devices. Windows 10, version 1703 introduces the ability to use PowerShell or Group Policy settings to automatically clean up your unpublished packages after restarting your device.
## Clean up with PowerShell cmdlets
@@ -20,7 +20,7 @@ You can enter PowerShell cmdlets to turn on the **AutoCleanupEnabled** setting,
### Turn on the AutoCleanupEnabled option
-1. Open PowerShell as an admin and enter the following cmdlet to turn on the automatic package clean up functionality:
+1. Open PowerShell as an admin and enter the following cmdlet to turn on the automatic package cleanup functionality:
```PowerShell
Set-AppvClientConfiguration -AutoCleanupEnabled 1
@@ -32,7 +32,7 @@ You can enter PowerShell cmdlets to turn on the **AutoCleanupEnabled** setting,
|---|---|---|
|AutoCleanupEnabled|1|False|
-2. Run the following cmdlet to make sure the configuration is ready to automatically clean up your packages.
+1. Run the following cmdlet to check if the configuration has the cleanup setting turned on.
```PowerShell
Get-AppvClientConfiguration
@@ -41,9 +41,9 @@ You can enter PowerShell cmdlets to turn on the **AutoCleanupEnabled** setting,
## Clean up with Group Policy settings
-Using Group Policy, you can turn on the **Enable automatic clean up of unused App-V packages** setting to automatically clean up your unpublished App-V packages from your App-V client devices.
+Using Group Policy, you can turn on the **Enable automatic cleanup of unused App-V packages** setting to automatically clean up your unpublished App-V packages from your App-V client devices.
-### Turn on the Enable automatic clean up of unused App-V packages setting
+### Turn on the Enable automatic cleanup of unused App-V packages setting
1. Open your Group Policy editor and select the **Administrative Templates\System\App-V\PackageManagement\Enable automatic cleanup of unused App-V packages** setting.
diff --git a/windows/application-management/app-v/appv-available-mdm-settings.md b/windows/application-management/app-v/appv-available-mdm-settings.md
index b6a44c1356..6c749e9884 100644
--- a/windows/application-management/app-v/appv-available-mdm-settings.md
+++ b/windows/application-management/app-v/appv-available-mdm-settings.md
@@ -28,204 +28,4 @@ With Windows 10, version 1703, you can configure, deploy, and manage your App-V
|SyncStatusDescription|Windows 10, version 1703|./Vendor/MSFT/EnterpriseAppVManagement/AppVPublishing/ LastSync/SyncStatusDescription|String|- **0**: App-V publishing is idle.
- **1**: App-V connection groups publish in progress.
- **2**: App-V packages (non-connection group) publish in progress.
- **3**: App-V packages (connection group) publish in progress.
- **4**: App-V packages unpublish in progress.|
|SyncProgress|Windows 10, version 1703|./Vendor/MSFT/EnterpriseAppVManagement/AppVPublishing/LastSync/SyncProgress|String|- **0**: App-V Sync is idle.
- **1**: App-V Sync is initializing.
- **2**: App-V Sync is in progress.
- **3**: App-V Sync is complete.
- **4**: App-V Sync requires device reboot.|
|PublishXML|Windows 10, version 1703|./Vendor/MSFT/EnterpriseAppVManagement/AppVPublishing/Sync/PublishXML|String|Custom value, entered by admin.|
-|Policy|Windows 10, version 1703|./Vendor/MSFT/EnterpriseAppVManagement/AppVDynamicPolicy/ configurationid/Policy|String|Custom value, entered by admin.|
-
-
-
Policy name | -Supported versions | -Details | -
---|---|---|
Name | -Windows 10, version 1703 | -
-
|
-
Version | -Windows 10, version 1703 | -
-
|
-
Publisher | -Windows 10, version 1703 | -
-
|
-
InstallLocation | -Windows 10, version 1703 | -
-
|
-
InstallDate | -Windows 10, version 1703 | -
-
|
-
Users | -Windows 10, version 1703 | -
-
|
-
AppVPackageID | -Windows 10, version 1703 | -
-
|
-
AppVVersionID | -Windows 10, version 1703 | -
-
|
-
AppVPackageUri | -Windows 10, version 1703 | -
-
|
-
LastError | -Windows 10, version 1703 | -
-
|
-
LastErrorDescription | -Windows 10, version 1703 | -
-
|
-
SyncStatusDescription | -Windows 10, version 1703 | -
-
|
-
SyncProgress | -Windows 10, version 1703 | -
-
|
-
PublishXML | -Windows 10, version 1703 | -
-
|
-
Policy | -Windows 10, version 1703 | -
-
|
-