SlideShare a Scribd company logo
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential1
Best Practices for
Application Virtualization
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential2
Todays Presenters
Timothy Davis
Senior Product Marketing Manager,
Flexera Software
Tdavis@Flexerasoftware.com
@TimothyToday
steveth@microsoft.com
Steve Thomas
Senior Consultant
Microsoft
@Madvirtualizer
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential3
What is App-V: Microsoft Application Virtualization
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential4
App-V 5.0 SP3 & 5.1 Changes
> Click here to watch the recorded webinar with Steve Thomas <
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential5
Sequencing: What Changed App-V 5.0 SP3
• Connection Group Changes
– Flexible Connection Groups
– Merged Roots
• Sequencing Improvements
– To PVAD or not PVAD? (Primary
virtual app directory)
– RunVirtual (User Mode)
> Click here to watch the recorded webinar with Steve Thomas <
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential6
• What is a connection group?
• Connection Groups are generally required for file based merged packages
Connection Group
> Click here to watch the recorded webinar with Steve Thomas <
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential7
• There are a few key areas in the Design / Sequencing Process:
Connection Group Design
> Click here to watch the recorded webinar with Steve Thomas <
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential8
• Using App-V 5.0 SP3 we support the following connection groups:
Connection Group – Configurations
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential9
• With SP3 and above we introduced two new options:
Connection Group – Configurations
Setting Description
PackageOptional Add optional packages to your connection groups to
simplify connection group management
UseAnyVersion Configure a connection group to use any version of a
package, which simplifies package upgrades.
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential10
• Complex Connection Groups can be hard to design and manage
Connection Group – Design
Package Package Optional Use Any Version
Microsoft-office-201x-v1  
Outlook-Addin-v1  
SecureMail-Addin-v1  
Powerpoint-Addin-v1  
Hyperion-essbase-v1  
Excel-Addin-v1  
Word-Addin-v1  
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential11
Microsoft App V
> Click here to watch the recorded webinar with Steve Thomas <
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential12
Additional Sequencing Changes
• Hide the PVAD during sequencing
– Less steps, less confusion
– If needed, you can bring it back using command line parameter
• RunVirtual
– No longer restricted to globally published packages
– Place key under HKCU instead of HKLM
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential13
What Changed: App-V 5.1
• Sequencer Improvements
• Scripting Developments
• Conversion Enhancements
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential14
Sequencer Enhancements
• Virtual File System
– Package manifest can be exported and imported
– Can import a directory of files in VFS
– File export/import allows updating VFS files without deleting & re-adding
• Virtual Registry
– Can export or import .reg files
– New find and replace dialog
– Path appears in lower left
• Captured Browser Helper Objects (BHO) can be disabled or enabled
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential15
Changes to COW Exclusions
• What is the COW?
– Copy-On-Write Filter
• The App-V VFSC (Virtual File System Copy-On-Write) driver prevents
specified file types from being written to the VFS directories.
• Trimmed the internal COW exclusion extension list from 58 extensions
down to just COM, DLL, EXE, and OCX.
• VFSC driver change was made to prevent any file from being written
that was opened with the FILE_EXECUTE access bit set.
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential16
Microsoft App V
> Click here to watch the recorded webinar with Steve Thomas <
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential17
Support for Multiple Scripts in AppV 5.1
• ScriptRunner.exe is a new exe as part of AppV Client
• Multiple scripts can be passed as arguments to ScriptRunner.exe
• Each script will be executed in order given
• Wait, Timeout & RollbackOnError parameters can be set for each script
individually [using –AppVScriptRunnerParameters as the delimiter]
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential18
Support For Multiple Scripts in App-V 5.1
• If a script specifies the wait/timeout/rollback options, it will be applied
explicitly for that script.
• If a script does not specify the wait/timeout/rollback option, default
values will be used: no wait, no timeout, no rollbackonerror.
• The wait/timeout/rollbackonerror values specified as a separate node
applies to the parent “ScriptRunner.exe” process, and not to individual
scripts.
Old Format:
<MachineScripts>
<AddPackage>
<Path>cmd.exe</Path>
<Arguments>script1.exe Args1
Args2</Arguments>
<Wait Timeout=30 RollbackonError=true>
</AddPackage>
</MachineScripts>
New Format:
<MachineScripts>
<AddPackage>
<Path>ScriptRunner.exe</Path>
<Arguments>
-appvscript script1.exe Args1 Args2 –appvscriptrunnerparameters –wait –timeout=60 –rollbackonerror
-appvscript script2.vbs
-appvscript script3.bat Args 1 Args2 –appvscriptrunnerparameters –timeout=30 –rollbackonerror -wait
-appvscript script4.ps1
</Arguments>
<Wait Timeout=90 RollbackonError=true>
</AddPackage>
</MachineScripts>
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential19
ScriptRunner.exe can be used for:
• Both MachineScripts and
UserScripts
• Both DeploymentConfig.xml and
UserConfig.xml
• For all 8 Package Events:
– <AddPackage>
– <RemovePackage>
– <PublishPackage>
– <UnpublishPackage>
– <StartProcess>
– <ExitProcess>
– <StartVirtualEnvironment>
– <TerminateVirtualEnvironment>
Old Format:
<UserScripts>
<StartProcess RunInVirtualEnvironment="true">
<Path>Script1.exe</Path>
<Arguments>Args1 Args2</Arguments>
<ApplicationId>[{AppVPackageRoot}]ContosoApp.EXE</ApplicationI
d>
</StartProcess>
</UserScripts>
New Format:
<UserScripts>
<StartProcess RunInVirtualEnvironment="true">
<Path>ScriptRunner.exe</Path>
<Arguments>
-appvscript script1.exe Args1 Args2 –appvscriptrunnerparameters –wait –timeout=30 –rollbackonerror
-appvscript script2.vbs
-appvscript script3.bat –appvscriptrunnerparameters –wait –timeout=30 –rollbackonerror
</Arguments>
<ApplicationId>[{AppVPackageRoot}]ContosoApp.EXE</ApplicationId>
</StartProcess>
</UserScripts>
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential20
Conversion from 4.6
• Issues with previous Package Converters
• Hardcoded path resolution
• SFT_MNT Redirection now remedies these
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential21
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential22
Why AdminStudio Suite: Automation, Speed, Simplicity
Graphical UI – No
scripting required
One process with
multiple outputs
Batch Automation
Suitability testing
Centrally manage
connection groups
Distribute packages
to App V servers
© 2016 Flexera Software LLC. All rights reserved. | Company Confidential23
Next Steps
1. Explore the website http://www.flexerasoftware.com
2. Download the AdminStudio Suite Free Trial
3. Contact a Flexera Representative or
business partner to learn more
North America: 800-809-5659
Europe, Middle East & Africa: +44 (0) 870 873 6300
Asia-Pacific: +61 3 9895 2000
> Click here to watch the recorded webinar with Steve Thomas <

