IT News & Technology update

Provide comprehensive update related to Computer, technology, software, anti virus and another electric device

Office 2007 migrate to Platform Like Windows

Written by IT News on 9:57 AM

Microsoft Office System is committed to install on the platform, which can be equivalent to its Windows operating system. The sixth annual Microsoft Financial Services Developer Conference is a milestone for excluding financial services OBA Component Library.

The library is intended for software developers to create programs to run plants at the top of the Office System 2007. Thus, Microsoft aims to increase depending on the Office System ecosystem by creating solutions-oriented platform. Creating application environment, partners and customers around Office, Microsoft will help combat the threat represented by the web rival products without having to move their own solutions in the cloud.

OBA Financial Services Component Library is aimed at only piece of the market, the needs of financial services firms, including insurance and capital markets companies, as well as banks. "Financial services firms are seeking to use information technology to meet the changing and volatile market conditions, and at the same time make investments that integrate into the way people actually work," said Mike Walker, architecture strategist worldwide financial services group at Microsoft

The library will enable developers to address the various issues involved in decisions to set up the Office platform of compatibility with the existing systems of distribution, but even building a graphical user interface. In Redmond company refers to applications built on the Microsoft Office 2007 system Microsoft OBAs. "In OBA Component Library provides firms in the early to formulate solutions, providing real-world scenarios that demonstrate how new business applications can be built, and the improvement of existing systems using Microsoft Office technologies to overcome the common challenges," added Walker .

The library allows installation OBA components in the new program, which will use Office 2007 as a platform. There are no less than 90 components in the Financial Services Component Library OBA, together with Microsoft focused on the financial sector, the construction of the dynamics of Office 2007.

Outlook on the Desktop 1.3.5

Written by IT News on 2:13 AM

A small application that allows you to put the Microsoft Outlook calendar on your desktop
Have you ever wondered why it's such a pain in the butt to use calendaring programs on your computer? It's simple: they don't mimic their real life counterparts very well. People who use calendars to organize their daily lives have them visible in plain sight nearly all of the time.

Yet, on the computer, you have to go through a myriad of windows and clicks before you can even see your calendar. So to bridge the gap, I've come up with this little program that will place the Microsoft Outlook Calendaring system right on your desktop.

The calendar object gets pinned to your desktop and stays there
all the time in plain sight so you can always see what's upcoming. Of course, the benefits don't stop there ... because it's the actual Microsoft Outlook calendar, you get all it's functionality, such as direct editing, drag and drop of files, etc. You have to see it to believe it.

Outlook on the Desktop allows you to put the Microsoft Outlook calendar on your desktop so that you can see it and use it all the time without actually having to open Outlook.

Here are some key features of "Outlook on the Desktop":

· Places fully functional Microsoft Outlook Calendar on your Desktop.
· The Oulook Calendar is pinned to your desktop so that no windows can get stuck behind it.
· The Calendar's position, size and opacity are all adjustable via a very intuitive GUI.
· A tray Icon is provided to get to the preferences or close the application if desired.

Requirements:
· Microsoft Outlook 2000 or higher (2003 was used for testing)
· Microsoft .NET Framework 1.1

Developer: SMR Computer Services
License: Freeware
Size / OS: 638 KB, Windows, All version
Last Updated: December 6th, 2007, 07:50 GMT
Download location: click here to download

Sharing Excel files safely

Written by IT News on 10:20 PM

Sharing an Excel documents is easy. Probably a lot of people don't realize it, but Microsoft built Office 2003 and Office 2007 with collaboration in mind. Both versions allow you to share an Excel workbook with other users so multiple users can make modifications to a spreadsheet. In this article, will show you how to share an Excel 2007 workbook. More importantly, It will discuss how you can keep a shared workbook secure.

Before you start sharing a workbook, the first thing you have to do is protect the spreadsheet you've created. It is very important to lock the cells so that other users are not able to modify them without your permission.

