Posts Tagged Application Package
Cont. Deploying Application Packages
Posted by Bloggylife in troubleshooting, windows on June 15, 2009
I’ll share some of the issues we faced along the way, we already deployed WSUS into our network that pushes Microsoft updates according to your GPO settings on the domain level.
I came across another product, Microsoft System Center Essentials (link), which also includes WSUS technology but adds to that updates of third parties software, how cool is that
If you have problems installing the management software from a media, go to Microsoft website and download it from there along with SP1 (link). That solved the first problem I faced.
Upon the configuration, it’ll ask you if you want to automatically create a domain policy, you’ll need administrative privileges and then go ahead search for computers and add manually or in a bulk.
One advice, when choosing the server, take care it has enough hard disk space, for all the software updates and deployment packages it needs to store.
Pushing agents to computers, is through the management console, where you select a computer and provide administrator credentials. You can create package from .exe or .msi files.
You can group computers and approve package installation. For msi packages you can provide installation properties, The executable program that interprets packages and installs products is Msiexec.exe. To see the list of parameters, run this on a command prompt window Msiexec, the below should appear.

On a single domain, you can have only one Microsoft System Center, it’ll give you an error if you try to install another System Center on a network already managed by one.
You can force end computers to communicate with the system center to check for updates or software that needs to be downloaded through running this command on end machines.
wuauclt.exe /detectnow
If indeed there is something to be downloaded, the yellow shield will appear next to the time and date, machines may face problems downloading, check this out:
- Windows update service is running
- All antivirus applications are up to date, because if they are not, they will block such activities. Check if windows defender is installed, that was one of the problems that caused download to fail
After the download is complete and according to your global setting the installation should start, to check the time of installation, check your local windows update settings, which can be access through the control panel or on the domain level settings.
This product offers so much more, details about the machines it managing through their agents, it triggers alerts, and generates reports.
But for now, I was really glad to be able to push third party packages silently to end machines and check the status as successful
References:
Deploying Application Packages
Posted by Bloggylife in windows on June 11, 2009
It’s very tricky to automate and silently push and install an application package across a network, especially if it’s not Microsoft.
Windows Installer package (.msi), is for installations on Microsoft windows. You can extract .exe files aimed for Windows platforms to view the .msi
There is a tool from Microsoft, Orca, to edit .msi, it displays properties and their values, it’s quite a headache to modify the values, and if you aren’t familiar with the whole installation procedure and do not know what you are doing, you can cause serious problems that may leave your system in an unstable state and the application not installed properly.
There is always a document explaining what needs to be modified to suit your needs, of course, if it is Microsoft, it’s straight forward, the field to enter the product key, company name, but what about other products, such documentation isn’t always available.
You can guess out the property values but you don’t want to risk it. I found this nice site, that was very helpful AppDeploy.
It’s all about package deployment and software distribution. Huge knowledge base with lots of helpful information categorized, command lines, discussion, under each application package.
One thing I faced and didn’t quite figure a correct way to do it, is sometimes the application installs an add-in onto another application, browser or outlook for example, the installation will fail if those were not closed. You can either issue a command to kill that application process and then run the new application installer or notify the users to shut everything down because new installations will be pushed to them.

Recent Comments