More Related Content

What's hot

Presentation technical deep dive of horizon 6 and mirage 5
Presentation   technical deep dive of horizon 6 and mirage 5Presentation   technical deep dive of horizon 6 and mirage 5
Presentation technical deep dive of horizon 6 and mirage 5
solarisyougood
 
V mware+thin app+-+gcvmug
V mware+thin app+-+gcvmugV mware+thin app+-+gcvmug
V mware+thin app+-+gcvmug
Alan Maloney
 
VCP 21- VMWare VPC 6
VCP 21- VMWare VPC 6VCP 21- VMWare VPC 6
VCP 21- VMWare VPC 6
Tuan Nguyen
 
Horizon view technical deep dive
Horizon view   technical deep diveHorizon view   technical deep dive
Horizon view technical deep dive
Murugesan Arumugam
 
Overview of System Center 2012 R2 Configuration Manager
Overview of System Center 2012 R2 Configuration ManagerOverview of System Center 2012 R2 Configuration Manager
Overview of System Center 2012 R2 Configuration Manager
Digicomp Academy AG
 
V Mware Desktop Virtualization
V Mware   Desktop VirtualizationV Mware   Desktop Virtualization
V Mware Desktop Virtualization
hypknight
 
Datasheet webspheremq midvisionextensionforibmraf
Datasheet webspheremq midvisionextensionforibmrafDatasheet webspheremq midvisionextensionforibmraf
Datasheet webspheremq midvisionextensionforibmraf
MidVision
 
Scvmm Technical Overview.Son Vu
Scvmm Technical Overview.Son VuScvmm Technical Overview.Son Vu
Scvmm Technical Overview.Son Vu
vncson
 
Microsoft SoftGrid Application Virtualization
Microsoft SoftGrid Application VirtualizationMicrosoft SoftGrid Application Virtualization
Microsoft SoftGrid Application Virtualization
Jeff Fisher
 
SCOM: The Unsung Hero of the System Center Suite April 24, 2013
SCOM: The Unsung Hero of the System Center Suite April 24, 2013SCOM: The Unsung Hero of the System Center Suite April 24, 2013
SCOM: The Unsung Hero of the System Center Suite April 24, 2013
C/D/H Technology Consultants
 
01 server manager spiffy
01 server manager spiffy01 server manager spiffy
01 server manager spiffy
Spiffy
 
15 Vmware interview questions & answers 2018
15 Vmware interview questions & answers 201815 Vmware interview questions & answers 2018
15 Vmware interview questions & answers 2018
Mercury Solutions
 
uberSVN introduction by WANdisco
uberSVN introduction by WANdiscouberSVN introduction by WANdisco
uberSVN introduction by WANdisco
WANdisco Plc
 
Mobile to mainframe - The Challenges and Best Practices of Enterprise DevOps
Mobile to mainframe - The Challenges and Best Practices of Enterprise DevOps Mobile to mainframe - The Challenges and Best Practices of Enterprise DevOps
Mobile to mainframe - The Challenges and Best Practices of Enterprise DevOps
IBM UrbanCode Products
 
OpsMgr 2012 end-to-end monitoring
OpsMgr 2012 end-to-end monitoringOpsMgr 2012 end-to-end monitoring
OpsMgr 2012 end-to-end monitoring
wwwally
 
The Bluemix Quadruple Threat
The Bluemix Quadruple ThreatThe Bluemix Quadruple Threat
The Bluemix Quadruple Threat
Ram Vennam
 
Vmware training presentation
Vmware training presentationVmware training presentation
Vmware training presentation
Amit Kapadia
 
Web Hosting for Web Designers and Developers
Web Hosting for Web Designers and DevelopersWeb Hosting for Web Designers and Developers
Web Hosting for Web Designers and Developers
goodfriday
 
Virtualization get ready for tomorrow, today! - cr
Virtualization get ready for tomorrow, today! - crVirtualization get ready for tomorrow, today! - cr
Virtualization get ready for tomorrow, today! - cr
Chris Avis
 
Ds v sphere-enterprise-ent-plus
Ds v sphere-enterprise-ent-plusDs v sphere-enterprise-ent-plus
Ds v sphere-enterprise-ent-plus
Chau Tuan Nguyen
 

What's hot (20)

Presentation technical deep dive of horizon 6 and mirage 5
Presentation   technical deep dive of horizon 6 and mirage 5Presentation   technical deep dive of horizon 6 and mirage 5
Presentation technical deep dive of horizon 6 and mirage 5
 
V mware+thin app+-+gcvmug
V mware+thin app+-+gcvmugV mware+thin app+-+gcvmug
V mware+thin app+-+gcvmug
 
VCP 21- VMWare VPC 6
VCP 21- VMWare VPC 6VCP 21- VMWare VPC 6
VCP 21- VMWare VPC 6
 
Horizon view technical deep dive
Horizon view   technical deep diveHorizon view   technical deep dive
Horizon view technical deep dive
 
Overview of System Center 2012 R2 Configuration Manager
Overview of System Center 2012 R2 Configuration ManagerOverview of System Center 2012 R2 Configuration Manager
Overview of System Center 2012 R2 Configuration Manager
 
V Mware Desktop Virtualization
V Mware   Desktop VirtualizationV Mware   Desktop Virtualization
V Mware Desktop Virtualization
 
Datasheet webspheremq midvisionextensionforibmraf
Datasheet webspheremq midvisionextensionforibmrafDatasheet webspheremq midvisionextensionforibmraf
Datasheet webspheremq midvisionextensionforibmraf
 
Scvmm Technical Overview.Son Vu
Scvmm Technical Overview.Son VuScvmm Technical Overview.Son Vu
Scvmm Technical Overview.Son Vu
 
Microsoft SoftGrid Application Virtualization
Microsoft SoftGrid Application VirtualizationMicrosoft SoftGrid Application Virtualization
Microsoft SoftGrid Application Virtualization
 
SCOM: The Unsung Hero of the System Center Suite April 24, 2013
SCOM: The Unsung Hero of the System Center Suite April 24, 2013SCOM: The Unsung Hero of the System Center Suite April 24, 2013
SCOM: The Unsung Hero of the System Center Suite April 24, 2013
 
