web-dev-qa-db-ja.com

PowerShellを使用して新しいsmb共有を設定中にエラーが発生しました

私は、cドライブにフォルダー構造をセットアップし、それらのフォルダーを共有に変換するPowerShellスクリプトの作成に取り組んでいます。

New-SmbShareコマンドレットを使用すると、1332または50のエラーが発生します。

ドメインを使用すると、1332エラーが発生します

New-SmbShare -Name "InstallerFiles" -Path "C:\SoftwareDistribution\InstallerFiles" -ContinuouslyAvailable $true -ReadAccess "domain\Authenticated Users"

New-SmbShare : No mapping between account names and security IDs was done. 
At line:1 char:1
+ New-SmbShare -Name "InstallerFiles" -Path "C:\SoftwareDistribution\InstallerFile ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (MSFT_SMBShare:ROOT/Microsoft/Windows/SMB/MSFT_SMBShare) [New-SmbShare], CimException
    + FullyQualifiedErrorId : Windows System Error 1332,New-SmbShare

ドメインを削除すると、50エラーが発生します。

New-SmbShare -Name "InstallerFiles" -Path "C:\SoftwareDistribution\InstallerFiles" -ContinuouslyAvailable $true -ReadAccess "Authenticated Users"

New-SmbShare : The request is not supported. 
At line:1 char:1
+ New-SmbShare -Name "InstallerFiles" -Path "C:\SoftwareDistribution\InstallerFile ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (MSFT_SMBShare:ROOT/Microsoft/Windows/SMB/MSFT_SMBShare) [New-SmbShare], CimException
    + FullyQualifiedErrorId : Windows System Error 50,New-SmbShare

-ContinuouslyAvailable-ReadAccessを削除すると共有を作成できますが、スクリプトからユーザーまたはセキュリティグループにアクセス許可を割り当てることができます。

PowerShellを使用してsmb共有を設定し、ユーザーまたはセキュリティグループを割り当てるには、何を変更する必要がありますか?

4
zingwing

-ContinuouslyAvailableフラグを削除する必要があります。私の知る限り、このフラグはとにかくデフォルトでTrueに設定されています。

これらもご覧になることをお勧めします。

https://social.technet.Microsoft.com/Forums/en-US/0666a96f-d8c9-4a20-b994-10a003cd7047/big-performance-isssue-cafs-and-10-gbe-network?forum= winserverfiles

https://blogs.technet.Microsoft.com/davguents_blog/2012/10/21/windows-server-2012-continuous-availability-file-server-feature/

ご使用の環境では関数が使用できない可能性があるため、New-SmbShare : The request is not supported.エラー

そしてあなたの最初のエラー:No mapping between account names and security IDs was done、これは基本的に「ユーザーが見つかりません」を意味すると思いますここを参照してください:

http://www.rebeladmin.com/2016/01/how-to-fix-error-no-mapping-between-account-names-and-security-ids-in-active-directory/ ==

そして多分ここから例を試してみてください:

https://sharepoint.stackexchange.com/questions/134715/new-smbshare-no-mapping-between-account-names-and-security-ids-was-done

9
Owain Esau