New-AzureStorageTable
Creates a storage table.
Important
You've reached a webpage for an outdated version of Azure PowerShell. All versions of the AzureRM PowerShell module are outdated, but not out of support. The Az PowerShell module is now the recommended PowerShell module for interacting with Azure. To get started with the Az PowerShell module, see Install Azure PowerShell. To learn how to migrate to the Az PowerShell module, see Migrate Azure PowerShell from AzureRM to Az.
Syntax
New-AzureStorageTable
[-Name] <String>
[-Context <IStorageContext>]
[<CommonParameters>]
Description
The New-AzureStorageTable cmdlet creates a storage table associated with the storage account in Azure.
Examples
Example 1: Create an azure storage table
PS C:\>New-AzureStorageTable -Name "tableabc"
This command creates a storage table with a name of tableabc.
Example 2: Create multiple azure storage tables
PS C:\>"table1 table2 table3".split() | New-AzureStorageTable
This command creates multiple tables. It uses the Split method of the .NET String class and then passes the names on the pipeline.
Parameters
Specifies the storage context. To create it, you can use the New-AzureStorageContext cmdlet.
Type: | IStorageContext |
Position: | Named |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies a name for the new table.
Type: | String |
Aliases: | N, Table |
Position: | 0 |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Inputs
IStorageContext
Parameter 'Context' accepts value of type 'IStorageContext' from the pipeline
String
Parameter 'Name' accepts value of type 'String' from the pipeline