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
asked 2 years ago924 views
1 Answer
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

EXPERT
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions