Book Image

VMware ThinApp 4.7 Essentials

By : Peter Bjork
Book Image

VMware ThinApp 4.7 Essentials

By: Peter Bjork

Overview of this book

VMware ThinApp 4.7 is an application virtualization and portable application creator which allows users to package conventional applications so that they are portable. "VMware ThinApp 4.7 Essentials" shows you how to deploy ThinApp packages in order to improve the portability, manageability and compatibility of applications by encapsulating them from the underlying operating system on which they are executed. Application virtualization improves the portability, manageability and compatibility of applications by encapsulating them from the underlying operating system on which they are executed. VMware ThinApp 4.7 is an application virtualization and portable application creator which allows users to package conventional applications so that they are portable. ThinApp eliminates application conflicts, reducing the need and cost of recoding and regression testing. In this book you will learn about how application virtualization works and how to deploy ThinApp packages. You will learn how to update and tweak ThinApp Projects before distribution. This book will then cover design and implementation considerations for future ThinApp projects.
Table of Contents (15 chapters)
VMware ThinApp 4.7 Essentials
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Protecting your packages


Since a ThinApp package is very portable between operating systems and clients, it's important to protect your packages from being copied and used on unauthorized devices. There are several different methods you can use to protect your packages:

  • Using Active Directory groups

  • Built-in VBScript

  • Using VMware Horizon Application Manager

  • Using third-party solutions

Protecting Packages with the help of Active Directory (AD) group membership is probably the most common method. During build time, you specify AD groups within your Package.ini file. You or your client must be a member of the correct group or execution will be denied. This method is very robust and secure. The downside is that it can be a bit static by nature. If you want to change the group used for protection, you must rebuild your package.

With a VBScript, virtually any logic can be used to validate if the package is allowed to execute or not. With ExitProcess you can terminate the package if your logic is not...