Skip to main content

Home/ PowerShell/ Group items tagged Ex2010

Rss Feed Group items tagged

anonymous

PS: How find all mailboxes on Ex2010 with OWA enabled - 0 views

get-mailbox | where {$_.Database -like "DAG*"} | Get-CASMailbox | Where {$_.owaenabled} The above command ignores mailboxes on Ex2003

Powershell IT Ex2010

started by anonymous on 20 Jun 12 no follow-up yet
anonymous

How to grant Full Access to Mailbox with Powershell - 0 views

=== Granting full access === Add-MailboxPermission "Joe Adams" -AccessRights FullAccess -user "janea" Besides FullAccess, the following mailbox permissions can be granted using Add-MailboxPermiss...

Ex2010 Powershell

started by anonymous on 03 Aug 12 no follow-up yet
anonymous

Retrieve number of mailboxes per database in Exchange Server 2010 - 0 views

(Get-MailboxDatabase) | ForEach-Object {Write-Host $_.Name (Get-Mailbox -Database $_.Name).Count} oder (Get-MailboxDatabase) | Select-Object Name,@{Name="Number of users";Expression={(Get-Mailbox...

Powershell Ex2010

started by anonymous on 07 Aug 12 no follow-up yet
anonymous

How to modify mailbox custom attributes in Powershell - 0 views

Set-Mailbox -identity Mailchecker -customattribute15 7dayMailboxItemRetention

Powershell Ex2010

started by anonymous on 07 Aug 12 no follow-up yet
anonymous

How to add mailbox permissions by Powershell - 0 views

Add-MailboxPermission -Identity "Ellen Adams" -User KevinKelly -AccessRights FullAccess -InheritanceType All

Ex2010 Powershell

started by anonymous on 07 Aug 12 no follow-up yet
anonymous

PS: How to enable OW - 0 views

PS: How to enable OWA for all mailboxes on a Server get-mailbox -server fcl-exc-v501 | Set-CASMailbox -owaenabled:$true How to get all mailbox OWA status on a Server get-mailbox -server fcl-exc-v5...

Powershell IT Ex2010

started by anonymous on 19 Jun 12 no follow-up yet
anonymous

How to determine OWA - 0 views

How to determine OWA Change Password feature status With this command you can query the status. Get-OwaVirtualDirectory | ft name,server,owaversion,changepasswordenabled With this command you can...

Powershell IT Ex2010

started by anonymous on 19 Jun 12 no follow-up yet
anonymous

Enable OWAget-mailb - 0 views

Enable OWA get-mailbox -server fcl-exc-v501 | Set-CASMailbox -owaenabled:$true How to get all mailbox OWA status on a Server get-mailbox -server fcl-exc-v501 | Get-CASMailbox

Powershell IT Ex2010

started by anonymous on 19 Jun 12 no follow-up yet
anonymous

OWA Change Password - 0 views

OWA Change Password status With this command you can query the status. Get-OwaVirtualDirectory | ft name,server,owaversion,changepasswordenabled With this command you can change it. set-owavirtua...

Powershell IT Ex2010

started by anonymous on 19 Jun 12 no follow-up yet
anonymous

PS: How to find all Object properties - 0 views

With the Get-Member cmdlet. Example: Get-Mailbox username | Get-Member

Powershell it Ex2010

started by anonymous on 20 Jun 12 no follow-up yet
1 - 13 of 13
Showing 20 items per page