Monday, February 25, 2008

Printing Just One Page in Outlook 2007


"I often want to print just the first page of an email that has gone back and forward to a single person multiple times. When I ask to print an email from Outlook, sometimes it comes up with a Print panel that includes Table style, Email style etc and doesn't allow you to select the page number. You can only select Odd, Even or All pages. Other times it comes up with the correct panel that I want to use that lets me select just page 1. Is there any way of configuring Outlook so that it only comes up with the second 'generic' print panel? Clearly Microsoft don't understand how users want to use their products!"

Outlook uses the IE print dialog for HTML email - this is the one that gives you the option to print specific pages.

When you print a plain text message Outlook uses it's printer dialog. You have three options if you need better control over the printout.

  1. Convert the message to HTML (open the message, select Edit, Edit message then choose Format menu and change to HTML).
  2. Press Forward and print using Word's print dialog.
  3. Print to a digital format such as the Office document image driver and then print the electronic copy to paper.

Bonus tip: When you choose Forward, you can remove the header information and your name is not included at the top of the message, but it works best if you use the Forward defaults of forward inline and don't add quote prefixes or indent the original message.

By the way, Microsoft does understand how users want to use the product; they sometimes have a hard time implementing the features. They are getting better about understanding how we work too - thanks to the Customer Experience Improvement Programs (CEIP). When you first install Office, you'll be asked if you want to help improve Office - if you say yes data about how you work - what menus you use, the steps you use to create a document etc - is sent back to Microsoft and analyzed. While Outlook 2003 introduced changes based on CEIP data, the new toolbars in Office 12 resulted in what they learned from the CEIP data.

How to check Memory size in HP-UX

In HP-UX you can use check physical memory allocated to server from command line as well as from SAM.I am going to describe here how to check memory on HP-UX from command line:

1.) Checking phyiscal memory in HP-UX using dmesg :

You can check memory in HP-UX using dmesg output. In HP-UX dmesg print HP-UX server messages and hardware information available to system during the boot time.Here is the command to check physical memory in HP-UX using dmesg output :

hp-uxdev# dmesg |grep Physical

Physical: 8388608 Kbytes, lockable: 5614168 Kbytes, available: 6461644 Kbytes

In dmesg output memory is listed as 8388608 Kbytes or 8 GB.Note: in grep use P(upper) case in word physical to get memory information or “grep –i physical”

2.) Checking HP-UX memory using print_manifest :

HP-UX provides very useful command called print_manifest,i am going to use print_manifest to check how much memory is available :

hp-uxdev# print_manifest |grep –i memory

Main Memory: 8192 MB

Print_manifest is very handy command I don’t even have to

3.) Checking HP-UX memory using cstm:

Check on your HP-UX server if you have cstm installed by running which cstm .If you have CSTM install on your HP-UX server , you can check Physical memory by running following command :

hp-uxdev# which cstm

hp-uxdev# /usr/sbin/cstm

hp-uxdev# print_manifest |grep -i memory

Basic Memory Description

Module Type: MEMORY

Total Configured Memory : 8192 MB

Page Size: 4096 Bytes

Memory interleaving is supported on this machine and is ON.

Memory Board Inventory

Extender

Slot Num Configured and Slot label for each DIMM (MB)

-------- --------------------------------------------

0a 2a 1a 3a 3b 1b 2b 0b

---- ---- ---- ---- ---- ---- ---- ----

EXT 0 1024 1024 1024 1024 1024 1024 1024 1024

------------------------------------------------------

System Total (MB): 8192

Memory Error Log Summary

The memory error log is empty.

Page Deallocation Table (PDT)

PDT Entries Used: 0

PDT Entries Free: 256

PDT Total Size: 256

-- Information Tool Log for MEMORY on path 192 --

Cstm gives detailed memory information and is useful if you experiencing memory errors

see also How to check physical/real memory size in Solaris

How to check memory size in AIX

How to check memory size in Linux

searches: total physical memory hp_ux