Microsoft TechDays 2009 December 22, 2008
Posted by Björn Axéll in Press, SCE, SCOM.comments closed
Anders Bengtsson (also Ops Mgr MVP) and I will deliver two sessions at TechDays 2009 in Västerås/Sweden. Our sessions are
- Operations Manager 2007 och System Center Essentials Tips and Tricks
- Managing Unix/Linux with Microsoft System Center Operations Manager 2007 R2 Cross Platform
I out first session we will be showing a lot of tips and tricks from the real world, answers to common questions, and ways to work with the products to get more out of them. In our second session we will be showing how you can monitor non Microsoft boxes with Operations Manager 2007 R2.
You can find more info about the event here.
Microsoft - What were you thinking when you decided the different Vista versions? December 15, 2008
Posted by Björn Axéll in Windows.1 comment so far
Since I in the past weeks have had a couple of hardware failures on both my laptop and media center machines I wanted to make sure I had good backups of the machines. I’ve used the Vista Complete Backup on my laptop in the past, that time only to test a disk replacement. I really liked the feature so I thought this would be a good “extra” backup of my media center computer (except for file backup).
The problem - I couldn’t find it under “Backup and Restore Center”. I did a web search and found out it wasn’t included in the Vista version I use (Vista Home Premium). How come a feature like this is removed from any version of Windows. If you do need to remove it, remove it from the enterprise versions, not for the home users that really need a feature like this. So I the took the decision to upgrade to Vista Ultimate, this is where I run into the next problem:-( I use Swedish version of Vista and the Vista Ultimate DVD I had was in English. I couldn’t see any problem with this since Vista is language natural but I was wrong. I couldn’t do an upgrade between languages so I had to download a Swedish version of Vista Ultimate and do the upgrade. The other part I don’t understand is why I need to do a full upgrade when I upgrade between Vista versions - I thought it would be easi to this since Vista is componentized.
Conclusion - I really hope Microsoft reduce the Windows 7 versions to 2, one for the home users and one for the enterprise and to include all type of applications that can help home users to secure there data.
System Center Updates Publisher 4.5 is now released December 15, 2008
Posted by Björn Axéll in SCE, SCUP.comments closed
System Center Updates Publisher (SCUP) is a stand-alone tool that you can use to create your own update catalogs that can be imported in SCE and SCCM. A new version of System Center Updates Publisher is now available to download from Microsoft. New features in this release is:
- Synchronization command line tool (SCUPSync.exe) which enables you to import and publish updates without using the Updates Publisher console interface.
- Ability to publish updates as “metadata only”, which publishes the software update definition without the associated update file.
- Ability to configure proxy server credentials in the Updates Publisher console
Barcelona – Here we come October 7, 2008
Posted by Björn Axéll in Press.comments closed
This year, the hole company will be at Microsoft Tech·Ed EMEA 2008 IT Professionals in Barcelona. If you want to meet us, just give me a call +46730447203 (Björn Axéll)
The new “bare metal” hypervisor from Microsoft is here – Download Microsoft Hyper-V Server 2008 today October 1, 2008
Posted by Björn Axéll in Hyper-V.comments closed
Do you want a free hypervisor – Now you can download Microsoft Hyper-V Server 2008.
How do you uninstall exe based applications in SCE? September 10, 2008
Posted by Björn Axéll in How-To, SCE.add a comment
As we all know, you can install both exe and msi based application with SCE. Unfortunately, there is two limitation when you need to add an exe file (if you ask me). If you add an exe based application:
- You can’t uninstall it in an easy way
- If you (or the user that use the computer) manually uninstall an exe based application that has been deployed with SCE from the local client, it will never be reinstalled by SCE. If you compare this with an msi based application, it would be reinstalled at the next detection interval
So - how can we get around these problems? In this post I will explain how you can use a “Setup wrapper” to fix both of these problems. Note! The tools I use in this example are free to use and can be downloaded from web.
Before you start to deploy a solution based on this post – be sure to test it. All applications are unique and needs to be tested. The post is just an example of how you can do it.
Preparations steps
- Download and install Windows Installer Wrapper Wizard 0.2.0 (WIWW) from VinsVision
- Download and install Orca (a msi database edit from Microsoft. Note that this download is not from Microsoft since they only provide a bundled with Microsoft® Windows Server 2003 SP1 Platform SDK)
- Create a directory on your desktop called “My first wrapper”
- Download or copy your exe based application, save it to “My first wrapper” folder . In my example I use XnView ( a free software to view and convert graphic files) Note! The setup engine need to be able to support silent/unattended install/uninstall
“Investigating” the application (find shortcuts and registry keys)
- Manually install the application on a client
- Open Regedit and brows to [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall]. Here you will find your application and the UninstallString value.
- Copy the text to a notepad document, we will need this information in a later step
- Open Program menu and have a look if the application have added a uninstall shortcut. In my example you will find one and it is located under “C:\Documents and Settings\All Users\Start Menu\Programs\XnView”. Copy the shortcut path to the notepad document, we will need this information in a later step.
- In the “My first wrapper” folder, create a bat file and add the following:
REM The below line will hide the uninstallation information for the original setup shown i Add/Remove Programs. Since we will build our own setup, we don’t want to have multiple registration in Add/Remove Programs)
reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\XnView_is1 /v SystemComponent /t REG_Dword /d 1
REM The below line will remove the shortcut the applicatiuon added. Since we don’t want our users to use this we have to remove it
del %allusersprofile%\Start Menu\Programs\XnView\XnView uninstall.lnk
Build the MSI wrapper
- Start the WIWW from the Program Manu
- On the Welcome screen, click Next to start
- On the Windows Installer file screen, click Brows and brows to your “My first wrapper” folder. Add a name to your file. In my example I use xnView.msi. Click Next to continue
- On the Install command screen, click Add
Select to Use SourceDir
Click Brows and select your exe setup file. In my example I use XnView-win.exe
As parameters add /silent
- Click Ok to save
- Click Add a new command to run
Select to Use SourceDir
Click Brows and select your bat file you created earlier. In my example I use fix.bat
- Click Ok to save
- Click Next to continue
- On the Uninstall command screen, click Add
Select a Windows Installer Installer Folder property = Select [ProgramFilesFolder]
Brows or type the program to run = Brows to Program Files\XnView\unins000.exe
(this information was found during the investigation steps above)
Specify an program parameter = /Silent (this information was found during the investigation steps above)
- Click Ok to save
- Click Next to continue
- On the Product Appearance and Requirements screen, click Next to accept the default values
- On the Package Meta Data and Language change to:
Product name = XnView
Product version = 1.94.2 - Click Next to continue
- On the The wizard is ready to create your wrapper, click Next followed by Finish to create and save your package
- Right click the new xnView.msi and select “Edit with Orca” (Note that you must have installed Orca to have this option)
- On the left side, select the Property table. Change the below (Note! This is an important step since this information will be the information you will get in the inventory reports in SCE)
ARPHELPLINK = http://www.xnview.com
Manufacturer = XnView
ARPCOMMENTS = This will install XnView
ARPURLINFOABOUT = http://www.xnview.com
ProductVersion = 1.94.2
Add Package in SCE and test
You are now ready to add this package to SCE. In the Add Software wizard you need to make sure to select “Include all files and sub folders in this location” since you need to add all 3 files to get this package to run. Be sure to only deploy it to a small test group before you deploy it to all your computers. After you successfully deployed the application, test:
- To manually uninstall the application from the client.
- Uninstall the application
- Run c:\Windows\System32\wuauclt.exe /detectnow
- The Yellow icon will now appear and the application will be reinstalled
- Uninstall the application from all computers
- In the SCE console, select to uninstall it to a group of computers that has it installed
This post have shown you an easy way to handle uninstallation of exe based applications in SCE and still use the standard installation engine provided by the software vendor (instead of doing a msi repackaging of the hole application). On top of that, the application will reinstalled if someone manually uninstall it on the client computer which will help you to have all computers complaint with the right software.
Hope this can be valuable for you. If you have any comments, feel free to post them
Would you like to be able to schedule reports in SCE? August 13, 2008
Posted by Björn Axéll in How-To, SCE.1 comment so far
Have you ever wanted to get a report sent by mail or saved to a file share on a schedule basis? In System Center Operations Manager, you have this function directly in the System Center Operations Manager Console but for System Center Essentials, this feature was not included (because the limitation in SQL Express that is included in Essentials 2007).
So - how can we fix this? Since Essentials use SQL 2005 Reporting engine, we can configure this from the Report Manager (Note that this will not work if you use SQL 2005 Express or SQL 2005 Workgroup since they don’t have this feature). The example below we will configure so you get the Update Deployment report in your inbox every morning. Note that this is just an example, you can schedule every report available in Essentials.
- First we need to verify that the Reporting server is configured to send report via mail.
- Start the Reporting Services Configuration from the start menu
- At the Instance selection dialog box, click to connect to your local server
- Select the E-mail node and enter a e-mail address (this is the from address) and the name of your mail server, click apply and exit
- Open Internet Explorer and enter http://localhost/reports as address
- Reporting Manager will now start and you can see all available reports that are installed (number of reports will vary depending on what Management packs you have installed)
- Click Microsoft.SystemCenter.Essentials.Report.Library and select the Microsoft.SystemCenter.Essentials.Report.UpdateDeployment report (the one without the rpdl extension)
- When the report is shown, click on the subscription link and then New subscription
- In the Report Delivery option and Subscription Processing option add:
Delivered by = E-mail (if e-mail is not available to select, you have missed the first 4 steps). Note! If you add a “external” e-mail address you need to make sure the reporting server are permitted to “relay” mail traffic.
Render format = in this example we use Web Archive
Select scheduling = Select the time and how often you want the report
In the Report Parameter Values = Unselect default and select only the type of status you want to see (in my example I only select Not installed, Downloaded and failed). You also need to specify a group of computers you want to run this report again’s (in my example I select All Servers)
- When you done your selections, click ok to save. You will receive the report in your inbox
- Below is an example of a report
Updated Management Packs from Dell - Version 3.1, A01 August 8, 2008
Posted by Björn Axéll in MP, SCE, SCOM.comments closed
Dell just released an updated version of there Management Pack for System Center Operations Manager 2007 and System Center Essentials 2007.
New feature in this release is:
Separate MP’s for:
- Dell Server and Printer
- Dell Clients (Optiplex, Precision and Latitude)
- Dell Storage Array
Update - Kevin Holman has written some important information about the Dell MP that you should read before installing it.
Keep up the good work Dell, I hope other hardware/software vendors do the same
Opsmgr and SCE is now fully supported on Windows Server 2008 August 8, 2008
Posted by Björn Axéll in KB, SCE, SCOM.comments closed
Last week Microsoft released the update 954049 that adds support to run/install System Center Operations Manager 2007 and System Center Essentials 2007 components on a Windows Server 2008 system.
Important update to your SCE/WSUS server July 17, 2008
Posted by Björn Axéll in KB, SCE, WSUS.comments closed
