mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-13 22:07:22 +00:00
297 lines
9.3 KiB
Markdown
297 lines
9.3 KiB
Markdown
---
|
||
title: How to Manage App-V 5.1 Packages Running on a Stand-Alone Computer by Using PowerShell
|
||
description: How to Manage App-V 5.1 Packages Running on a Stand-Alone Computer by Using PowerShell
|
||
author: jamiejdt
|
||
ms.assetid: c3fd06f6-102f-43d1-a577-d5ced6ac537d
|
||
ms.pagetype: mdop, appcompat, virtualization
|
||
ms.mktglfcycl: deploy
|
||
ms.sitesec: library
|
||
ms.prod: w10
|
||
ms.date: 08/30/2016
|
||
---
|
||
|
||
|
||
# How to Manage App-V 5.1 Packages Running on a Stand-Alone Computer by Using PowerShell
|
||
|
||
|
||
The following sections explain how to perform various management tasks on a stand-alone client computer by using PowerShell:
|
||
|
||
- [To return a list of packages](#bkmk-return-pkgs-standalone-posh)
|
||
|
||
- [To add a package](#bkmk-add-pkgs-standalone-posh)
|
||
|
||
- [To publish a package](#bkmk-pub-pkg-standalone-posh)
|
||
|
||
- [To publish a package to a specific user](#bkmk-pub-pkg-a-user-standalone-posh)
|
||
|
||
- [To add and publish a package](#bkmk-add-pub-pkg-standalone-posh)
|
||
|
||
- [To unpublish an existing package](#bkmk-unpub-pkg-standalone-posh)
|
||
|
||
- [To unpublish a package for a specific user](#bkmk-unpub-pkg-specfc-use)
|
||
|
||
- [To remove an existing package](#bkmk-remove-pkg-standalone-posh)
|
||
|
||
- [To enable only administrators to publish or unpublish packages](#bkmk-admins-pub-pkgs)
|
||
|
||
- [Understanding pending packages (UserPending and GlobalPending)](#bkmk-understd-pend-pkgs)
|
||
|
||
## <a href="" id="bkmk-return-pkgs-standalone-posh"></a>To return a list of packages
|
||
|
||
|
||
Use the following information to return a list of packages that are entitled to a specific user:
|
||
|
||
**Cmdlet**: Get-AppvClientPackage
|
||
|
||
**Parameters**: -Name -Version -PackageID -VersionID
|
||
|
||
**Example**: Get-AppvClientPackage –Name “ContosoApplication” -Version 2
|
||
|
||
## <a href="" id="bkmk-add-pkgs-standalone-posh"></a>To add a package
|
||
|
||
|
||
Use the following information to add a package to a computer.
|
||
|
||
**Important**
|
||
This example only adds a package. It does not publish the package to the user or the computer.
|
||
|
||
|
||
|
||
**Cmdlet**: Add-AppvClientPackage
|
||
|
||
**Example**: $Contoso = Add-AppvClientPackage \\\\path\\to\\appv\\package.appv
|
||
|
||
## <a href="" id="bkmk-pub-pkg-standalone-posh"></a>To publish a package
|
||
|
||
|
||
Use the following information to publish a package that has been added to a specific user or globally to any user on the computer.
|
||
|
||
<table>
|
||
<colgroup>
|
||
<col width="50%" />
|
||
<col width="50%" />
|
||
</colgroup>
|
||
<thead>
|
||
<tr class="header">
|
||
<th align="left">Publishing method</th>
|
||
<th align="left">Cmdlet and example</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr class="odd">
|
||
<td align="left"><p>Publishing to the user</p></td>
|
||
<td align="left"><p><strong>Cmdlet</strong>: Publish-AppvClientPackage</p>
|
||
<p><strong>Example</strong>: Publish-AppvClientPackage “ContosoApplication”</p></td>
|
||
</tr>
|
||
<tr class="even">
|
||
<td align="left"><p>Publishing globally</p></td>
|
||
<td align="left"><p><strong>Cmdlet</strong>: Publish-AppvClientPackage</p>
|
||
<p><strong>Example</strong>: Publish-AppvClientPackage “ContosoApplication” -Global</p></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
|
||
|
||
## <a href="" id="bkmk-pub-pkg-a-user-standalone-posh"></a>To publish a package to a specific user
|
||
|
||
|
||
**Note**
|
||
You must use App-V 5.0 SP2 Hotfix Package 5 or later to use this parameter.
|
||
|
||
|
||
|
||
An administrator can publish a package to a specific user by specifying the optional **–UserSID** parameter with the **Publish-AppvClientPackage** cmdlet, where **-UserSID** represents the end user’s security identifier (SID).
|
||
|
||
To use this parameter:
|
||
|
||
- You can run this cmdlet from the user or administrator session.
|
||
|
||
- You must be logged in with administrative credentials to use the parameter.
|
||
|
||
- The end user must be logged in.
|
||
|
||
- You must provide the end user’s security identifier (SID).
|
||
|
||
**Cmdlet**: Publish-AppvClientPackage
|
||
|
||
**Example**: Publish-AppvClientPackage “ContosoApplication” -UserSID S-1-2-34-56789012-3456789012-345678901-2345
|
||
|
||
## <a href="" id="bkmk-add-pub-pkg-standalone-posh"></a>To add and publish a package
|
||
|
||
|
||
Use the following information to add a package to a computer and publish it to the user.
|
||
|
||
**Cmdlet**: Add-AppvClientPackage
|
||
|
||
**Example**: Add-AppvClientPackage \\\\path\\to\\appv\\package.appv | Publish-AppvClientPackage
|
||
|
||
## <a href="" id="bkmk-unpub-pkg-standalone-posh"></a>To unpublish an existing package
|
||
|
||
|
||
Use the following information to unpublish a package which has been entitled to a user but not remove the package from the computer.
|
||
|
||
**Cmdlet**: Unpublish-AppvClientPackage
|
||
|
||
**Example**: Unpublish-AppvClientPackage “ContosoApplication”
|
||
|
||
## <a href="" id="bkmk-unpub-pkg-specfc-use"></a>To unpublish a package for a specific user
|
||
|
||
|
||
**Note**
|
||
You must use App-V 5.0 SP2 Hotfix Package 5 or later to use this parameter.
|
||
|
||
|
||
|
||
An administrator can unpublish a package for a specific user by using the optional **–UserSID** parameter with the **Unpublish-AppvClientPackage** cmdlet, where **-UserSID** represents the end user’s security identifier (SID).
|
||
|
||
To use this parameter:
|
||
|
||
- You can run this cmdlet from the user or administrator session.
|
||
|
||
- You must be logged in with administrative credentials to use the parameter.
|
||
|
||
- The end user must be logged in.
|
||
|
||
- You must provide the end user’s security identifier (SID).
|
||
|
||
**Cmdlet**: Unpublish-AppvClientPackage
|
||
|
||
**Example**: Unpublish-AppvClientPackage “ContosoApplication” -UserSID S-1-2-34-56789012-3456789012-345678901-2345
|
||
|
||
## <a href="" id="bkmk-remove-pkg-standalone-posh"></a>To remove an existing package
|
||
|
||
|
||
Use the following information to remove a package from the computer.
|
||
|
||
**Cmdlet**: Remove-AppvClientPackage
|
||
|
||
**Example**: Remove-AppvClientPackage “ContosoApplication”
|
||
|
||
**Note**
|
||
App-V cmdlets have been assigned to variables for the previous examples for clarity only; assignment is not a requirement. Most cmdlets can be combined as displayed in [To add and publish a package](#bkmk-add-pub-pkg-standalone-posh). For a detailed tutorial, see [App-V 5.0 Client PowerShell Deep Dive](https://go.microsoft.com/fwlink/?LinkId=324466).
|
||
|
||
|
||
|
||
## <a href="" id="bkmk-admins-pub-pkgs"></a>To enable only administrators to publish or unpublish packages
|
||
|
||
|
||
**Note**
|
||
**This feature is supported starting in App-V 5.0 SP3.**
|
||
|
||
|
||
|
||
Use the following cmdlet and parameter to enable only administrators (not end users) to publish or unpublish packages:
|
||
|
||
<table>
|
||
<colgroup>
|
||
<col width="50%" />
|
||
<col width="50%" />
|
||
</colgroup>
|
||
<tbody>
|
||
<tr class="odd">
|
||
<td align="left"><p><strong>Cmdlet</strong></p></td>
|
||
<td align="left"><p>Set-AppvClientConfiguration</p></td>
|
||
</tr>
|
||
<tr class="even">
|
||
<td align="left"><p><strong>Parameter</strong></p></td>
|
||
<td align="left"><p>-RequirePublishAsAdmin</p>
|
||
<p>Parameter values:</p>
|
||
<ul>
|
||
<li><p>0 - False</p></li>
|
||
<li><p>1 - True</p></li>
|
||
</ul>
|
||
<p><strong>Example:</strong>: Set-AppvClientConfiguration –RequirePublishAsAdmin1</p></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
|
||
|
||
To use the App-V Management console to set this configuration, see [How to Publish a Package by Using the Management Console](how-to-publish-a-package-by-using-the-management-console-51.md).
|
||
|
||
## <a href="" id="bkmk-understd-pend-pkgs"></a>Understanding pending packages (UserPending and GlobalPending)
|
||
|
||
|
||
**Starting in App-V 5.0 SP2**: If you run a PowerShell cmdlet that affects a package that is currently in use, the task that you are trying to perform is placed in a pending state. For example, if you try to publish a package when an application in that package is being used, and then run **Get-AppvClientPackage**, the pending status appears in the cmdlet output as follows:
|
||
|
||
<table>
|
||
<colgroup>
|
||
<col width="50%" />
|
||
<col width="50%" />
|
||
</colgroup>
|
||
<thead>
|
||
<tr class="header">
|
||
<th align="left">Cmdlet output item</th>
|
||
<th align="left">Description</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr class="odd">
|
||
<td align="left"><p>UserPending</p></td>
|
||
<td align="left"><p>Indicates whether the listed package has a pending task that is being applied to the user:</p>
|
||
<ul>
|
||
<li><p>True</p></li>
|
||
<li><p>False</p></li>
|
||
</ul></td>
|
||
</tr>
|
||
<tr class="even">
|
||
<td align="left"><p>GlobalPending</p></td>
|
||
<td align="left"><p>Indicates whether the listed package has a pending task that is being applied globally to the computer:</p>
|
||
<ul>
|
||
<li><p>True</p></li>
|
||
<li><p>False</p></li>
|
||
</ul></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
|
||
|
||
The pending task will run later, according to the following rules:
|
||
|
||
<table>
|
||
<colgroup>
|
||
<col width="50%" />
|
||
<col width="50%" />
|
||
</colgroup>
|
||
<thead>
|
||
<tr class="header">
|
||
<th align="left">Task type</th>
|
||
<th align="left">Applicable rule</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr class="odd">
|
||
<td align="left"><p>User-based task, e.g., publishing a package to a user</p></td>
|
||
<td align="left"><p>The pending task will be performed after the user logs off and then logs back on.</p></td>
|
||
</tr>
|
||
<tr class="even">
|
||
<td align="left"><p>Globally based task, e.g., enabling a connection group globally</p></td>
|
||
<td align="left"><p>The pending task will be performed when the computer is shut down and then restarted.</p></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
|
||
|
||
For more information about pending tasks, see [About App-V 5.0 SP2](about-app-v-50-sp2.md#bkmk-pkg-upgr-pendg-tasks).
|
||
|
||
**Got a suggestion for App-V**? Add or vote on suggestions [here](http://appv.uservoice.com/forums/280448-microsoft-application-virtualization). **Got an App-V issue?** Use the [App-V TechNet Forum](https://social.technet.microsoft.com/Forums/home?forum=mdopappv).
|
||
|
||
## Related topics
|
||
|
||
|
||
[Operations for App-V 5.1](operations-for-app-v-51.md)
|
||
|
||
[Administering App-V 5.1 by Using PowerShell](administering-app-v-51-by-using-powershell.md)
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|