We specialize in Application Packaging, Application Virtualization, Windows 7 Migration,Patch Management and Build Engineering.

Best Practices for Complex Patch Management

March 6, 2012 | By

This webcast discusses some important topics like accurate assessment of end points in your environment, testing deployments prior to sending them out, patch management, etc. Event Date: Thursday, March 8, 2012 at 11:00am PT / 2:00pm ET Presenter: David Strom, Speaker, Writer and Network Computing Expert To Sign up Click on the link below - Best Practices for [...]

Continue Reading

Updating MSI Installer’s Progress Bar via Custom Actions

February 10, 2012 | By | Add a Comment

 If you have a custom action that takes an enormous amount of time to perform its operation, you can send messages back to the Windows Installer’s Progress bar to inform your end users. These messages can be sent in the form of Action Text messages that get displayed above the Progress Bar and or Tick Increments to the Progress [...]

Continue Reading

Webinar : Formulating a Smart Application compatibility Strategy for Windows 7 by Flexera Software

March 3, 2011 | By | Add a Comment

Flexera Software, the makers of AdminStudio is hosting a Webinar on Strategizing for Windows 7 Migration. This webinar will highlight Adminstudio 10.x’s new feature that allows you to perform Application Compatibility testing for Windows 7 along with a discussion on best practices. More information can be found at http://mktg.flexerasoftware.com/mk/get/AS-APPCOMPAT-TESTFIX-WBNR.

Continue Reading

WebCast – Eliminating Virtual Desktop Deployment Issues for Remote Users

February 7, 2011 | By | Add a Comment

Do your users complain about waiting for their mouse to respond, applications to launch, and graphics to stop pixelizing? Even the fastest, most optimized networks can cause latency issues when delivering virtual desktops to remote users. Don’t let your RDP-based solution for virtual desktops fail due to just a lack of performance caused by network [...]

Continue Reading

Setting MSI Properties via vbscript Custom Actions

January 4, 2011 | By | Add a Comment

How to Set/Get a property via a VBScript Custom Action? You can either use the Session object or simply use the ‘Property’ keyword to set a property via  a vbscript custom action: e.g Session.Property(“ARPNOCOMPONENT”)=”1″ Property(“REINSTALL”)=”ALL” To get the value of a property, you can use the following e.g. dim myvar myvar = Property(“INSTALLDIR”) MsgBox(myvar) How to Set ‘INSTALLDIR’ [...]

Continue Reading

What’s new in MSI 4.0?

January 4, 2011 | By | Add a Comment

MSI 4.0, the latest version of windows installer service was released with Windows Vista recently. Most of the enhancements in msi 4.0 are in relation to features found in windows vista or Longhorn, e.g. the integration with Restart Manager, ability to communicate with UAC to ensure proper installation on Vista and Longhorn. In addition to [...]

Continue Reading

Choosing between ClickOnce and Windows Installer Service!

January 4, 2011 | By | Add a Comment

ClickOnce is a new deployment technology created by Microsoft to ease the deployment of applications over the web. This new deployment technology was first unleashed in 2004 and has quite a fan following. ClickOnce was first shipped with .Net Framework 2.0 and has close integration with .Net applications. Windows Installer Service is a system level [...]

Continue Reading

New Properties in Windows Installer 4.0 and later

January 4, 2011 | By | Add a Comment

Microsoft has released Windows Installer Service 4.0 with Windows Vista. This new version of msi engine introduces some new properties which are exclusively available to msi based installations targeted for Windows Vista & later. MSIARPSETTINGSIDENTIFIER – The MSIARPSETTINGSIDENTIFIER property contains a semi-colon delimited list of the registry locations where the application stores a user’s settings [...]

Continue Reading

Is your Repackaged msi FoolProof?

January 4, 2011 | By | Add a Comment

The art of converting a legacy installation into a windows installer package is known to many and accepting the Vendor Repackaging tool’s output, a standard practice. While we create an msi package through the reverse engineering process of Repackaging, we are often content with making sure the application works and passes the User Acceptance test. [...]

Continue Reading

Making Sense of ICE Validation!

January 4, 2011 | By | Add a Comment

ICE a.k.a Internal Consistency Evaluators are a set of rules created by Microsoft to help validate a windows installer package. ICE Rules check the integrity of the package as well as ensure that the Windows Installer best practices were followed when creating an msi package. Before deploying your msi based installation, it is recommended that [...]

Continue Reading