01 server manager spiffy
01 server manager spiffy01 server manager spiffy
01 server manager spiffy
 
15 Vmware interview questions & answers 2018
15 Vmware interview questions & answers 201815 Vmware interview questions & answers 2018
15 Vmware interview questions & answers 2018
 
uberSVN introduction by WANdisco
uberSVN introduction by WANdiscouberSVN introduction by WANdisco
uberSVN introduction by WANdisco
 
Mobile to mainframe - The Challenges and Best Practices of Enterprise DevOps
Mobile to mainframe - The Challenges and Best Practices of Enterprise DevOps Mobile to mainframe - The Challenges and Best Practices of Enterprise DevOps
Mobile to mainframe - The Challenges and Best Practices of Enterprise DevOps
 
OpsMgr 2012 end-to-end monitoring
OpsMgr 2012 end-to-end monitoringOpsMgr 2012 end-to-end monitoring
OpsMgr 2012 end-to-end monitoring
 
The Bluemix Quadruple Threat
The Bluemix Quadruple ThreatThe Bluemix Quadruple Threat
The Bluemix Quadruple Threat
 
Vmware training presentation
Vmware training presentationVmware training presentation
Vmware training presentation
 
Web Hosting for Web Designers and Developers
Web Hosting for Web Designers and DevelopersWeb Hosting for Web Designers and Developers
Web Hosting for Web Designers and Developers
 
Virtualization get ready for tomorrow, today! - cr
Virtualization get ready for tomorrow, today! - crVirtualization get ready for tomorrow, today! - cr
Virtualization get ready for tomorrow, today! - cr
 
Ds v sphere-enterprise-ent-plus
Ds v sphere-enterprise-ent-plusDs v sphere-enterprise-ent-plus
Ds v sphere-enterprise-ent-plus
 

Viewers also liked

Pdf catalogue
Pdf cataloguePdf catalogue
Pdf catalogue
KogaGengakki
 
WCSR VDI @ Varrow Madness 2012
WCSR VDI @ Varrow Madness 2012 WCSR VDI @ Varrow Madness 2012
WCSR VDI @ Varrow Madness 2012
Sean Scott
 
􀎹􀏑􀏄􀎢􀎣􀎞 􀏥􀎠􀎷􀏯􀎳􀏯􀎬􀍷 􀤩􀓹􀎛􀠷􀰦􀔽􀍢􀎔􀍨􀎊􀍷 10 􀍷􀎵􀏂􀎿􀏓
􀎹􀏑􀏄􀎢􀎣􀎞 􀏥􀎠􀎷􀏯􀎳􀏯􀎬􀍷 􀤩􀓹􀎛􀠷􀰦􀔽􀍢􀎔􀍨􀎊􀍷 10 􀍷􀎵􀏂􀎿􀏓􀎹􀏑􀏄􀎢􀎣􀎞 􀏥􀎠􀎷􀏯􀎳􀏯􀎬􀍷 􀤩􀓹􀎛􀠷􀰦􀔽􀍢􀎔􀍨􀎊􀍷 10 􀍷􀎵􀏂􀎿􀏓
􀎹􀏑􀏄􀎢􀎣􀎞 􀏥􀎠􀎷􀏯􀎳􀏯􀎬􀍷 􀤩􀓹􀎛􀠷􀰦􀔽􀍢􀎔􀍨􀎊􀍷 10 􀍷􀎵􀏂􀎿􀏓
Flexera
 
Sharepoint 2010 e Infopath 2010
Sharepoint 2010 e Infopath 2010Sharepoint 2010 e Infopath 2010
Sharepoint 2010 e Infopath 2010
Eva Ordoñez Perez
 
Webinar2 of 3 in a series: How Pricing and Licensing Helps Monetize SaaS Offe...
Webinar2 of 3 in a series: How Pricing and Licensing Helps Monetize SaaS Offe...Webinar2 of 3 in a series: How Pricing and Licensing Helps Monetize SaaS Offe...
Webinar2 of 3 in a series: How Pricing and Licensing Helps Monetize SaaS Offe...
Flexera
 
Turning Customer Usage Data into Valuable Business Intelligence
Turning Customer Usage Data into Valuable Business IntelligenceTurning Customer Usage Data into Valuable Business Intelligence
Turning Customer Usage Data into Valuable Business Intelligence
Flexera
 
Shopper Marketing Starts At Home
Shopper Marketing Starts At HomeShopper Marketing Starts At Home
Shopper Marketing Starts At Home
Power Direct
 
A planners approach to digital. Or a digital approach to planning.
A planners approach to digital. Or a digital approach to planning.A planners approach to digital. Or a digital approach to planning.
A planners approach to digital. Or a digital approach to planning.
Jessica Brookes
 
Rent vs. Own Slide Show
Rent vs. Own Slide ShowRent vs. Own Slide Show
Rent vs. Own Slide Show
Andy Carswell
 
Metricas
MetricasMetricas
Half Moon Group Sales Presentation Adjusted
Half Moon Group Sales Presentation  AdjustedHalf Moon Group Sales Presentation  Adjusted
Half Moon Group Sales Presentation Adjusted
dnsthompson
 
Buku proyeksi siswa
Buku proyeksi siswaBuku proyeksi siswa
Buku proyeksi siswa
zaenal mukodir
 
Moving up the Software License Optimization Maturity Curve to Drive Business ...
Moving up the Software License Optimization Maturity Curve to Drive Business ...Moving up the Software License Optimization Maturity Curve to Drive Business ...
Moving up the Software License Optimization Maturity Curve to Drive Business ...
Flexera
 
Métricas orientadas a objeto
Métricas orientadas a objeto   Métricas orientadas a objeto
Métricas orientadas a objeto
David Leon Sicilia
 
글로벌비즈니스서비스
글로벌비즈니스서비스글로벌비즈니스서비스
글로벌비즈니스서비스
Rohjoonshik
 
Sweden report
Sweden reportSweden report
Sweden report
DANIEL MARTÍNEZ
 
Administracion Sharepoint 2010
Administracion Sharepoint 2010Administracion Sharepoint 2010
Administracion Sharepoint 2010
Eva Ordoñez Perez
 
prezentare Corina Sandu
prezentare Corina Sanduprezentare Corina Sandu
prezentare Corina Sanducorinasandu
 
Reverse mortgages and older americans presentation (nov. 14, 2013)
Reverse mortgages and older americans presentation (nov. 14, 2013)Reverse mortgages and older americans presentation (nov. 14, 2013)
Reverse mortgages and older americans presentation (nov. 14, 2013)
Andy Carswell
 

