Thursday, October 30, 2008

How to grant Send On Behalf Of permission


"Send on Behalf Of" allows one user to be able to send emails on behalf of another. The message will show the recipient who the message was sent on behalf of and who actually sent the message.

There are two ways of granting "Send on Behalf Of":

  • via Outlook
    allowing a user to grant others to send on their behalf
  • via Active Directory Users and Computers
    which can be performed by system managers only

Grant Send on Behalf of via Outlook

This procedure will allow you to grant other users the ability to send on your behalf:

  1. Start Outlook
  2. Tools → Options, select the "Delegates" tab
  3. Click on [Add ...]
  4. Add the user or users that you want to grant the send-on-behalf-of permission to, then click [OK]
  5. The next window will allow you to specify which permissions you are granting. To allow send-on-behalf-of, you need to grant permissions on the "Inbox" to either "Author" or "Editor", then click [OK]
  6. Click [OK] to close the "Options" dialog.

Note:

  • The above has been demonstrated to work when using Outlook 2003, but not with Outlook 2000 connected to a Exchange 2003 server (I have not had time to identify why).
  • See also "How to send a message on behalf of another"

Grant Send on Behalf of via Active Directory Users and Computers

This procedure will allow system managers to grant users the ability to send on the behalf of other users:

  1. Log onto the server running Exchange.
  2. Run Active Directory Users and Computers.
  3. Find the user's account that you want to be able to send on behalf of, and open up the account properties.
  4. Select the "Exchange General" tab.
  5. Click [Delivery Options...]
  6. Click [Add ...] and add the user (or users) that are to be granted permission to send on behalf of this account.
  7. Click [OK] to close the "Delivery Options" dialog.
  8. Click [OK] to close the account properties dialog..

See also "How to send a message on behalf of another".

How to Send a Message on Behalf of Another

To send an email on behalf of another (assuming you have been granted the necessary send-on-behalf-of privilege):

  1. Start Outlook.
  2. Go to your Inbox.
  3. Click [New] to start a new mail message.
  4. If the message does not show a "From" field then pull down the "View" menu and check "From Field".
  5. Click [From...] and select the account that you wish to send an email on behalf of.
  6. Compose the email as normal.

Note:

  • When you try to send the email you will get an error if you have not been granted the necessary send-on-behalf-of permission.
  • To the recipient the email will show both the true author and who it was sent on behalf of.

These notes have been tested with Exchange Server 2003, with Outlook 2000 and Outlook 2003. It is believed they also apply to Exchange Server 2000.



Thursday, October 16, 2008

Prepare PC's for PDF Processing

1. Download and Install the PCL converter (http://www.acuityware.com/Files/pclconverter_cmd.zip) on each PC. Use the license key that was sent after a key request was emailed to frank@acuityware.com

2. Open and extract the pclconverter_cmd.ZIP to the C:\ root directory.

3. Run the installation program “pcl-converter.exe”

4. After installation, run it once and enter the license info.

5. Close the app, no need to run it again.

6. Create a directory in the C:\ drive called : c:\myfolder

7. Create a new printer called “AcuityWare PDF Printer”. (Be aware of the spelling and capitalization) Make it a generic text printer as the model and create a new local port as c:\myfolder\PRINT.PCL


8. Use the following screen shots to create the printer:






Register a DLL through the command line

To register a DLL through the command line:

1. Go to Start, Run, Type in CMD and press ENTER.

2. Type regsvr32.exe C:\the\complete\path\filename.dll


Silent Registration:


regsvr32.exe /s C:\the\complete\path\filename.dll


Unregister:

regsvr32.exe /u C:\the\complete\path\filename.dll


Silent Unregistration:


regsvr32.exe /u /s C:\the\complete\path\filename.dll


Screen shot from RegSvr32: