• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/53

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

53 Cards in this Set

  • Front
  • Back
Why does the Exchange setup inquire if you are using Outlook 2003 or Microsoft Entourage in the organization?
This is to determine if it should create a public folders database. If you answer "yes" then it will create a public folder database
List two types of public folder trees
Default Public Folders
System Public Folders
IPM_Subtree
Default Public folders
NON_IPM_Subtree
System Public Folders
Which PF type is accessed by users?
IPM_Subtree
Which PF type is indirectly accessed by older versions of Outlook accessing the OAB?
Non_IPM_Subtree
What is a deep hierarchy?
A deep hierarchy has many vertically nested folders.
What is the difference between a deep and a wide hierarchy?
A wide hierarchy has many high-level folders but fewer nested folders
Which hierchical type should you strive for in a PF structure?
You should shoot for the deeply nested hierachy as this provides better performance during replication
PRACTICE: Create a PF
Use the PF Management Console
What powershell command do you use to create a new PF?
New-PublicFolder
What is the command to create a new PF named Child-Folder under the ExamplePublicFolder on server van-adatum.com?
New-PublicFolder -Name 'Child-Folder' -Path '\ExamplePublicFolder' -Server 'van-ex2.adatum.com'
List eight roles that can be assigned when configuring PF perms
Owner, PublishingEditor, Editor, PublishingAuthor,Author,Non-EditingAuthor, Reviewer, and Contributor
Which rols as all client user access rights?
the Owner Role
ReadItems right
user can read items in the PF
CreateItems
user can post items or send email to the PF
EditOwnedItems
can edit items the the user owns
DeleteOwnedItems
can delete items the user owns
EditAllItems
Can edit any items in the PF
DeleteAllItems
can delete any items in the PF
CreateSubfolders
can create subfolders in the PF
FolderOwner
user can view and move the folder, create subfolders, and configure permissions.
Can the FolderOwner read or delete items in the folder?
No, only the owner has this right.
FolderContact
This user is the contact for the PF.
Which roles have this right?
Only the Owner role
FolderVisible
User can view the PF but cannot read or edit items.
Does the owner have the FolderVisible right?
Yes. All users have this right.
What tool do you use to view and assign perms to PFs?
EMS
List two commands to view PF perms
Get-PublicFolderAdministrativePermission
Get-PublicFolderClientPermission
This command will show administrative access rights for a folder.
Get-PublicFolderAdministrativePermission
This command will view the list of client access permissions to a folder called 'Research'
get-publicfolderclientpermission -identity '\Research'|FL
What command do you use to add client permissions to a PF?
Add-PublicFolderCLientPermission
two methods to grant users admin perms to a PF
1) add user to the "Public Folder Management" role - Add-RoleGroupMember
2) Add-PublicFolderAdministrativePermission cmdlet
Add a user named Oksana to the "Public Folder Management" role group.
Add-RolegroupMember -Identity "Public Folder Management" -Member Oksana
When would you use the add-PublicFolderAdministrativePermissionvs the Add-RoleGroupMember cmdlet?
Add-PublicFolderAdministrativePermission is used when you want to add more detailed permissions
What does Mail-Enable a folder do?
Allows users to post items to public folders by sending an email message to a configured address.
How do you mail-enable a public folder?
Use the EMC
PRACTICE: MAIL ENABLE A PUBLIC FOLDER
.
What cmdlet can you use to mail enable a PF?
Enable-MailPublicFolder
mail-enable a PF called "Sales"
enable-MailPublicFolder -Identity "\Sales"
List properties that you can enable limits for 3 items
max size
max age
deleted item retention
How do you configure message size limits in EMS
Set-PublicFolder -MaxItemSize parameter
Set a 1 MB limit on the PF \ExamplarFolder
Set-PublicFolder -Identity '\ExemplarFolder' -MaxItemSize 1MB -UseDatabaseQuotaDefaults $false
How do you set the max receive size in EMS?
Set-PublicFolder -MaxReceiveSize
How do you set the max age size in EMS?
Set-PublicFolder -AgeLimit and set the -UseDatabaseAgeDefaults $false parameter.
Which limit options can you use for Set-PublicFolder
MaxItemSize
AgeLimit
Which limit options can you use for SetMailPublicFolder?
MaxReceiveSize
You have a folder named ExemplarFolder. You want to set the age limit to 21 days. What is the command you would use?
set-publicfolder -Identity 'ExemplarFolder' -AgeLimit 21 -usedatabaseDefaults $false
You have a mail-enabled folder named ExemplarFolder. You want to set the maximum receive size to 1 MB in EMS. What command would you use?
set-mailpublicfolder -Identity '\ExemplarFolder' -MaxReceiveSize 1MB
Which EMS cmdlet allows you to mail-enable a PF?
enable-mailpublicfolder
Which cmdlet can be used to assign the PublishingEditor role for the Development public folder to a user named Orin?
AddPublicFodlerClientPermission -Identity "\Development" -AccessRights PublishingEditor -user Orin
Which EMS cmdlet can be used to configure an item age limit on an existing mail-enabled PF?
set-mailpublicfolder
Which EMS cmdlets can be used to configure max message size on a mail-enabled public folder?
set-mailbpublicfolder -MaxReceiveSize
set-publicfolder -MaxItemsize -UserDatabasequotadefaults $false