Question : how can i get a list of client inbox rules through powershell

my company has a shared user mailbox which mysteriously is having new emails moved.  many people access this mailbox so I figure it must be a client side inbox rule.  is there any way to query everyone's inbox rules to see if any are accidentally moving or deleting emails from the shared inbox?

Answer : how can i get a list of client inbox rules through powershell

There is no need to use a try / catch . You could use listeners which gives more detailed information.
            
Check out this doc too:
http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/flash/net/FileReference.html#download%28%29
            
            
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
function downloadToDesktop(filename):void {

	var path:String = catalogPath + filename;
	var request:URLRequest = new URLRequest(path);
	
	var localRef:FileReference = new FileReference();
	localRef.addEventListener(Event.COMPLETE, downloadComplete);
	localRef.addEventListener(IOErrorEvent.IO_ERROR, downloadIOError);
	localRef.download(request);

}

function downloadComplete(e:Event):void 
{
	trace("Download complete. User downloaded:", FileReference(e.currentTarget).name)
}

function downloadIOError(e:IOErrorEvent):void 
{
	trace("Download error:", e.text, "\nCannot download:", FileReference(e.currentTarget).name);
}
Random Solutions  
 
programming4us programming4us