Advertisement
PC_Aide

Appv Sequencer Package.ps1

Oct 28th, 2018
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <#
  2.     SRC: https://technet.microsoft.com/nl-nl/library/jj684300(v=vs.85).aspx
  3.    
  4.     PrimaryVirtualApplicationDirectory (PVAD?)- specifies the path to the directory that will be used to install the application. This path must exist.    
  5.     O/P: pending ...
  6. #>
  7.  
  8. #RunAsAdmin
  9. New-AppvSequencerPackage –Name <name of Package> -PrimaryVirtualApplicationDirectory <path to the package root> -Installer <path to the installer executable> -OutputPath <directory of the output path>
  10.  
  11. <#
  12. Optional args:
  13. AcceleratorFilePath – specifies the path to the accelerator .cab file to generate a package.
  14.  
  15. InstalledFilesPath - specifies the path to where the local installed files of the application are saved.
  16.  
  17. InstallMediaPath - specifies the path to where the installation media is
  18.  
  19. TemplateFilePath (XML) - specifies the path to a template fileif you want to customize the sequencing process.
  20.  
  21. FullLoad - specifies that the package must be fully downloaded to the computer running the App-V 5.0 before it can be opened.
  22. #>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement