Mount-AppvClientPackage
Loads a package into the App-V cache.
Mount-AppvClientPackage
[-Cancel]
[-PackageId] <Guid>
[-VersionId] <Guid>
[<CommonParameters>]
Mount-AppvClientPackage
[-Cancel]
[-Package] <AppvClientPackage>
[<CommonParameters>]
Mount-AppvClientPackage
[-Name] <String>
[[-Version] <String>]
[<CommonParameters>]
The Mount-AppvClientPackage cmdlet initiates or resumes the loading of a Microsoft Application Virtualization (App-V) package into the cache.
PS C:\> Mount-AppvClientPackage -Name "MyApp" -Version 2
This command downloads the version 2 of the package named MyApp.
PS C:\> Mount-AppvClientPackage -Name "MyApp"
This command downloads the all versions of the package named MyApp.
PS C:\> Get-AppvClientPackage -Name "My*" | Mount-AppvClientPackage
This command gets all packages that have the string My in the name, and then downloads them.
PS C:\> Add-AppvClientPackage -Path "http://MyServer/content/package.Appv" | Mount-AppvClientPackage | Publish-AppvClientPackage -Global
This command adds the package from the path specified, downloads it, and then publishes it to all users on the computer.
PS C:\> Mount-AppvClientPackage -Name "MyApp" -Cancel
This command cancels the download of the package name MyApp.
Indicates that the cmdlet stops the loading of a package.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies the friendly name of the package given during sequencing time. This value is obtained from the package manifest.
Type: | String |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies an App-V package.
Type: | AppvClientPackage |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies a GUID that uniquely identifies the package. It can be found in the package manifest or by opening the package in the App-V Sequencer. The package IDs are shared by all versions of a specific package.
Type: | Guid |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies the version of an App-V package in one lineage. If you do not specify this parameter, the cmdlet operates on all versions on the computer.
Type: | String |
Position: | 1 |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies a GUID that differentiates a package version from other versions, whether older, newer, or of a different lineage. If you do not specify this parameter, the cmdlet operates on all versions of the package.
Type: | Guid |
Position: | 1 |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Microsoft.AppvAgent.AppvClientPackage
Microsoft.AppvAgent.AppvClientPackage
- If a previous mount has been canceled, the cmdlet resumes that mount when it is run again. The package must be added to the system before mounting. Otherwise the cmdlet fails. If you do not specify any parameters, the cmdlet mounts all packages on the system.
- This cmdlet is synchronous. It returns when the mount option has completed. To make the cmdlet asynchronous, use the Start-Job cmdlet.