RE: OWA on Exchange Standard 2003

2010-04-16 Thread David McSpadden
I have tried the Fixing a Damaged or Incorrectly Configured OWA 2003 Installation from MSExchange.org and I am still getting the 403.4. I think I remember the past Exchange Admin installing a cert but I wouldn't even begin to know why this would be affecting my fixed install or how to remove it...

RE: PFDAVAdmin tool

2010-04-16 Thread David Lum
What's the best way to do that? Can I simply create a service account and give it perms? Does it just need read mailbox permissions? Dave From: Michael B. Smith [mailto:mich...@smithcons.com] Sent: Wednesday, April 14, 2010 3:06 PM To: MS-Exchange Admin Issues Subject: RE: PFDAVAdmin tool Well.

RE: PFDAVAdmin tool

2010-04-16 Thread pramatowski
I'd think Read, Write and Administer the Information Store. Paul What’s the best way to do that? Can I simply create a service account and give it perms? Does it just need read mailbox permissions? Dave From: Michael B. Smith [mailto:mich...@s

OT: powershell/.NET question

2010-04-16 Thread Bill Egan
Sorry for the off topic post, but since many of you are powershell whizzes, I thought I'd give it a try. And forgive my inefficient code... So I am trying to put together a script to get the value of a registry key for every computer in the domain - this case the WSUS susclientid - and have come

RE: powershell/.NET question

2010-04-16 Thread Michael B. Smith
WellI don't think you can actually do that. But there are actually two potential issues. One you've identified and I'll give you a script to help with that. The other is that a firewall is running and blocking RPC. I can't much help you with that one, except to tell you that it can be contro

RE: powershell/.NET question

2010-04-16 Thread Campbell, Rob
This may help with testing for RPC availability. function Test-Port{ Param([string]$srv,$port=135,$timeout=1000,[switch]$verbose) $ErrorActionPreference = "SilentlyContinue" $tcpclient = new-Object system.Net.Sockets.TcpClient $iar = $tcpclient.BeginConnect($srv,$port,$null,$null)

RE: powershell/.NET question

2010-04-16 Thread Michael B. Smith
MUCH nicer than mine. I'm going to steal it. :-) Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com -Original Message- From: Campbell, Rob [mailto:rob_campb...@centraltechnology.net] Sent: Friday, April 16, 2010 3:57 PM To: MS-Exchange Admin Issues Su

Auto-deleting

2010-04-16 Thread Steve Hart
Exchange 2007 SP2, Outlook 2002 I have a user that's attempting to permanently delete emails over 3 months old in a single Outlook folder using the auto-archive functionality. Nothing is being deleted. I've checked her OL configuration and it seems correct, but I've never used the feature. A

RE: powershell/.NET question

2010-04-16 Thread Campbell, Rob
Thank you. Having people steal your code is high praise for a Powershell scripter. Having an Exchange MVP do it is even better :) -Original Message- From: Michael B. Smith [mailto:mich...@smithcons.com] Sent: Friday, April 16, 2010 2:59 PM To: MS-Exchange Admin Issues Subject: RE: powe

Importing mailbox into PST Files in exchange 2k7

2010-04-16 Thread Josh Tuck
All: We are wanting to do an export of a user's mailbox into a pst file, essentially just make a copy and leave the mailbox intact.  I would normally just use exmerge, but we noticed that there is some mailbox-export commands in Exchange 2k7.  What is the command to accomplish.  Sorry for such

RE: [MARKETING] Auto-deleting

2010-04-16 Thread Jason Gurtz
> I have a user that's attempting to permanently delete emails over 3 > months old in a single Outlook folder using the auto-archive > functionality. Nothing is being deleted. I've checked her OL > configuration and it seems correct, but I've never used the feature. > > Any common reasons why emai

Re: powershell/.NET question

2010-04-16 Thread Bill Egan
ok, further showing my ignorance, how do I call that function. I'm trying: Foreach($comp in get-qadcomputer){ $srvname = $comp.name if(test-port $srvname=$true){ $key = "SOFTWARE\Microsoft\Windows\CurrentVersion\windowsupdate" blah, blah, blah

