Create FSx for Windows file share with remote management cli

1

Hi,

I'm trying to create a new FSx for windows file share through remote management. However, running the following cmd

invoke-command -credential $cred -ComputerName fsx.example.aws -ConfigurationName FsxRemoteAdmin -scriptblock {New-FSxSmbShare -Credential $using:cred -Name "myshare" -Path "D:\myshare" -Description "FSx Windows file share" -FolderEnumerationMode AccessBased -Confirm:$false}

returns the following error:

You can only create shares on the D: drive; if specifying a folder, the folder must already exist on the D: drive.
At line:1 char:1
+ invoke-command -credential $cred -ComputerName fsx.example.aws ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OperationStopped: (You can only cr...n the D: drive.:String) [], RuntimeException
    + FullyQualifiedErrorId : You can only create shares on the D: drive; if specifying a folder, the folder must already exist on the D: drive.

It seems that the first step should be create a folder on the remote file system. However, the commands provided by Get-Command does not contain New-Item to create this folder. What is the correct procedure to create a new file share with FSx remote management cli? Thanks!

AWS
yumings
已提问 2 年前948 查看次数
1 回答
0

Hi yumings,

Thank you for using re:Post. The documentation does not make it directly obvious but the documented way is to create the directory by connecting with an FSxW Administrator Account to the D$ share of the system:

New-Item -Type Directory -Path \\amznfsxabcd0123.corp.example.com\D$\share\MyNewShare

From: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-file-shares.html

专家
已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则