Exchange 2007 / 2010 Scripts

Here's a living post which will grow as I add useful commands to it.

Exchange 2007/2010

View all SMTP addresses, both primary and others.
This line exports to a CSV: Export-Csv export.csv –NoTypeInformation

Get-Mailbox -ResultSize Unlimited |Select-Object DisplayName,ServerName,PrimarySmtpAddress, @{Name=“EmailAddresses”;Expression={$_.EmailAddresses |Where-Object {$_.PrefixString -ceq “smtp”} | ForEach-Object {$_.SmtpAddress}}} | Export-Csv export.csv –NoTypeInformation

Posted in General | Leave a comment

How to uninstall Lotus Domino on Linux

Here's how to uninstall Lotus Domino 8.5.x from Linux:

1. Navigate to   /opt/ibm/lotus/notes/latest/linux/_uninst
2. Run this command:   ./uninstaller.bin

Posted in Lotus | Leave a comment

Install Sametime 8.5.2 on unsupported Linux distribution

Trying to install Sametime 8.x.x on an unsupported Linux Distro?

I was trying to install Sametime on CentOS and kept on receiving this error: "This operating system is not supported."

Thankfully getting around the system checks Sametime performs is easy!

type the following before running the installer:
# export STSkipAllChecks=true

Posted in General | Tagged | Leave a comment

Troubleshoot Lotus Notes Traveler 8.5.3 Device

Ran into an issue the other day with a customer unable to add his (*sigh*) iPad2 to Lotus Traveler 8.5.3. We would sign on to the Traveler site, generate the profile and install the profile but received an error when trying to open the mail account, and the device wasn't even appearing nuder 'Devices' in the Lotus Notes Administrator.

Although we were able to add it using a different user, but not his, and he had it working with LNT 8.5.2.

The problem? It seems the device was listed as 'Denied Access' in the users security document -- it was probably some anti-Apple, pro-Android, and anything not Apple, admin  :)

Here's how to fix it...

First, let's list all the devices for that user, approved or denied:

>tell traveler security status <user>

Carefully review the output of that command. Once you find the device in question you can remove it with this command:

>tell traveler security delete <device> <user>

Now run this command to ensure the device is no longer listed

>tell traveler security status <user>

*More information about device approval on the IBM site:
http://www-10.lotus.com/ldd/dominowiki.nsf/dx/Requiring_approval_for_device_access_LNT853

Posted in Lotus | Tagged , | Leave a comment

Anonymous Attacking Child Porn Websites

Recently heard they're [Anonymous] actively going after companies hosting Child Porn sites.

What I'd like to know is where do I sign up to help?

Posted in Uncategorized | Leave a comment

Useful commands and link for Lotus Traveler 8.5.3

Hi everyone!

Going to use this post as a living document and update it with commands/links which I find useful.

LINKS

Administering Lotus Notes Traveler 8.5.3

IBM Traveler 8.5.3 Documentation

Solve sync problems in Traveler

NOTES

Deleting a user from Traveler:
>tell traveler delete
*Use short or long name*

Posted in Lotus | Leave a comment

Samsung Galaxy 8.9 Release Date

Finally, after buying (and returning) the Galaxy Tab 10.1 last week BestBuy finally started taking pre-orders!

They're stating a release date anywhere between September 25th-30th 2011.

Posted in General | Leave a comment

Upgrade Lotus Domino to 64-bit from 32-bit

Here's a good article from IBM which explains the steps.

https://www-304.ibm.com/support/docview.wss?uid=swg21506430

Posted in Uncategorized | Tagged | Leave a comment

Lotus Notes 8.5.2 FP3

Fix pack 3 for 8.5.2 will be released on July 18, 2011

Posted in Lotus | Leave a comment

Find out which domain server authenticated you

Need to find out which Windows Domain controller authenticated you?

Easy enough, open a command prompt and type: set l

Posted in General | Tagged | Leave a comment