RE: powershell/.NET question

2010-04-16 Thread Michael B. Smith
Close. Foreach($comp in get-qadcomputer){ $srvname = $comp.name if((test-port $srvname -verbose)){ $key = "SOFTWARE\Microsoft\Windows\CurrentVersion\windowsupdate" blah, blah, blah Regards, Michael B. Smith Consultant and Exchange MVP http://

RE: [MARKETING] Auto-deleting

2010-04-16 Thread Robert Peterson
Auto-archive uses a "last modified" date. If she recently moved the emails... they will not be captured during archiving if their modify date is newer than the date requested to be archived. There are some third-party fixes to edit the "last modified" date. -Robert -Original Message- Fro

I haven't seen any mention of it here...

2010-04-16 Thread Michael B. Smith
But Office 2010, SharePoint 2010, Project 2010, and Visio 2010 have RTM'ed. http://blogs.technet.com/office2010/archive/2010/04/15/office-2010-reaches-rtm.aspx Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com

Re: powershell/.NET question

2010-04-16 Thread Steven Peck
Just an aside. Brandon Shell (PowerShell MVP)has a nice PowerShell module that has a test-port cmdlet in it that works nicely. He indicated it was meant to fill the gaps for Systems Engineers between Quests AD cmlets and the build in PowerShell cmdlets. http://bsonposh.com/ http://code.msdn.micro

RE: powershell/.NET question

2010-04-16 Thread Michael B. Smith
I know Brandon and he does lots of good stuff. The problem is that many (but not most) of my clients don't allow me to import "third party products" onto their servers. This is a common issue. Therefore, individual freeware is most handy. Regards, Michael B. Smith Consultant and Exchange MVP h

Re: powershell/.NET question

2010-04-16 Thread Steven Peck
I just steal snippets. His module is all v2 compatible and not compiled so swiping out code is easy. On Fri, Apr 16, 2010 at 3:26 PM, Michael B. Smith wrote: > I know Brandon and he does lots of good stuff. > > The problem is that many (but not most) of my clients don't allow me to > import "th

Anyone know of hosted remote support

2010-04-16 Thread jgarciaitlist
We would like something like remote desktop and logmein but cheap and would allow us to remote to clients pc or offer support. Maybe something opensource ?? Any ideas Sent via BlackBerry from T-Mobile

Re: Anyone know of hosted remote support

2010-04-16 Thread josh . tuck
Tightvnc or ultravnc worked ok for us. --Original Message-- From: jgarciaitl...@gmail.com To: MS-Exchange Admin Issues ReplyTo: MS-Exchange Admin Issues Subject: Anyone know of hosted remote support Sent: Apr 16, 2010 8:46 PM We would like something like remote desktop and logmein but chea

Re: Anyone know of hosted remote support

2010-04-16 Thread jgarciaitlist
How did you deploy over nat? --Original Message-- From: josh.t...@sbcglobal.net To: MS-Exchange Admin Issues ReplyTo: MS-Exchange Admin Issues Subject: Re: Anyone know of hosted remote support Sent: Apr 16, 2010 9:48 PM Tightvnc or ultravnc worked ok for us. --Original Message-- Fr

Re: Anyone know of hosted remote support

2010-04-16 Thread josh . tuck
I misunderstood the question..have you checked out teamviewer? I would consider it pretty cheap for what you get. Sent from my Verizon Wireless BlackBerry -Original Message- From: jgarciaitl...@gmail.com Date: Sat, 17 Apr 2010 01:51:44 To: MS-Exchange Admin Issues Subject: Re: Anyone kn

Re: Anyone know of hosted remote support

2010-04-16 Thread justino garcia
will do On Fri, Apr 16, 2010 at 9:55 PM, wrote: > I misunderstood the question..have you checked out teamviewer? I would > consider it pretty cheap for what you get. > Sent from my Verizon Wireless BlackBerry > > -Original Message- > From: jgarciaitl...@gmail.com > Date: Sat, 17 Apr 201