You can protect a range of cells by selecting them, right clicking on them and selecting the Format Cells command from the resulting shortcut menu. When you do, Windows will display the Custom Lists properties sheet. Go to the Protection tab and either lock or unlock the protected cells. Keep in mind that locking a cell has no effect until you protect the sheet.

To protect a worksheet, click on the Review menu and then click the Protect Sheet icon. When you do, Windows will display the Protect Sheet dialog box.

Verify that the Protect Worksheet and Contents of Locked Cells check box is selected. Then enter a password to use in order to unprotect the sheet. Keep in mind that this password is worksheet specific.

Before you click OK, read through the other protection options on this dialog box. You can control what users will and will not be allowed to do to the spreadsheet just by selecting a check box. By default, users are allowed to select both locked and unlocked cells in a protected spreadsheet, but that's about it. It is up to you to decide whether you want to allow your users to format or create or delete cells, rows or columns. You can also authorize or forbid various other types of edits.

Now that you have implemented some basic protection, it's time to share the workbook. To do so, go to Excel's Review menu and click the Share Workbook icon. Excel will display the Share Workbook dialog box. To share the workbook, select the Allow Changes by More Than One User at a Time check box, found on the Editing tab, as shown in Figure A.

Figure A

To share the workbook, select the Allow Changes by More Than One User at a Time check box.

Before you click the OK key, go to the Advanced tab, shown in Figure B. As you can see in the figure, the Advanced tab asks you if you want to track changes to the file. If security is a concern to you, then I highly recommend tracking changes to the file. By doing so, you create an audit trail that allows you to see exactly what modifications were made by whom.


Figure B
The Advanced tab contains settings related to tracking document changes.

The next section is the Update Changes section. By default, updates occur when the file is saved, but you can configure changes to be updated on a periodic basis.

The fact that multiple users can work on the document simultaneously means that there is a potential for conflicts to occur. Two users could potentially save contradictory changes at the same time. As such, Excel makes you decide what should happen when contradictory changes occur. By default, Excel will ask you which change should be kept, but you have the option of configuring Excel so that the most recently saved change is authoritative. From a security perspective, I recommend going with the default setting because then you can decide for yourself which change to keep and which to discard.

The last section shown in Figure B is the Include in Personal View section. By default, each user is allowed to maintain his own separate printer settings and filtered view settings. This isn't usually a threat to security since a user cannot change another user's print settings or filter settings. Therefore, I recommend going with the default settings in this section.

Click OK, and the worksheet will be shared. Keep in mind, though, that you have only granted document-level sharing. It is still up to you to place the shared worksheet into a network location where it will be accessible to all of the necessary users. I strongly recommend setting some NTFS permissions so that only the intended users are allowed to access the document.

How to grab user attention with blinking text in an Access form

Written by IT News on 6:29 PM

A virus scan that I use blows what sounds like a foghorn when it’s done. I try to be out of the room because it’s so loud and annoying. I prefer a gentler approach. Blinking signs are a good attention-getter, without being harsh.

There are two ways to blink a control or text: on and off or by switching colors. Of course, blinking text won’t replace a sound cue, but done well, it’s easy on the eyes and nerves.To blink on and off, use a Timer event in the following form:

Private Sub Form_Timer()
Me!control.Visible = Not Me!control.Visible
End Sub

Each time the form executes its timer event, this code toggles the control’s Visible property. You can use this simple technique to blink just about any control, but the control can’t have focus at the time.
Switching between two colors is just as easy:

Private Sub Form_Timer()
With Me!control
.ForeColor = IIf(.ForeColor) = color1, color2, color1)
End With
End Sub

The form’s timer event alternates between color1 and color2. Use integer values or constants for colors. For instance, use 0 or vbBlack for black, and 255 or vbRed for red. This probably works best with a label or command button, but you could use it with any control that has a Fore Color property.

Blinking text doesn’t necessary mean the user has to do anything, but it can. How the user reacts to the text is really up to you. In both of these simple events, the blinking is continuous; it won’t stop when the user takes some action.
If the control or text fails to blink, check the form’s Timer Interval property. A setting of 500 creates a reasonable blink. A setting of 50 is so fast that it creates a neon effect. This works only with forms, as reports don’t have a Timer event.

Private Sub Form_Timer()
Me!control.Visible = Not Me.control.visible
End Sub

Adding pdf file into power point

Written by IT News on 4:30 AM

Converting a PPT to a PDF is like turning meat, veggies, spices and water into stew. Pretty simple.

But adding pdf file into power point is not easy as other files such JPG, GIF and other graphic file format. Some users in my office don't know how to do this.


It's not likely that anybody can do a very good job of it, but it's worth checking the current crop of PDF tools at places like
Planet PDF and PDFZone

But ....
You can import PDF content into PowerPoint in several ways, depending on what software you have and the result you're after.

The simples way is by using Insert object, while the user only familier with Insert picture from file.


Here is the step:

  1. From the Insert menu, klik Object,
  2. From the Insert object dialog, choose Create from file
  3. then browse your pdf file and click OK
Remember, this is an embeded object, when double clicked the object it will automatically open your pdf viewer.

What do you think? if you have the simples way please let me know, so I can share it with people in my office.

Protect Your Private Word 2007 Documents

Written by IT News on 11:24 PM

Worried about sensitive data in your Microsoft Word document? you can both encrypt and password protect the document to keep it secure. This feature is very useful if you have to store your documents in a shared location, such as a network folder or home computer.

To encrypt your document, click on the Microsoft Office Button in the upper left hand corner, select Prepare from the left-hand menu and then choose Encrypt Document.

In the Encrypt Document dialog window type in your password for this document.

You will then need to enter in your password again for verification and click OK. You will not receive any type of confirmation message, this window will simply disappear.

By default Word 2007 will save your document with 128-bit advanced encryption. Now when anyone goes to open the document it will automatically ask for the password.

That's all there is to it.

How Easy Rotating Pictures In Word 2007

Written by IT News on 11:19 PM

Another feature that i love from Office 2007 is it ability and easy to rotate any objects such picture. When you are including graphics in a Word document many times you want to place the image in a particular way or at a certain angle. Word 2007 has just the tool for the job.

Open your Word document and click on the picture or graphic you want to move. You will see the edit outline around your graphic. Now left click the top green knob and hold the object and start to rotate it.

4

Below you can see the graphic start to move.

5

In the second picture here I added an object and am rotating it as you will notice the first graphic is at an angle.

7

Here is the result of a couple of simple objects in a Word 2007 document that I rotated around a bit so you have an idea.

8

You can do this with any picture, graphic, and even text!

Setup To-Do Bar in Outlook 2007

Written by IT News on 9:41 PM

One of my favorite new features in Outlook 2007 is the To-Do bar, you can have quick access to your calendar as well as your task list. Unfortunately, the default setting of showing all of your tasks regardless of date can be overwhelming for anybody that has a lot of tasks, and just isn't all that helpful.

One of the first things I did when I started using Outlook 2007 was to change the filter to only show the tasks for the current day, or if you want, you can also show tasks that are overdue as well.

To change this setting, just right-click on the "Arranged By" column and then choose Custom from the menu.

image

Note: You could just click the Filter button and then change the Time drop-down on the Tasks menu to "due" and the second drop-down to "today". The only problem with this is that it won't show overdue tasks, so we'll do it a different way.

In this step, we'll click on the Filter button, then click the Advanced tab, then click the Field drop-down button. Choose Date/Time fields and then Due Date from the menu.

image

Now change Condition to "on or before" and type in today into the Value box.

image

Now we'll see Today's tasks as well as the overdue ones.

image


Introducing Zimbra Collaboration Suite

Written by IT News on 11:01 PM

he collaboration space is getting crowded these days, with various products offering Exchange-like functionality and a few enticing extras. Among the available solutions is Zimbra, which provides a collaboration server that runs on Linux. Find out what Justin James discovered when he installed Zimbra and put it through its paces.


This article is also available as a PDF download. For a detailed comparison of Exchange vs. Zimbra costs, check out this worksheet.

It seems like a lot of new players are entering the "collaboration server" space lately. In a nutshell, these servers try to contain much, if not all, of the functionality of Microsoft Exchange Server, which is the baseline product in this market. Some of them introduce new features and functionality as well.

Along with the already established Scalix (TechRepublic's review of Scalix can be found here), Zimbra is entering the space with a collaboration server that runs on Linux. Like Scalix, Zimbra comes in a range of editions, from the open source Community Edition through to the Network Professional Edition at the high end. To get the Exchange/MAPI functionality, your only Zimbra choice is the Network Professional Edition. The only difference between this edition and the next lower version is the Exchange/MAPI capability.

Zimbra brings all of the usual collaboration server features to the table: SMTP MTA, a Web client, POP3 and IMAP servers, calendaring, and address books. It also brings into the mix a document sharing system (similar to a wiki).

System requirements, installation, and documentation

The system requirements to install Zimbra are not too hefty: 1 GB of RAM, 5 GB of drive space, and one of the supported Linux distributions (RedHat Enterprise Linux, Fedora, SuSE Enterprise Linux, openSUSE, or Ubuntu) or Mac OS X 10.4.7. Oddly enough, BSD is not supported, even though Mac OS X, which is based upon BSD, is supported. Hopefully this will change, as BSD is much more prevalent in the server room than Mac OS X. Also of note is that clustering is not supported under SuSE Linux. For the purpose of this article, I used openSUSE.

Installation should have been pretty simple, but it was not. The documentation is dominated by RedHat Enterprise Linux, with a fair amount of information about installing Zimbra on Mac OS X as well. To be fair, RedHat is a Zimbra partner. Speaking with Zimbra, it took a poll of its users to determine what OSes and distros to support, and what it supports is what its users asked them to support.

From what I saw of the RedHat instructions, a default RedHat installation will definitely not work, including the amount of space available in the root directory. This could be a sticking point for someone looking to add Zimbra to an existing server. SuSE Linux was barely mentioned in the documentation. The documentation did provide a list of dependencies, which were not far off from what was installed with openSUSE by default. One bizarre gotcha was that Zimbra requires fetchmail to be installed and Postfix to be disabled. However, Postfix is a prerequisite for fetchmail. It did work, but it was rather odd.

Following the installation directions on openSUSE was an abject disaster. The system did not work, plain and simple. The installer complained that I was using a system other than the one it was built for, despite using the openSUZE 10 link on Zimbra's Web site. I wiped the openSUSE installation twice and retried, and it still would not install. Before I tried a third time, I went to the Zimbra site hoping to find some other source of help, since the directions obviously did not apply to openSUSE. In the Zimbra forum, I found a post with full, complete, and accurate installation directions, which worked like a charm.

Another real pain point was that the Zimbra log was created but completely empty. I was ready to roll up my sleeves and start troubleshooting, but the lack of logging stopped me dead in my tracks. In fact, one of the corrections to the installation that the forum post contained was to get the logging to work correctly. Even after these difficulties, the installer did not even ask for an admin password or the location of the license file, two items that are needed to install the system. These pieces of information had to be provided through a menu system, and it is up to you to read the manual or wade through the menus to figure out where to provide this information.

One other disappointment was a post in the same thread by a Zimbra employee stating the openSUSE was not supported. This was in direct contradiction to the information on Zimbra's Web site. I found it to be quite disturbing to see this difference in supported OSes. I was also surprised that while these excellent directions were on the Zimbra forum for some time, nothing similar had been put into the Zimbra installation guide. In contrast with Exchange or Scalix, Zimbra definitely scored quite poorly in the installation department.

Another point that stuck with me is that Zimbra uses its own Tomcat, MySQL, and JDK installations. I have never liked systems that did this. One of the outstanding advantages of the GNU/Linux platform is that its modularized structure allows systems administrators to swap components with equivalents as needed. Using its own Tomcat, MySQL, and JDK installations not only removes this flexibility, but it also takes those components out of the system administrator's patch cycle. Additionally, an organization unfamiliar with these components will be in trouble if it ever needs to do any deep diving on problems. Zimbra does allow three authentication options: Internal (using Zimbra's own system), LDAP, and Active Directory, which restores a small portion of modularity to the system.

