< Back

New-MgaMailFolder

Sat Jan 18, 2020 4:42 pm

NAME New-MgaMailFolder



SYNOPSIS

Creates a folder in Exchange Online using the graph api.





SYNTAX

New-MgaMailFolder [-Name] <String[]> [[-ParentFolder] <FolderParameter[]>] [-User <String>] [-Token

<AzureAccessToken>] [-WhatIf] [-Confirm] [<CommonParameters>]





DESCRIPTION

Creates a new folder in Exchange Online using the graph api.





PARAMETERS

-Name <String[]>

The name to be set as new name.



Required? true

Position? 1

Default value

Accept pipeline input? true (ByValue, ByPropertyName)

Accept wildcard characters? false



-ParentFolder <FolderParameter[]>

The folder where the new folder should be created in. Do not specify to create

a folder on the root level.



Possible values are a valid folder Id or a Mga folder object passed in.

Tab completion is available on this parameter for a list of well known folders.



Required? false

Position? 2

Default value

Accept pipeline input? false

Accept wildcard characters? false



-User <String>

The user-account to access. Defaults to the main user connected as.

Can be any primary email name of any user the connected token has access to.



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-Token <AzureAccessToken>

The token representing an established connection to the Microsoft Graph Api.

Can be created by using New-MgaAccessToken.

Can be omitted if a connection has been registered using the -Register parameter on New-MgaAccessToken.



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-WhatIf [<SwitchParameter>]

If this switch is enabled, no actions are performed but informational messages will be displayed that explain

what would happen if the command were to run.



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-Confirm [<SwitchParameter>]

If this switch is enabled, you will be prompted for confirmation before executing any operations that change

state.



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS

MSGraph.Exchange.Mail.Folder





-------------------------- EXAMPLE 1 --------------------------



PS C:\\>New-MgaMailFolder -Name 'MyFolder'



Creates a new folder named "MyFolder" on the root level of the mailbox









-------------------------- EXAMPLE 2 --------------------------



PS C:\\>New-MgaMailFolder -Name 'MyFolder' -ParentFolder $folder



Creates a new folder named "MyFolder" inside the folder passed in with the variable $folder











RELATED LINKS