Viewers also liked (20)

Pdf catalogue
Pdf cataloguePdf catalogue
Pdf catalogue
 
WCSR VDI @ Varrow Madness 2012
WCSR VDI @ Varrow Madness 2012 WCSR VDI @ Varrow Madness 2012
WCSR VDI @ Varrow Madness 2012
 
􀎹􀏑􀏄􀎢􀎣􀎞 􀏥􀎠􀎷􀏯􀎳􀏯􀎬􀍷 􀤩􀓹􀎛􀠷􀰦􀔽􀍢􀎔􀍨􀎊􀍷 10 􀍷􀎵􀏂􀎿􀏓
􀎹􀏑􀏄􀎢􀎣􀎞 􀏥􀎠􀎷􀏯􀎳􀏯􀎬􀍷 􀤩􀓹􀎛􀠷􀰦􀔽􀍢􀎔􀍨􀎊􀍷 10 􀍷􀎵􀏂􀎿􀏓􀎹􀏑􀏄􀎢􀎣􀎞 􀏥􀎠􀎷􀏯􀎳􀏯􀎬􀍷 􀤩􀓹􀎛􀠷􀰦􀔽􀍢􀎔􀍨􀎊􀍷 10 􀍷􀎵􀏂􀎿􀏓
􀎹􀏑􀏄􀎢􀎣􀎞 􀏥􀎠􀎷􀏯􀎳􀏯􀎬􀍷 􀤩􀓹􀎛􀠷􀰦􀔽􀍢􀎔􀍨􀎊􀍷 10 􀍷􀎵􀏂􀎿􀏓
 
Wordpress prez 20121
Wordpress prez 20121Wordpress prez 20121
Wordpress prez 20121
 
Sharepoint 2010 e Infopath 2010
Sharepoint 2010 e Infopath 2010Sharepoint 2010 e Infopath 2010
Sharepoint 2010 e Infopath 2010
 
Webinar2 of 3 in a series: How Pricing and Licensing Helps Monetize SaaS Offe...
Webinar2 of 3 in a series: How Pricing and Licensing Helps Monetize SaaS Offe...Webinar2 of 3 in a series: How Pricing and Licensing Helps Monetize SaaS Offe...
Webinar2 of 3 in a series: How Pricing and Licensing Helps Monetize SaaS Offe...
 
Turning Customer Usage Data into Valuable Business Intelligence
Turning Customer Usage Data into Valuable Business IntelligenceTurning Customer Usage Data into Valuable Business Intelligence
Turning Customer Usage Data into Valuable Business Intelligence
 
Shopper Marketing Starts At Home
Shopper Marketing Starts At HomeShopper Marketing Starts At Home
Shopper Marketing Starts At Home
 
A planners approach to digital. Or a digital approach to planning.
A planners approach to digital. Or a digital approach to planning.A planners approach to digital. Or a digital approach to planning.
A planners approach to digital. Or a digital approach to planning.
 
Rent vs. Own Slide Show
Rent vs. Own Slide ShowRent vs. Own Slide Show
Rent vs. Own Slide Show
 
Metricas
MetricasMetricas
Metricas
 
Half Moon Group Sales Presentation Adjusted
Half Moon Group Sales Presentation  AdjustedHalf Moon Group Sales Presentation  Adjusted
Half Moon Group Sales Presentation Adjusted
 
Buku proyeksi siswa
Buku proyeksi siswaBuku proyeksi siswa
Buku proyeksi siswa
 
Moving up the Software License Optimization Maturity Curve to Drive Business ...
Moving up the Software License Optimization Maturity Curve to Drive Business ...Moving up the Software License Optimization Maturity Curve to Drive Business ...
Moving up the Software License Optimization Maturity Curve to Drive Business ...
 
Métricas orientadas a objeto
Métricas orientadas a objeto   Métricas orientadas a objeto
Métricas orientadas a objeto
 
글로벌비즈니스서비스
글로벌비즈니스서비스글로벌비즈니스서비스
글로벌비즈니스서비스
 
Sweden report
Sweden reportSweden report
Sweden report
 
Administracion Sharepoint 2010
Administracion Sharepoint 2010Administracion Sharepoint 2010
Administracion Sharepoint 2010
 
prezentare Corina Sandu
prezentare Corina Sanduprezentare Corina Sandu
prezentare Corina Sandu
 
Reverse mortgages and older americans presentation (nov. 14, 2013)
Reverse mortgages and older americans presentation (nov. 14, 2013)Reverse mortgages and older americans presentation (nov. 14, 2013)
Reverse mortgages and older americans presentation (nov. 14, 2013)
 

Similar to Microsoft App-V 5.1 and Flexera AdminStudio Webinar

Datasheet scriptspluginforrd
Datasheet scriptspluginforrdDatasheet scriptspluginforrd
Datasheet scriptspluginforrd
MidVision
 
DevOps and Build Automation
DevOps and Build AutomationDevOps and Build Automation
DevOps and Build Automation
Heiswayi Nrird
 
DevOpsDays Singapore - Continuous Auditing with Compliance as Code
DevOpsDays Singapore - Continuous Auditing with Compliance as CodeDevOpsDays Singapore - Continuous Auditing with Compliance as Code
DevOpsDays Singapore - Continuous Auditing with Compliance as Code
Matt Ray
 
Compliance as Code Everywhere
Compliance as Code EverywhereCompliance as Code Everywhere
Compliance as Code Everywhere
Matt Ray
 
Datasheet apachepluginforrd
Datasheet apachepluginforrdDatasheet apachepluginforrd
Datasheet apachepluginforrd
MidVision
 
DevOps explained
DevOps explainedDevOps explained
DevOps explained
Jérôme Kehrli
 
Pivotal Cloud Foundry 2.4: A First Look
Pivotal Cloud Foundry 2.4: A First LookPivotal Cloud Foundry 2.4: A First Look
Pivotal Cloud Foundry 2.4: A First Look
VMware Tanzu
 
Windows 7 Manageability Solutions
Windows 7 Manageability SolutionsWindows 7 Manageability Solutions
Windows 7 Manageability Solutions
Microsoft TechNet
 
What's New App Portal 2016 & Introducing App Broker for ServiceNow
What's New App Portal 2016 & Introducing App Broker for ServiceNowWhat's New App Portal 2016 & Introducing App Broker for ServiceNow
What's New App Portal 2016 & Introducing App Broker for ServiceNow
Flexera
 