Overall, the Zimbra documentation was not of the caliber I have come to expect from enterprise class software. All too often, the directions assumed a level of Linux knowledge that not every system administrator has. The directions were definitely not step-by-step or the "Type this and click that" variety; they were more along the lines of "Go do this and provide this command-line argument." The instructions and documentation were so lackluster, it was up to me to figure out that the Web client could be reached by pointing the browser at the IP address or hostname of the server, and that no port number or directory was needed. I could not find anywhere in the manuals a section that contained this basic information. The manuals did, however, have the URL to the Administration Console. All too often, the "documentation" simply described what items were in part of the system but not how or why you would use them.

Administration and backend features

Administration of Zimbra was easy enough. The Web client did most of the common functions. One obvious hole was that while periodic backups were configured out of the box and ad hoc backups could be run through the Administration Console (Figure A), a command-line program was needed to edit the schedule of the periodic backups. On the flip side, management of storage space and data store volumes (Figure B) was quite easy and well done.

Figure A

Figure B

Additionally, Zimbra supports the restoration of even a single mailbox, without the need to take the server or storage group offline as with Exchange. That is a real benefit that many e-mail administrators will appreciate. The storage system supports functionality such as storing an attachment only once if it was sent to multiple users in the same e-mail; this can significantly reduce storage costs. It also supports many more storage volumes per server than Exchange does, allowing for much more granular control over storage usage.

There was nothing particularly wrong with the Administration Console, but it was not particularly amazing either. It was definitely functional. This is a good thing in an administration system, though; better to have a pleasant experience with no surprises than one filled with adventure. This may be a result of Zimbra's relatively simple configuration compared to Exchange. Everything worked as expected, and there really were no surprises at all, good or bad.

What was most noticeable about the Administration Console is just how few items were available to configure. Experienced Exchange administrators know that the management of it is quite in depth. Zimbra's administration was rather sparse. One quirk of the system was that some pages needed to scroll vertically but presented no vertical scrollbar. This made it hard to notice additional options or configuration settings in some areas.

One item that was quite disappointing was the lack of facility to provide a new SSL certificate. Zimbra created a self-signed certificate. But nowhere in the documentation or the Administration Console did I find a way to use a third-party SSL certificate. This means that if you want to use a third-party signed SSL certificate, you need to hack up the custom Tomcat installation, as far as I could see. Again, this brings up the issue of Zimbra having its own Tomcat installation instead of allowing the system administrators to build upon their own existing systems or preferred configurations.

Zimbra uses the standard ClamAV to handle the antivirus duties and equally standard SpamAssassin for anti-spam chores. Sadly, the Administration System declaws both of these excellent systems. As you can see in Figure C, the highly flexible and configurable ClamAV and SpamAssassin have been reduced to a mere six configuration values. While this may be nice for someone who has no intention of ever really performing in-depth configuration of these items, it is highly unsuitable for an enterprise. It may of course be possible to make changes that are more precise through the configuration files directly. In addition, it is important to note that Zimbra at least comes with antivirus and anti-spam utilities; for Exchange, third-party software or hardware is required, which usually costs a fair amount of money.

Figure C

Connecting to Zimbra

Zimbra really pushes its Web client (Figure D). The system has e-mail (Figure E), calendaring (Figure F), an address book, and a Documents system (Figure G). As you can see in Figure D, the Documents system is marked as "beta." Some of the features that Outlook and Outlook Web Access users have come to expect are missing here: tasks, notes, and Public Folders. (Public Folders have been removed from Exchange 2007, though.) The Documents system might be able to function like Public Folders, but right now it is essentially a basic wiki.

