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 年前檢視次數 950 次
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 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南