Finished old file and started updating new file.

This commit is contained in:
Heidi Lohr
2018-07-05 11:03:04 -07:00
parent 773851e314
commit 618bbe5dc4
2 changed files with 45 additions and 45 deletions

View File

@ -18,23 +18,25 @@ App-V package accelerators automatically sequence large, complex applications. A
1. Install the App-V sequencer. For more information about installing the sequencer, see [How to install the sequencer](appv-install-the-sequencer.md).
2. To open a Windows PowerShell console, select **Start** and enter **PowerShell**. Right-click **Windows PowerShell** and select **Run as Administrator**.
3. Enter the **New-AppvPackageAccelerator** cmdlet.
4. To create a package accelerator, make sure that you have the .appv package to create an accelerator from the installation media or installation files, and optionally a readme file for the accelerator's consumers to use. The following parameters are required to use the package accelerator cmdlet:
3. Make sure that you have the .appv package to create an accelerator from the installation media or installation files. You can also optionally use a readme file for the accelerator's users to reference.
4. Enter the **New-AppvPackageAccelerator** cmdlet.
- **InstalledFilesPath** specifies the application installation path.
- **Installer** specifies the path to the application installer media
- **InputPackagePath** specifies the path to the .appv package
- **Path** specifies the output directory for the package.
The following parameters are required to use the package accelerator cmdlet:
The following example displays how you can create a package accelerator with an .appv package and the installation media:
- *InstalledFilesPath* specifies the application installation path.
- *Installer* specifies the path to the application installer media.
- *InputPackagePath* specifies the path to the .appv package.
- *Path* specifies the output directory for the package.
The following example cmdlet shows how you can create a package accelerator with an .appv package and the installation media:
```PowerShell
New-AppvPackageAccelerator -InputPackagePath <path to the .appv file> -Installer <path to the installer executable> -Path <directory of the output path>
```
An additional optional parameter that can be used with the **New-AppvPackageAccelerator** cmdlet is as follows:
You can also use the following optional parameter with the **New-AppvPackageAccelerator** cmdlet:
- **AcceleratorDescriptionFile** specifies the path to user created package accelerator instructions. The package accelerator instructions are **.txt** or **.rtf** description files that will be included in the package created using the package accelerator.
- *AcceleratorDescriptionFile* specifies the path to user created package accelerator instructions. The package accelerator instructions are **.txt** or **.rtf** description files that will be included in the package created by the package accelerator.
## Have a suggestion for App-V?