Figure D

Figure E

Figure F

Figure G

As you can also see, the Zimbra Web client does support themes, although I found that the only theme that rated above bland was the Steel theme you see in many of these screenshots. (The default theme, Sand, appears in the Administration Console screenshots.) About half of the installed themes are downright ugly, and most of them are rather lacking in usability, thanks to vague icons.

The Zimbra Web client does have some functionality that Outlook Web Access (OWA) lacks and that would require Outlook to use. As a result, Zimbra positions itself as being less expense than Exchange, because it pushes the idea that unlike Exchange, a separate Outlook license is not needed. This may be a fair comparison. Zimbra's search is much more robust than the search in OWA or Outlook, for example. Zimbra also allows sharing of address books, calendars, and so on, whereas Outlook is needed for much of this functionality on the Exchange platform. The Web client is also capable of rendering more than 200 file types in HTML, a pretty impressive feat that can be rather nice.

The basic functionality seemed to work fine. One item of note is that the error messages can be strange. While Zimbra is working on a client that supports working offline (the client is currently in public alpha, so I didn't test it), trying to send an e-mail while disconnected from the network threw off a rather useless error message (Figure H). This was a rather low moment in my mind; Zimbra recognizes the "offline problem" enough to work on a client that can handle it but does not provide error messages in its existing software that handles it well. I can't imagine the frustration that a user with little technical skills would experience seeing an error message like this.

Figure H

The Web client is capable of not just the basics of sending e-mail, but can also be extended through "Zimlets." This is supposed to be one of the shining stars of Zimbra. However, the Zimlet Gallery is extremely lightweight and contains nothing to make up for the lack of features in the Web client. The documentation for the Zimlets is lacking as well (much like the rest of Zimbra's documentation), which may explain the absence of any quality Zimlets.

Compared to the well-documented API hooks into Exchange and the equally well-documented REST APIs that Scalix exposes, Zimbra offers few options in terms of extensibility. That being said, Zimbra demoed some extremely cool Zimlets to me. With some elbow grease, a company can put together a collection of Zimlets that integrate the Web client directly to its unique workflow in a way that can be a real productivity enhancement. I believe that a company that invests the time and effort into developing its own Zimlets will end up with a solution that can potentially be better than Exchange + Outlook for its needs and show real ROI. But again, it will be work to do it, and it requires an IT department that views e-mail as an opportunity to increase productivity, not merely a necessary evil.

Overall, the Zimbra Web client more than meets the needs of all but the few Outlook power users out there. Zimbra's roadmap for the client is also quite promising. I believe that the Zimbra Web client could definitely replace Outlook for users who are rarely disconnected from the network, and Zimbra is working to address those users as well.

Connecting to Zimbra from a POP3 and IMAP client worked as expected. As a nice touch, it does support SSL for POP3 and IMAP. Unfortunately, a separate installation of the Zimbra Connector for Outlook is needed to connect Outlook to Zimbra with the same functionality that Outlook has when it connects to Exchange. While the connector works fine, it is a shame that an additional desktop installation is needed. On the other hand, Zimbra believes that the real goodies are in its Web client, which is rushing toward Outlook parity. Indeed, Zimbra currently has a system in alpha release status that allows the Web client to be used offline. Although I didn't test this system (reviewing alpha products can be unfair), the demo that Zimbra provided showed it to be at least as swift and powerful as Outlook working with local PST files.

Pricing

Zimbra, like Scalix, bills itself as an open source solution. Like Scalix, the open source end of Zimbra extends only to basic functionality. For the full functionality that comes closest (but misses) the Exchange standard, you need to purchase Zimbra's Network Professional Edition. This edition is priced in blocks of 25 users, at $35 per user per year for the first 25 users and $28 per user per year for each additional block of 25 users.

Table A shows a brief comparison between the costs for Microsoft Exchange and Zimbra. One thing in Zimbra's favor is that there are deep discounts for certain customers, such as education institutes, government agencies, and nonprofit organizations. However, as the table shows, the cost of Zimbra's yearly licenses can get very steep very quickly. Zimbra's license does include free upgrades and patches on a yearly per-users basis, but it is much more expensive than Exchange unless you buy Exchange and then decide to upgrade it to a newer version soon after.

Table A

Total Cost - 1 Year

Total Cost - 3 Years

Total Cost - 5 Years

# of Clients

Exchange

Zimbra

Exchange

Zimbra

Exchange

Zimbra

100

$11,698.00

$4,274.00

$11,698.00

$12,822.00

$11,698.00

$21,370.00

250

$21,748.00

$8,474.00

$21,748.00

$25,422.00

$21,748.00

$42,370.00

500

$38,498.00

$15,474.00

$38,498.00

$46,422.00

$38,498.00

$77,370.00

1,500

$105,498.00

$43,474.00

$105,498.00

$130,422.00

$105,498.00

$217,370.00

* These numbers take into account $35 per user per year for the first block of 25 users, $28 per user per year for an additional block of 25 users, and $1,299 per year for a RHEL Enterprise Linux Premium Subscription. On the Microsoft side, there is a $999 Windows 2003 Enterprise Server R2 license, $3,999 Exchange 2007 Enterprise Edition license, and $67 Exchange Standard CAL per user.

Table B shows a price comparison between Zimbra and Scalix. Scalix may be a better price comparison, because they are both more similar in feature set to each other than either one is to Exchange. They also both run on the Linux platform, and they are both trying to break into the space that is Exchange's to lose. As you can see, Scalix comes more heavily loaded at the beginning of the contract, but by Year 3, Zimbra's heftier yearly per-user fee brings it about neck in neck with Scalix, and by Year 5, Zimbra is significantly more expensive than Scalix.

Table B

Total Cost - 1 Year

Total Cost - 3 Years

Total Cost - 5 Years

# of Clients

Scalix

Zimbra

Scalix

Zimbra

Scalix

Zimbra

100

$7,799.00

$4,274.00

$12,797.00

$12,822.00

$17,795.00

$21,370.00

250

$17,549.00

$8,474.00

$26,147.00

$25,422.00

$34,745.00

$42,370.00

500

$32,799.00

$15,474.00

$47,397.00

$46,422.00

$61,995.00

$77,370.00

1,500

$95,799.00

$43,474.00

$134,397.00

$130,422.00

$172,995.00

$217,370.00

* These numbers take into account $35 per user per year for the first block of 25 users, $28 per user per year for an additional block of 25 users, and $1,299 per year for a RHEL Enterprise Linux Premium Subscription. On the Scalix side, there is the $60 per user Scalix perpetual license for Scalix Enterprise Edition, the Scalix Migration Tool costs ($5/user for 250 users or less; $3 per user for more than 250 users), $1,299 per year for a RHEL Enterprise Linux Premium Subscription, and the $12 per user per year (after the first year) Scalix Software Subscription Service fees.

Of course, these are all comparisons of the vendors' list price. It may be quite possible to negotiate a better deal through volume licensing. Indeed, finding a street price on Microsoft products that is lower than list price is not difficult. It's also important to note that this is simply a comparison of the Exchange server to the Zimbra server with base OS costs. Zimbra believes (and I agree) that its Web client is good enough for most users to not need Outlook. Taking the costs of Outlook into account can tip the scale quite heavily in Zimbra's favor.



Cost breakdown

Check out this worksheet for a detailed comparison of Zimbra vs. Exchange costs.



Conclusion

The Zimbra Collaboration Suite works fine. Other than the difficult installation I experienced, nothing particularly stood out about it on a base, technical level as being bad. I believe that it is has a few weak points from a business standpoint. It took dings for its implementation of ClamAV and SpamAssassin, the "beta" label on the Documents system, its poor documentation, the lack of support beyond a handful of GNU/Linux distributions, its use of an outside-the-OS application server, database, and JDK, and a number of other items noted above.

Unless the idea of making your own Zimlets really appeals to you, Zimbra compares well with Scalix; Zimbra is better at some things, Scalix at others. If you are looking to replace your Windows and Exchange servers with a GNU/Linux system, it is worth trying out. If you are happy with your current Windows and Exchange servers, the Zimbra Collaboration Suite is probably not a strong enough alternative to tempt you away, unless you find that you do not use the bulk of your Exchange functionality anyway. In such a scenario, a lower level edition of Zimbra (or Scalix, for that matter) may be suitable for your organization. The best fit for Zimbra is for the enterprise that is ready and willing to dump Outlook, as well for a Web client. In this scenario, Zimbra is an excellent solution.

What is OneNote?

Written by IT News on 4:11 AM

Organize essential information in a digital notebook.


OneNote tabbed interface
Do you spend too much time searching through information you have stored in multiple places? With MicrosoftØ¢® Office OneNoteØ¢® 2007 you and your work team can overcome the challenges of today's increasingly complex information environment.

An integrated part of the 2007 Microsoft Office system, OneNote 2007 is structured like a digital three-ring binder. You can gather, organize, find, and share typed and handwritten text, images and graphics, and audio and video recordings from a single location on your desktop, laptop, or tablet PC. And with support for multiple and shared notebooks, collaborating with others is efficient and straightforward.

Other new capabilities of OneNote 2007 include:
Instant search. Indexed and super fast, the search function quickly finds what you need.
Tables. Paste tables from Microsoft Office Word and ExcelØ¢®, or the Web into OneNote 2007 pages without losing the original formatting.
Drag-and-drop functionality. Easily drag pages, sections, or folders to your other notebooks.
Try the 2007 Microsoft Office system beta now and find out how OneNote 2007 can help you save time, stay organized, and be more effective.

Check out OneNote 2007.
See how easy it is to manage and share information.

Things to Love About Office 2007

Written by IT News on 4:07 AM

Top Reasons to Upgrade to Microsoft Office 2007.


Ready for a new way to access the features you use the most? The new user interface in the 2007 MicrosoftØ¢® Office release simplifies your work with tools such as the Ribbon and the Quick Access Toolbar. You can do away with guesswork, save time, and get more out of the programs you use every day.

The Ribbon
In place of menus and toolbars, use the new Ribbon tabs in the 2007 release programs Word, ExcelØ¢®, PowerPointØ¢®, Access, and parts of OutlookØ¢®. Quickly and easily access the features you use regularly, and see more of the tools available without having to search for them.

To keep your workspace clear and organized, the Ribbon adds additional contextual tabs for many tasks, such as working with tables or graphics. For example, click in a table in a Word 2007 document and the Table Tools Design and Layout tabs appear.

And, if you're a keyboard user, try the new KeyTips feature with the Ribbon:
Press the Alt key to view pop-up tips showing the characters you can type to access any tab.
Once that tab is open, a new set of KeyTips appears automatically.
KeyTips indicates what key to press to access any feature on that tab.
Your Personal Quick Access Toolbars
Just above the Ribbon is a single toolbar designed just for the tools you need to use most often. You can add almost any command from any Ribbon tab to the Quick Access Toolbar. To add a command, just right-click the command and then click Add To Quick Access Toolbar. That's all there is to it!

You can even save custom Quick Access Toolbars for individual files in the 2007 release programs Word, Excel, PowerPoint, or Access. To customize your toolbar, just click the arrow at the end of the Quick Access Toolbar and then click More Commands.

It's that easy!

View a demo.
Side-by-side comparisons with previous versions show how much easier it is to get things done with the new Microsoft Office user interface.

Search This Blog

Ads and Sponsored by:



Want to subscribe?

Subscribe in a reader.