Principles and Practices in Continuous Deployment at Etsy
Principles and Practices in Continuous Deployment at EtsyPrinciples and Practices in Continuous Deployment at Etsy
Principles and Practices in Continuous Deployment at Etsy
Mike Brittain
 
DevSec Delight with Compliance as Code - Matt Ray - AgileNZ 2017
DevSec Delight with Compliance as Code - Matt Ray - AgileNZ 2017DevSec Delight with Compliance as Code - Matt Ray - AgileNZ 2017
DevSec Delight with Compliance as Code - Matt Ray - AgileNZ 2017
AgileNZ Conference
 
Pivotal Cloud Foundry 2.5: A First Look
Pivotal Cloud Foundry 2.5: A First LookPivotal Cloud Foundry 2.5: A First Look
Pivotal Cloud Foundry 2.5: A First Look
VMware Tanzu
 
Branching Out: How To Automate Your Development Process
Branching Out: How To Automate Your Development ProcessBranching Out: How To Automate Your Development Process
Branching Out: How To Automate Your Development Process
Perforce
 
ABC's of Service Virtualization
ABC's of Service VirtualizationABC's of Service Virtualization
ABC's of Service Virtualization
Parasoft
 
Mastering DevOps-Driven Data Integration with FME
Mastering DevOps-Driven Data Integration with FMEMastering DevOps-Driven Data Integration with FME
Mastering DevOps-Driven Data Integration with FME
Safe Software
 
Prizm Installation Guide
Prizm Installation GuidePrizm Installation Guide
Prizm Installation Guide
vjvarenya
 
TECHNICAL PRESENTATION: Upgrading to Backup Exec 2015
TECHNICAL PRESENTATION: Upgrading to Backup Exec 2015TECHNICAL PRESENTATION: Upgrading to Backup Exec 2015
TECHNICAL PRESENTATION: Upgrading to Backup Exec 2015
Symantec
 
RemoteLaunch Overview Presentation (2019)
RemoteLaunch Overview Presentation (2019)RemoteLaunch Overview Presentation (2019)
RemoteLaunch Overview Presentation (2019)
Inflectra
 
Webinar: What's New in FlexNet Manager Suite 2016
Webinar: What's New in FlexNet Manager Suite 2016Webinar: What's New in FlexNet Manager Suite 2016
Webinar: What's New in FlexNet Manager Suite 2016
Flexera
 
Chef Workflow Demo
Chef Workflow DemoChef Workflow Demo
Chef Workflow Demo
Chef
 

Similar to Microsoft App-V 5.1 and Flexera AdminStudio Webinar (20)

Datasheet scriptspluginforrd
Datasheet scriptspluginforrdDatasheet scriptspluginforrd
Datasheet scriptspluginforrd
 
DevOps and Build Automation
DevOps and Build AutomationDevOps and Build Automation
DevOps and Build Automation
 
DevOpsDays Singapore - Continuous Auditing with Compliance as Code
DevOpsDays Singapore - Continuous Auditing with Compliance as CodeDevOpsDays Singapore - Continuous Auditing with Compliance as Code
DevOpsDays Singapore - Continuous Auditing with Compliance as Code
 
Compliance as Code Everywhere
Compliance as Code EverywhereCompliance as Code Everywhere
Compliance as Code Everywhere
 
Datasheet apachepluginforrd
Datasheet apachepluginforrdDatasheet apachepluginforrd
Datasheet apachepluginforrd
 
DevOps explained
DevOps explainedDevOps explained
DevOps explained
 
Pivotal Cloud Foundry 2.4: A First Look
Pivotal Cloud Foundry 2.4: A First LookPivotal Cloud Foundry 2.4: A First Look
Pivotal Cloud Foundry 2.4: A First Look
 
Windows 7 Manageability Solutions
Windows 7 Manageability SolutionsWindows 7 Manageability Solutions
Windows 7 Manageability Solutions
 
What's New App Portal 2016 & Introducing App Broker for ServiceNow
What's New App Portal 2016 & Introducing App Broker for ServiceNowWhat's New App Portal 2016 & Introducing App Broker for ServiceNow
What's New App Portal 2016 & Introducing App Broker for ServiceNow
 
Principles and Practices in Continuous Deployment at Etsy
Principles and Practices in Continuous Deployment at EtsyPrinciples and Practices in Continuous Deployment at Etsy
Principles and Practices in Continuous Deployment at Etsy
 
DevSec Delight with Compliance as Code - Matt Ray - AgileNZ 2017
DevSec Delight with Compliance as Code - Matt Ray - AgileNZ 2017DevSec Delight with Compliance as Code - Matt Ray - AgileNZ 2017
DevSec Delight with Compliance as Code - Matt Ray - AgileNZ 2017
 
Pivotal Cloud Foundry 2.5: A First Look
Pivotal Cloud Foundry 2.5: A First LookPivotal Cloud Foundry 2.5: A First Look
Pivotal Cloud Foundry 2.5: A First Look
 
Branching Out: How To Automate Your Development Process
Branching Out: How To Automate Your Development ProcessBranching Out: How To Automate Your Development Process
Branching Out: How To Automate Your Development Process
 
ABC's of Service Virtualization
ABC's of Service VirtualizationABC's of Service Virtualization
ABC's of Service Virtualization
 
Mastering DevOps-Driven Data Integration with FME
Mastering DevOps-Driven Data Integration with FMEMastering DevOps-Driven Data Integration with FME
Mastering DevOps-Driven Data Integration with FME
 
Prizm Installation Guide
Prizm Installation GuidePrizm Installation Guide
Prizm Installation Guide
 
TECHNICAL PRESENTATION: Upgrading to Backup Exec 2015
TECHNICAL PRESENTATION: Upgrading to Backup Exec 2015TECHNICAL PRESENTATION: Upgrading to Backup Exec 2015
TECHNICAL PRESENTATION: Upgrading to Backup Exec 2015
 
RemoteLaunch Overview Presentation (2019)
RemoteLaunch Overview Presentation (2019)RemoteLaunch Overview Presentation (2019)
RemoteLaunch Overview Presentation (2019)
 
Webinar: What's New in FlexNet Manager Suite 2016
Webinar: What's New in FlexNet Manager Suite 2016Webinar: What's New in FlexNet Manager Suite 2016
Webinar: What's New in FlexNet Manager Suite 2016
 
Chef Workflow Demo
Chef Workflow DemoChef Workflow Demo
Chef Workflow Demo
 

More from Flexera

