Posts

Showing posts from September, 2019

How to compare changes in two REGISTRY.DAT files the easy way:

Image
When we change registry information in an existing APPV package we usually do so manually in the Sequencer, Ave or TMEdit then save the new version. Afterwards we try to document that changed registry information and often forget some crucial information, making resequencing of the application later on harder than it should be. During the development of an internal APPV workflow application we have created around Tweakappv , TMEdit and AVE, we also wanted to document what has been done in each applications REGISTRY.DAT after the APPV file is saved in a new version automatically. The new and the old Registry.DAT file could be extracted automatically by 7zip command line version with this command: 7-Zip> 7z.exe x " filaname.appv " "registry.dat" –y (just ignore archive errors, the registryfile will work non the less=) But understanding the DAT files is not very easy. By coincidence I found a tool a clever guy have made in C# and pub...

How to Sequence Ibm Spss 26 (and 25):

Image
Normally Ibm Spss have been   considered an easy application to sequence in the past. But after we Sequenced version 26 on 1809 I had a rundown with the following error message when I lunched the application on the client: App-V Subsystem 'Virtual Filesystem ' could not be initialized. {error: 0x74300E0A-0x20006}   Googling this got me down a rabbit hole of a lot of old App-V treads, but nothing could help me. The solution was actually pretty easy, throw away the 1809 sequencer and use the old 1709 sequencer. How to Sequence: The following cmd file will install your program. Just change LSHOST to your license server, and do the same to COMPANYNAME. Regsvr could be removed, it was a thing from the past, but it won’t do anything. echo Installing (1/3): Ibm Spss 26.x64 msiexec.exe / i "%~dp0IBM SPSS Statistics 26.msi" LICENSETYPE="Network" LSHOST="license.server.com" INSTALLPYTHON="1...