< Back

Mount-AppvClientPackage

Tue Jan 29, 2019 9:24 pm

NAME Mount-AppvClientPackage



SYNOPSIS

Loads a package into the App-V cache.





SYNTAX

Mount-AppvClientPackage [-PackageId] <Guid> [-VersionId] <Guid> [-Cancel] [<CommonParameters>]



Mount-AppvClientPackage [-Package] <AppvClientPackage> [-Cancel] [<CommonParameters>]



Mount-AppvClientPackage [-Name] <String> [[-Version] <String>] [<CommonParameters>]





DESCRIPTION

The Mount-AppvClientPackage cmdlet initiates or resumes the loading of an Microsoft Application Virtualization (App-V) package into the cache.





PARAMETERS

-Cancel [<SwitchParameter>]

Indicates that the cmdlet stops the loading of a package.



Required? false

Position? named

Default value none

Accept pipeline input? false

Accept wildcard characters? false



-Name <String>

Specifies the friendly name of the package given during sequencing time. This value is obtained from the package manifest.



Required? true

Position? 1

Default value none

Accept pipeline input? false

Accept wildcard characters? false



-Package <AppvClientPackage>

Specifies an App-V package.



Required? true

Position? 1

Default value none

Accept pipeline input? true(ByValue)

Accept wildcard characters? false



-PackageId <Guid>

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.



Required? true

Position? 1

Default value none

Accept pipeline input? false

Accept wildcard characters? false



-Version [<String>]

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.



Required? false

Position? 2

Default value none

Accept pipeline input? false

Accept wildcard characters? false



-VersionId <Guid>

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.



Required? true

Position? 2

Default value none

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

Microsoft.AppvAgent.AppvClientPackage







OUTPUTS

Microsoft.AppvAgent.AppvClientPackage







NOTES





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.



Example 1: Get a specific version of a package



PS C:\\> Mount-AppvClientPackage -Name "MyApp" -Version 2



This command downloads the version 2 of the package named MyApp.





Example 2: Get all versions of a package



PS C:\\> Mount-AppvClientPackage -Name "MyApp"



This command downloads the all versions of the package named MyApp.





Example 3: Download all packages that match a string



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.





Example 4: Download and publish a new package



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.





Example 5: Cancel a download



PS C:\\> Mount-AppvClientPackage -Name "MyApp" -Cancel



This command cancels the download of the package name MyApp.







RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=827714

Add-AppvClientPackage

Get-AppvClientPackage

Publish-AppvClientPackage

Remove-AppvClientPackage

Repair-AppvClientPackage

Set-AppvClientPackage

Stop-AppvClientPackage

Unpublish-AppvClientPackage