Font size: +
3 minutes reading time (537 words)

Archives and File Groups in the App-V Scripts Folder

Archives and File Groups in the App-V Scripts Folder
Sometimes it is necessary to be able to place whole file groups, directories or developer folders in the “Scripts” folder within an App-V package. These could then, for example, be copied via the AddPackage trigger prior to the start of the application during the installation of the package onto the computer. This blog shows a possibility for doing so using a VBS script as a basis, which triggers the installation and unpacks the archive.
The file group is compressed with the installation script in the archive and decompressed with a special VB script in the Scripts directory. The VB script additionally executes the actual installer for the archive group. Copy commands or installation instructions for MSI packages can be contained here, for example if a driver via a developer package should be installed.
1. Compress the folder with the file group and the installation procedure, which could be a batch (CMD script) for example.
AppvArvhiv1
 
2. Deposit the packages and the process file (VBS) into the Scripts folder. This can be done using the Edit mode with the sequencer or, like in the following screenshot, with the Application Virtualization Explorer from Gridmetric.
appvarchiv2 

The script unpacks the archive and completes the installation tasks. In the header of the script the frame parameters must be entered.
The name of the archive to be unpacked in the Script folder must be set in the installation file. This archive name will be sought in the App-V Scripts folder.
 
ZipArchiv = "archiv.zip"
 
Now define a temporary folder. The archive will be unpacked here. The name of the temporary folder will be created under %temp%\Foldername. In the system context this is C:\Windows\temp:
 
TempFolder = "tempinst" 'extract here
 
Set the name of the installation file (in the archive) in the VBS script. This is started with “cmd.exe /c” after the package is extracted. In this case, cmd.exe /c Install.cmd:
 
ZinstallBatch = Install.cmd”
 
' The archive will be copied from the “Scripts” directory 
' into the Temp directory and unpacked there
' Thereafter a Batch script will start that installs the files
' Andreas Nick 2016
ZipArchiv = "archiv.zip"
TempFolder = "tempinst" 'extract here
ZInstallBatch = Install.cmd”

Set wshShell = CreateObject( "WScript.Shell" )
Set wshSystemEnv = wshShell.Environment( "SYSTEM" )
set fso = CreateObject("Scripting.FileSystemObject")
'Get Environment
Temp = wshShell.ExpandEnvironmentStrings( wshSystemEnv( "TEMP" ))
CurrentDirectory = fso.GetAbsolutePathName(".")
ArchivePath = CurrentDirectory & "\" & ZipArchiv
Set wshSystemEnv = Nothing
Set wshShell     = Nothing
Set fso       = Nothing
'Extract Archive
ZipFile=ArchivePath
wscript.echo  "ZIP:" &  ZipFile
ExtractTo = temp & "\" & TempFolder
Set fso = CreateObject("Scripting.FileSystemObject")
If Not fso.FolderExists(Temp) Then
    fso.CreateFolder(Temp)
End If
fso.CopyFile ZipFile, temp & "\"
If Not fso.FolderExists(ExtractTo) Then
    fso.CreateFolder(ExtractTo)
End If
'Extract
sourceFile = fso.GetAbsolutePathName(temp & ZipArchiv)
destFolder = fso.GetAbsolutePathName(ExtractTo)
 
Set objShell = CreateObject("Shell.Application")
Set FilesInZip=objShell.NameSpace(sourceFile).Items()
objShell.NameSpace(destFolder).copyHere FilesInZip, 16
 
'Execute installer 
Set WshShell = WScript.CreateObject("WScript.Shell")
cmdpath = ExtractTo & "\" & ZInstallBatch
wscript.echo cmdpath
Wshshell.Run "%comspec% /c " & cmdpath, 0, True
fso.DeleteFolder(ExtractTo)
fso.DeleteFile(temp & "\" & ZipArchiv)
Set WshShell= Nothing
Set fso = Nothing
Set objShell = Nothing
Set FilesInZip = Nothing

To finish, the script must go in the DeploymentConfig.xml.

    
     
    < MachineScripts>
      < AddPackage>
        < Path>CMD.EXE
        < Arguments>/c cscript.exe 
			 [{AppVPackageRoot}]\..\Scripts\Install.vbs 
        < Wait RollbackOnError="true" Timeout="300" />
      < /AddPackage>
    < /MachineScripts>

 

×
Stay Informed

When you subscribe to the blog, we will send you an e-mail when there are new updates on the site so you wouldn't miss them.

App-V 5 Recipe for SQL Server Management Studio 20...
Automatic Sequencing of App-V Applications with VM...
 

Comments 4

Guest - Arne on Sunday, February 03, 2019 23:43

Hi, nice bloggpost.
There is actually a way to create folders directly in the script folder during seq. with a little hack I found out some while ago. It's explained in my blog https://how2appvirtualize.blogspot.com/2019/01/how-to-use-dynamic-scripting-in-your.html?m=1

Hi, nice bloggpost. There is actually a way to create folders directly in the script folder during seq. with a little hack I found out some while ago. It's explained in my blog [url=https://how2appvirtualize.blogspot.com/2019/01/how-to-use-dynamic-scripting-in-your.html?m=1][/url]
Andreas Nick on Monday, February 04, 2019 12:54
Good read! https://how2appvirtualize.blogspot.com/2019/01/how-to-use-dynamic-scripting-in-your.html?m=1
Andreas Nick on Tuesday, February 21, 2017 11:20

Yes, that is possible. You can simply paste the calls into the installation script :-)

Yes, that is possible. You can simply paste the calls into the installation script :-)
Guest - Oli Mucha on Tuesday, February 21, 2017 11:10

Thank you, after that I have searched. Is it possible to start multiple installation scripts?

Thank you, after that I have searched. Is it possible to start multiple installation scripts?
Already Registered? Login Here
Saturday, April 20, 2024

Captcha Image

@nickinformation Tweets

My german Blog: 

http://www.software-virtualisierung.de

in 

We use cookies on our website. Some of them are essential for the operation of the site, while others help us to improve this site and the user experience (tracking cookies). You can decide for yourself whether you want to allow cookies or not. Please note that if you reject them, you may not be able to use all the functionalities of the site.