Get a Complete View of Your Business Services and IT Estate in ServiceNow wit...
Get a Complete View of Your Business Services and IT Estate in ServiceNow wit...Get a Complete View of Your Business Services and IT Estate in ServiceNow wit...
Get a Complete View of Your Business Services and IT Estate in ServiceNow wit...
Flexera
 
Make Smarter Cloud Decisions at Every Step of Your Journey
Make Smarter Cloud Decisions at Every Step of Your JourneyMake Smarter Cloud Decisions at Every Step of Your Journey
Make Smarter Cloud Decisions at Every Step of Your Journey
Flexera
 
10 Tips to Optimize, Automate, and Govern your Hybrid IT Environment
10 Tips to Optimize, Automate, and Govern your Hybrid IT Environment10 Tips to Optimize, Automate, and Govern your Hybrid IT Environment
10 Tips to Optimize, Automate, and Govern your Hybrid IT Environment
Flexera
 
Using Automated Policies for SaaS Governance and Compliance
Using Automated Policies for SaaS Governance and ComplianceUsing Automated Policies for SaaS Governance and Compliance
Using Automated Policies for SaaS Governance and Compliance
Flexera
 
The Practical Approach for End-to-End SaaS Management
The Practical Approach for End-to-End SaaS ManagementThe Practical Approach for End-to-End SaaS Management
The Practical Approach for End-to-End SaaS Management
Flexera
 
7 Things You Need to Know for Your Cloud-First Strategy
7 Things You Need to Know for Your Cloud-First Strategy7 Things You Need to Know for Your Cloud-First Strategy
7 Things You Need to Know for Your Cloud-First Strategy
Flexera
 
The Role of In-House & External Counsel in Managing Open Source Software
The Role of In-House & External Counsel in Managing Open Source SoftwareThe Role of In-House & External Counsel in Managing Open Source Software
The Role of In-House & External Counsel in Managing Open Source Software
Flexera
 
Addressing Open Source Risks During M&A: A Legal View
Addressing Open Source Risks During M&A: A Legal ViewAddressing Open Source Risks During M&A: A Legal View
Addressing Open Source Risks During M&A: A Legal View
Flexera
 
Having Trouble Managing All Your Cloud Services? We Know!
Having Trouble Managing All Your Cloud Services? We Know!Having Trouble Managing All Your Cloud Services? We Know!
Having Trouble Managing All Your Cloud Services? We Know!
Flexera
 
Webinar: Maximizing the ROI of IT by Simplifying Technology Complexity
Webinar: Maximizing the ROI of IT by Simplifying Technology ComplexityWebinar: Maximizing the ROI of IT by Simplifying Technology Complexity
Webinar: Maximizing the ROI of IT by Simplifying Technology Complexity
Flexera
 
Webinar: What's New In FlexNet Manager Suite 2018 R1
Webinar: What's New In FlexNet Manager Suite 2018 R1Webinar: What's New In FlexNet Manager Suite 2018 R1
Webinar: What's New In FlexNet Manager Suite 2018 R1
Flexera
 
Open Source Security - It can be done easily.
Open Source Security - It can be done easily.Open Source Security - It can be done easily.
Open Source Security - It can be done easily.
Flexera
 
Software Distribution, Customer Experience and the IoT: Get Ready for Fast, S...
Software Distribution, Customer Experience and the IoT: Get Ready for Fast, S...Software Distribution, Customer Experience and the IoT: Get Ready for Fast, S...
Software Distribution, Customer Experience and the IoT: Get Ready for Fast, S...
Flexera
 
Windows 10 webinar: What’s new for IT pros Windows 10 v 1709
Windows 10 webinar: What’s new for IT pros Windows 10 v 1709Windows 10 webinar: What’s new for IT pros Windows 10 v 1709
Windows 10 webinar: What’s new for IT pros Windows 10 v 1709
Flexera
 
Don’t Let Hackers Breach Your Data: Shutting Your Risk Window on Apache Struts2
Don’t Let Hackers Breach Your Data:  Shutting Your Risk Window on Apache Struts2Don’t Let Hackers Breach Your Data:  Shutting Your Risk Window on Apache Struts2
Don’t Let Hackers Breach Your Data: Shutting Your Risk Window on Apache Struts2
Flexera
 
BDNA joins Flexera
BDNA joins FlexeraBDNA joins Flexera
BDNA joins Flexera
Flexera
 
Flexera Event - The Game Has Changed - Are You Ready?
Flexera Event - The Game Has Changed - Are You Ready?Flexera Event - The Game Has Changed - Are You Ready?
Flexera Event - The Game Has Changed - Are You Ready?
Flexera
 
Webinar: Take Proactive Control of Your SAP Licensing, Indirect Usage and Ven...
Webinar: Take Proactive Control of Your SAP Licensing, Indirect Usage and Ven...Webinar: Take Proactive Control of Your SAP Licensing, Indirect Usage and Ven...
Webinar: Take Proactive Control of Your SAP Licensing, Indirect Usage and Ven...
Flexera
 
Keeping a Lid on Costs for Cloud Infrastructure and SaaS Applications
Keeping a Lid on Costs for Cloud Infrastructure and SaaS ApplicationsKeeping a Lid on Costs for Cloud Infrastructure and SaaS Applications
Keeping a Lid on Costs for Cloud Infrastructure and SaaS Applications
Flexera
 
Do You Manage Software? Understanding Your Role in Cybersecurity Defense
Do You Manage Software? Understanding Your Role in Cybersecurity DefenseDo You Manage Software? Understanding Your Role in Cybersecurity Defense
Do You Manage Software? Understanding Your Role in Cybersecurity Defense
Flexera
 

More from Flexera (20)

Get a Complete View of Your Business Services and IT Estate in ServiceNow wit...
Get a Complete View of Your Business Services and IT Estate in ServiceNow wit...Get a Complete View of Your Business Services and IT Estate in ServiceNow wit...
Get a Complete View of Your Business Services and IT Estate in ServiceNow wit...
 
Make Smarter Cloud Decisions at Every Step of Your Journey
Make Smarter Cloud Decisions at Every Step of Your JourneyMake Smarter Cloud Decisions at Every Step of Your Journey
Make Smarter Cloud Decisions at Every Step of Your Journey
 
10 Tips to Optimize, Automate, and Govern your Hybrid IT Environment
10 Tips to Optimize, Automate, and Govern your Hybrid IT Environment10 Tips to Optimize, Automate, and Govern your Hybrid IT Environment
10 Tips to Optimize, Automate, and Govern your Hybrid IT Environment
 
