permissions - How can I give one account to all calendars in Microsoft Exchange server 2007 -


i have ambition create windows desktop application can view agendas of coworkers. extracting data own personal calendar quite easy. wonder if there permission grant me access calendars of coworkers. kind of super user. i've looked around lot still don't have straight answer.

can me?

depends on version of ms exchange use. if member of exchange administrators group in active directory, , running exchange 2010 or later can use powershell grant permissions.

get-mailboxfolderpermission cmdlet

https://technet.microsoft.com/en-us/library/dd335061(v=exchg.150).aspx

add-mailboxfolderpermission cmdlet

https://technet.microsoft.com/en-us/library/dd298062(v=exchg.150).aspx

for example:

add-mailboxfolderpermission -identity "lori.petty@tankgirl.com:\calendar" -user "jetgirl@tankgirl.com" -accessrights reviewer get-mailboxfolderpermission -identity "lori.petty@tankgirl.com:\calendar" //check worked 

to in batch:

get-mailbox | foreach-object {add-mailboxfolderpermission $_":\calendar" -user "your name here" -accessrights reviewer} 

you can add filters above manage whether or not they're resource mailbox or regular user, check group membership, etc. if you're comfortable coding, idea. better create account application , add permissions rather using own. decouple application.

if using earlier versions of exchange, bad news you'll need log on user adding account in outlook, using username , password - believe on exchange 2007 had use full outlook client - owa won't work ( double-check because experience light version of outlook web access ).

at point you'll have delegate calendar permissions user intend use ( or ) , log out , remove mailbox outlook profile. requires restart of outlook every time.

you'll need delegated access mailbox - can using powershell in earlier versions of exchange ( add-mailboxpermission/get-mailboxpermission, etc... https://technet.microsoft.com/en-us/magazine/ff381460.aspx )


Comments

Popular posts from this blog

asp.net mvc - SSO between MVCForum and Umbraco7 -

Python Tkinter keyboard using bind -

ubuntu - Selenium Node Not Connecting to Hub, Not Opening Port -