Re: Report on Delivery Options

2011-06-09 Thread Wilhelm, Scott
That worked perfectly :)  Thanks sooo much!

Any chance you could give me an idea on how to disable all the mailbox
features (OWA, activesync, mapi, pop3  imap4) through a cmdlet?  I'd like
to write a script to basically take away access from our students who
misbehave.

Thanks,

Scott

On Wed, Jun 8, 2011 at 12:17 PM, Campbell, Rob 
rob_campb...@centraltechnology.net wrote:

  get-mailbox –resultsize unlimited | select
 identity,forward*,deliver*,recipientlimits | export-csv delivery_opts.csv
 -notype



 *From:* Wilhelm, Scott [mailto:swilh...@mcs.k12.ny.us]
 *Sent:* Wednesday, June 08, 2011 10:54 AM
 *To:* MS-Exchange Admin Issues
 *Subject:* Report on Delivery Options



 Hello:



 I'm trying to export all my users  their Delivery Options settings, but
 I can't find the cmdlet for it.  Am I missing it, or is there none?  Or is
 there another way of pulling those records?  Is it possible?



 Thanks,



 Scott




 --

 *Scott Wilhelm*

 SLL BOCES Central Office (Tue): 315.386.4504 x 10134
 Massena Central (Mon, Wed-Fri): 315.764.3700 x3046

 *“The harder I work, the luckier I get. “* -Samuel Goldwyn
 *‎Individual commitment to a group effort - that is what makes a team
 work, a company work, a society work, a civilization work.* -Vince
 Lombardi



 ---
 To manage subscriptions click here:
 http://lyris.sunbelt-software.com/read/my_forums/
 or send an email to listmana...@lyris.sunbeltsoftware.com
 with the body: unsubscribe exchangelist

 **
 Note:
 The information contained in this message may be privileged and confidential 
 and
 protected from disclosure.  If the reader of this message is not the intended
 recipient, or an employee or agent responsible for delivering this message to
 the intended recipient, you are hereby notified that any dissemination,
 distribution or copying of this communication is strictly prohibited. If you
 have received this communication in error, please notify us immediately by
 replying to the message and deleting it from your computer.
 **

 ---
 To manage subscriptions click here:
 http://lyris.sunbelt-software.com/read/my_forums/
 or send an email to listmana...@lyris.sunbeltsoftware.com
 with the body: unsubscribe exchangelist




-- 

*Scott Wilhelm*

SLL BOCES Central Office (Tue): 315.386.4504 x 10134
Massena Central (Mon, Wed-Fri): 315.764.3700 x3046

*“The harder I work, the luckier I get. “* -Samuel Goldwyn
*‎Individual commitment to a group effort - that is what makes a team work,
a company work, a society work, a civilization work.* -Vince Lombardi

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

RE: Report on Delivery Options

2011-06-09 Thread Campbell, Rob
Doing that through a cmdlet is going to be tedious.  Use a function:

function suspend-mailbox {
param ([string]$user)

$protocol_params = @{
OWAEnabled = $false
ImapEnabled = $false
ECPEnabled = $false
EwsEnabled = $false
ActiveSyncEnabled = $false
PopEnabled = $false
MapiEnabled = $false
}

set-casmailbox $user @protocol_params
get-casmailbox $user | select $($protocol_params.keys) | fl
}

Add that to your profile and then you can do this:

Suspend-mailbox username

From: Wilhelm, Scott [mailto:swilh...@mcs.k12.ny.us]
Sent: Thursday, June 09, 2011 7:41 AM
To: MS-Exchange Admin Issues
Subject: Re: Report on Delivery Options

That worked perfectly :)  Thanks sooo much!

Any chance you could give me an idea on how to disable all the mailbox features 
(OWA, activesync, mapi, pop3  imap4) through a cmdlet?  I'd like to write a 
script to basically take away access from our students who misbehave.

Thanks,

Scott

On Wed, Jun 8, 2011 at 12:17 PM, Campbell, Rob 
rob_campb...@centraltechnology.netmailto:rob_campb...@centraltechnology.net 
wrote:
get-mailbox –resultsize unlimited | select 
identity,forward*,deliver*,recipientlimits | export-csv delivery_opts.csv 
-notype

