You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/storage-mover/projects-manage.md
+23-7Lines changed: 23 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,19 +56,35 @@ The first step in defining a migration job is the creation of a project resource
56
56
:::image type="content" source="media/projects-manage/project-explorer-create-sml.png" alt-text="project explorer create" lightbox="media/projects-manage/project-explorer-create-lrg.png":::
57
57
58
58
### [PowerShell](#tab/powershell)
59
+
60
+
Creating a project you to decide on a name. Refer to the [resource naming convention](../azure-resource-manager/management/resource-name-rules.md#microsoftstoragesync) to choose a supported name. A description is optional and can contain up to 1024 single-byte characters.
61
+
62
+
The `New-AzStorageMoverProject` cmdlet is used to create a new project within a [storage mover resource](storage-mover-create.md) you previously deployed. If you haven't yet installed the `Az.StorageMover` module:
59
63
60
-
The `New-AzStorageMoverProject` cmdlet is used to create new storage mover projects. If you haven't yet installed the `Az.StorageMover` module, follow the guidance within the [Install Azure Storage Mover modules for PowerShell](module-install.md) article before proceeding.
64
+
```powershell
65
+
## Ensure you are running the latest version of PowerShell 7
66
+
$PSVersionTable.PSVersion
67
+
68
+
## Your local execution policy must be set to at least remote signed or less restrictive
You'll need to supply values for the required `-Name`, `-ResourceGroupName`, and `-StorageMoverName` parameters. The `-Description` parameter is optional and will be intentionally omitted in the example below and added in the next section.
78
+
The [Install Azure PowerShell](/powershell/azure/install-az-ps) article has more details.
63
79
64
-
The following examples contain sample values. You'll need to substitute actual values to complete the example.
80
+
You'll need to supply values for the required `-Name`, `-ResourceGroupName`, and `-StorageMoverName` parameters. The `-Description` parameter is optional.
65
81
66
82
1. It's always a good idea to create and use variables to store lengthy or potentially complex strings.
0 commit comments