Using Automated Policies for SaaS Governance and Compliance
Using Automated Policies for SaaS Governance and ComplianceUsing Automated Policies for SaaS Governance and Compliance
Using Automated Policies for SaaS Governance and Compliance
 
The Practical Approach for End-to-End SaaS Management
The Practical Approach for End-to-End SaaS ManagementThe Practical Approach for End-to-End SaaS Management
The Practical Approach for End-to-End SaaS Management
 
7 Things You Need to Know for Your Cloud-First Strategy
7 Things You Need to Know for Your Cloud-First Strategy7 Things You Need to Know for Your Cloud-First Strategy
7 Things You Need to Know for Your Cloud-First Strategy
 
The Role of In-House & External Counsel in Managing Open Source Software
The Role of In-House & External Counsel in Managing Open Source SoftwareThe Role of In-House & External Counsel in Managing Open Source Software
The Role of In-House & External Counsel in Managing Open Source Software
 
Addressing Open Source Risks During M&A: A Legal View
Addressing Open Source Risks During M&A: A Legal ViewAddressing Open Source Risks During M&A: A Legal View
Addressing Open Source Risks During M&A: A Legal View
 
Having Trouble Managing All Your Cloud Services? We Know!
Having Trouble Managing All Your Cloud Services? We Know!Having Trouble Managing All Your Cloud Services? We Know!
Having Trouble Managing All Your Cloud Services? We Know!
 
Webinar: Maximizing the ROI of IT by Simplifying Technology Complexity
Webinar: Maximizing the ROI of IT by Simplifying Technology ComplexityWebinar: Maximizing the ROI of IT by Simplifying Technology Complexity
Webinar: Maximizing the ROI of IT by Simplifying Technology Complexity
 
Webinar: What's New In FlexNet Manager Suite 2018 R1
Webinar: What's New In FlexNet Manager Suite 2018 R1Webinar: What's New In FlexNet Manager Suite 2018 R1
Webinar: What's New In FlexNet Manager Suite 2018 R1
 
Open Source Security - It can be done easily.
Open Source Security - It can be done easily.Open Source Security - It can be done easily.
Open Source Security - It can be done easily.
 
Software Distribution, Customer Experience and the IoT: Get Ready for Fast, S...
Software Distribution, Customer Experience and the IoT: Get Ready for Fast, S...Software Distribution, Customer Experience and the IoT: Get Ready for Fast, S...
Software Distribution, Customer Experience and the IoT: Get Ready for Fast, S...
 
Windows 10 webinar: What’s new for IT pros Windows 10 v 1709
Windows 10 webinar: What’s new for IT pros Windows 10 v 1709Windows 10 webinar: What’s new for IT pros Windows 10 v 1709
Windows 10 webinar: What’s new for IT pros Windows 10 v 1709
 
Don’t Let Hackers Breach Your Data: Shutting Your Risk Window on Apache Struts2
Don’t Let Hackers Breach Your Data:  Shutting Your Risk Window on Apache Struts2Don’t Let Hackers Breach Your Data:  Shutting Your Risk Window on Apache Struts2
Don’t Let Hackers Breach Your Data: Shutting Your Risk Window on Apache Struts2
 
BDNA joins Flexera
BDNA joins FlexeraBDNA joins Flexera
BDNA joins Flexera
 
Flexera Event - The Game Has Changed - Are You Ready?
Flexera Event - The Game Has Changed - Are You Ready?Flexera Event - The Game Has Changed - Are You Ready?
Flexera Event - The Game Has Changed - Are You Ready?
 
Webinar: Take Proactive Control of Your SAP Licensing, Indirect Usage and Ven...
Webinar: Take Proactive Control of Your SAP Licensing, Indirect Usage and Ven...Webinar: Take Proactive Control of Your SAP Licensing, Indirect Usage and Ven...
Webinar: Take Proactive Control of Your SAP Licensing, Indirect Usage and Ven...
 
Keeping a Lid on Costs for Cloud Infrastructure and SaaS Applications
Keeping a Lid on Costs for Cloud Infrastructure and SaaS ApplicationsKeeping a Lid on Costs for Cloud Infrastructure and SaaS Applications
Keeping a Lid on Costs for Cloud Infrastructure and SaaS Applications
 
Do You Manage Software? Understanding Your Role in Cybersecurity Defense
Do You Manage Software? Understanding Your Role in Cybersecurity DefenseDo You Manage Software? Understanding Your Role in Cybersecurity Defense
Do You Manage Software? Understanding Your Role in Cybersecurity Defense
 

Recently uploaded

TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc
 
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdfHow to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
Chart Kalyan
 
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
Edge AI and Vision Alliance
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Tosin Akinosho
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
kumardaparthi1024
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
Daiki Mogmet Ito
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
Zilliz
 
OpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - AuthorizationOpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - Authorization
David Brossard
 
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying AheadDigital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Wask
 
UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6
DianaGray10
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
Zilliz
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
Pixlogix Infotech
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
DanBrown980551
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
Quotidiano Piemontese
 
Project Management Semester Long Project - Acuity
Project Management Semester Long Project - AcuityProject Management Semester Long Project - Acuity
Project Management Semester Long Project - Acuity
jpupo2018
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
shyamraj55
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
tolgahangng
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
innovationoecd
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Safe Software
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
Octavian Nadolu
 

Recently uploaded (20)

TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
 
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdfHow to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
 
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
 
OpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - AuthorizationOpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - Authorization
 
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying AheadDigital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying Ahead
 
UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
 
Project Management Semester Long Project - Acuity
Project Management Semester Long Project - AcuityProject Management Semester Long Project - Acuity
Project Management Semester Long Project - Acuity
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
 

Microsoft App-V 5.1 and Flexera AdminStudio Webinar

  • 1. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential1 Best Practices for Application Virtualization
  • 2. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential2 Todays Presenters Timothy Davis Senior Product Marketing Manager, Flexera Software Tdavis@Flexerasoftware.com @TimothyToday steveth@microsoft.com Steve Thomas Senior Consultant Microsoft @Madvirtualizer
  • 3. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential3 What is App-V: Microsoft Application Virtualization
  • 4. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential4 App-V 5.0 SP3 & 5.1 Changes > Click here to watch the recorded webinar with Steve Thomas <
  • 5. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential5 Sequencing: What Changed App-V 5.0 SP3 • Connection Group Changes – Flexible Connection Groups – Merged Roots • Sequencing Improvements – To PVAD or not PVAD? (Primary virtual app directory) – RunVirtual (User Mode) > Click here to watch the recorded webinar with Steve Thomas <
  • 6. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential6 • What is a connection group? • Connection Groups are generally required for file based merged packages Connection Group > Click here to watch the recorded webinar with Steve Thomas <
  • 7. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential7 • There are a few key areas in the Design / Sequencing Process: Connection Group Design > Click here to watch the recorded webinar with Steve Thomas <
  • 8. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential8 • Using App-V 5.0 SP3 we support the following connection groups: Connection Group – Configurations
  • 9. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential9 • With SP3 and above we introduced two new options: Connection Group – Configurations Setting Description PackageOptional Add optional packages to your connection groups to simplify connection group management UseAnyVersion Configure a connection group to use any version of a package, which simplifies package upgrades.
  • 10. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential10 • Complex Connection Groups can be hard to design and manage Connection Group – Design Package Package Optional Use Any Version Microsoft-office-201x-v1   Outlook-Addin-v1   SecureMail-Addin-v1   Powerpoint-Addin-v1   Hyperion-essbase-v1   Excel-Addin-v1   Word-Addin-v1  
  • 11. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential11 Microsoft App V > Click here to watch the recorded webinar with Steve Thomas <
  • 12. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential12 Additional Sequencing Changes • Hide the PVAD during sequencing – Less steps, less confusion – If needed, you can bring it back using command line parameter • RunVirtual – No longer restricted to globally published packages – Place key under HKCU instead of HKLM
  • 13. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential13 What Changed: App-V 5.1 • Sequencer Improvements • Scripting Developments • Conversion Enhancements
  • 14. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential14 Sequencer Enhancements • Virtual File System – Package manifest can be exported and imported – Can import a directory of files in VFS – File export/import allows updating VFS files without deleting & re-adding • Virtual Registry – Can export or import .reg files – New find and replace dialog – Path appears in lower left • Captured Browser Helper Objects (BHO) can be disabled or enabled
  • 15. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential15 Changes to COW Exclusions • What is the COW? – Copy-On-Write Filter • The App-V VFSC (Virtual File System Copy-On-Write) driver prevents specified file types from being written to the VFS directories. • Trimmed the internal COW exclusion extension list from 58 extensions down to just COM, DLL, EXE, and OCX. • VFSC driver change was made to prevent any file from being written that was opened with the FILE_EXECUTE access bit set.
  • 16. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential16 Microsoft App V > Click here to watch the recorded webinar with Steve Thomas <
  • 17. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential17 Support for Multiple Scripts in AppV 5.1 • ScriptRunner.exe is a new exe as part of AppV Client • Multiple scripts can be passed as arguments to ScriptRunner.exe • Each script will be executed in order given • Wait, Timeout & RollbackOnError parameters can be set for each script individually [using –AppVScriptRunnerParameters as the delimiter]
  • 18. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential18 Support For Multiple Scripts in App-V 5.1 • If a script specifies the wait/timeout/rollback options, it will be applied explicitly for that script. • If a script does not specify the wait/timeout/rollback option, default values will be used: no wait, no timeout, no rollbackonerror. • The wait/timeout/rollbackonerror values specified as a separate node applies to the parent “ScriptRunner.exe” process, and not to individual scripts. Old Format: <MachineScripts> <AddPackage> <Path>cmd.exe</Path> <Arguments>script1.exe Args1 Args2</Arguments> <Wait Timeout=30 RollbackonError=true> </AddPackage> </MachineScripts> New Format: <MachineScripts> <AddPackage> <Path>ScriptRunner.exe</Path> <Arguments> -appvscript script1.exe Args1 Args2 –appvscriptrunnerparameters –wait –timeout=60 –rollbackonerror -appvscript script2.vbs -appvscript script3.bat Args 1 Args2 –appvscriptrunnerparameters –timeout=30 –rollbackonerror -wait -appvscript script4.ps1 </Arguments> <Wait Timeout=90 RollbackonError=true> </AddPackage> </MachineScripts>
  • 19. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential19 ScriptRunner.exe can be used for: • Both MachineScripts and UserScripts • Both DeploymentConfig.xml and UserConfig.xml • For all 8 Package Events: – <AddPackage> – <RemovePackage> – <PublishPackage> – <UnpublishPackage> – <StartProcess> – <ExitProcess> – <StartVirtualEnvironment> – <TerminateVirtualEnvironment> Old Format: <UserScripts> <StartProcess RunInVirtualEnvironment="true"> <Path>Script1.exe</Path> <Arguments>Args1 Args2</Arguments> <ApplicationId>[{AppVPackageRoot}]ContosoApp.EXE</ApplicationI d> </StartProcess> </UserScripts> New Format: <UserScripts> <StartProcess RunInVirtualEnvironment="true"> <Path>ScriptRunner.exe</Path> <Arguments> -appvscript script1.exe Args1 Args2 –appvscriptrunnerparameters –wait –timeout=30 –rollbackonerror -appvscript script2.vbs -appvscript script3.bat –appvscriptrunnerparameters –wait –timeout=30 –rollbackonerror </Arguments> <ApplicationId>[{AppVPackageRoot}]ContosoApp.EXE</ApplicationId> </StartProcess> </UserScripts>
  • 20. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential20 Conversion from 4.6 • Issues with previous Package Converters • Hardcoded path resolution • SFT_MNT Redirection now remedies these
  • 21. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential21
  • 22. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential22 Why AdminStudio Suite: Automation, Speed, Simplicity Graphical UI – No scripting required One process with multiple outputs Batch Automation Suitability testing Centrally manage connection groups Distribute packages to App V servers
  • 23. © 2016 Flexera Software LLC. All rights reserved. | Company Confidential23 Next Steps 1. Explore the website http://www.flexerasoftware.com 2. Download the AdminStudio Suite Free Trial 3. Contact a Flexera Representative or business partner to learn more North America: 800-809-5659 Europe, Middle East & Africa: +44 (0) 870 873 6300 Asia-Pacific: +61 3 9895 2000 > Click here to watch the recorded webinar with Steve Thomas <

Editor's Notes

  1. Current recommended practices -
  2. We optimize usage, maximize value and reduce risk of all your applications
  3. http://social.technet.microsoft.com/wiki/contents/articles/2717.app-v-microsoft-application-virtualization.aspx There is a solution provided by the MDOP This link is external to TechNet Wiki. It will open in a new window. package called Microsoft App-V. With it we can make the application run in a virtualized environment, without having to install or configure it on the local machine. To understand how an App-V application works, consider the example of a common software
  4. We optimize usage, maximize value and reduce risk of all your applications