From: Wilhelm, Scott 
[mailto:swilh...@mcs.k12.ny.usmailto:swilh...@mcs.k12.ny.us]
Sent: Wednesday, June 08, 2011 10:54 AM
To: MS-Exchange Admin Issues
Subject: Report on Delivery Options

Hello:

I'm trying to export all my users  their Delivery Options settings, but I 
can't find the cmdlet for it.  Am I missing it, or is there none?  Or is there 
another way of pulling those records?  Is it possible?

Thanks,

Scott


--

Scott Wilhelm

SLL BOCES Central Office (Tue): 315.386.4504 x 10134
Massena Central (Mon, Wed-Fri): 315.764.3700 x3046

“The harder I work, the luckier I get. “ -Samuel Goldwyn
‎Individual commitment to a group effort - that is what makes a team work, a 
company work, a society work, a civilization work. -Vince Lombardi


---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

**

Note:

The information contained in this message may be privileged and confidential and

protected from disclosure.  If the reader of this message is not the intended

recipient, or an employee or agent responsible for delivering this message to

the intended recipient, you are hereby notified that any dissemination,

distribution or copying of this communication is strictly prohibited. If you

have received this communication in error, please notify us immediately by

replying to the message and deleting it from your computer.

**

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist



--

Scott Wilhelm

SLL BOCES Central Office (Tue): 315.386.4504 x 10134
Massena Central (Mon, Wed-Fri): 315.764.3700 x3046

“The harder I work, the luckier I get. “ -Samuel Goldwyn
‎Individual commitment to a group effort - that is what makes a team work, a 
company work, a society work, a civilization work. -Vince Lombardi


---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist
**
Note: 
The information contained in this message may be privileged and confidential 
and 
protected from disclosure.  If the reader of this message is not the intended  
recipient, or an employee or agent responsible for delivering this message to  
the intended recipient, you are hereby notified that any dissemination,   
distribution or copying of this communication is strictly prohibited. If you  
have received this communication in error, please notify us immediately by  
replying to the message and deleting it from your computer. 
**

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist


Report on Delivery Options

2011-06-08 Thread Wilhelm, Scott
Hello:

I'm trying to export all my users  their Delivery Options settings, but I
can't find the cmdlet for it.  Am I missing it, or is there none?  Or is
there another way of pulling those records?  Is it possible?

Thanks,

Scott


-- 

*Scott Wilhelm*

SLL BOCES Central Office (Tue): 315.386.4504 x 10134
Massena Central (Mon, Wed-Fri): 315.764.3700 x3046

*“The harder I work, the luckier I get. “* -Samuel Goldwyn
*‎Individual commitment to a group effort - that is what makes a team work,
a company work, a society work, a civilization work.* -Vince Lombardi

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

RE: Report on Delivery Options

2011-06-08 Thread Campbell, Rob
get-mailbox –resultsize unlimited | select 
identity,forward*,deliver*,recipientlimits | export-csv delivery_opts.csv 
-notype

From: Wilhelm, Scott [mailto:swilh...@mcs.k12.ny.us]
Sent: Wednesday, June 08, 2011 10:54 AM
To: MS-Exchange Admin Issues
Subject: Report on Delivery Options

Hello:

I'm trying to export all my users  their Delivery Options settings, but I 
can't find the cmdlet for it.  Am I missing it, or is there none?  Or is there 
another way of pulling those records?  Is it possible?

Thanks,

Scott


--

Scott Wilhelm

SLL BOCES Central Office (Tue): 315.386.4504 x 10134
Massena Central (Mon, Wed-Fri): 315.764.3700 x3046

“The harder I work, the luckier I get. “ -Samuel Goldwyn
‎Individual commitment to a group effort - that is what makes a team work, a 
company work, a society work, a civilization work. -Vince Lombardi


---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist
**
Note: 
The information contained in this message may be privileged and confidential 
and 
protected from disclosure.  If the reader of this message is not the intended  
recipient, or an employee or agent responsible for delivering this message to  
the intended recipient, you are hereby notified that any dissemination,   
distribution or copying of this communication is strictly prohibited. If you  
have received this communication in error, please notify us immediately by  
replying to the message and deleting it from your computer. 
**

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist