NFS share supported on Server 2012 dynamic disk?

1

Creating NFS shares on server 2008 R2 spanned volumes (with dynamic disks) works however when I tried on 2012 I received an error. The same PowerShell command works on the C drive basic volume on 2012.

enter image description here

New-NfsShare -Name nfsshare -Path E:\nfsshare -Authentication All `
    -EnableAnonymousAccess:$true -NetworkName $env:COMPUTERNAME `
    -Permission ReadWrite

New-NfsShare : Failed to perform the requested operation.
    At line:1 char:1
    + New-NfsShare -Name nfsshare -Path E:\nfsshare -Authentication All -EnableAnonymo ...
    + CategoryInfo          : NotSpecified: (MSFT_NfsServerTasks:root/Microsoft/..._NfsServerTasks) [New-NfsShare], CimException
    + FullyQualifiedErrorId : HRESULT 0x80070001,New-NfsShare
nfs
windows-server-2012
asked on Server Fault Aug 13, 2013 by Andy Arismendi • edited Aug 13, 2013 by Andy Arismendi

2 Answers

1

I received an email back from the MS storage team (nfsfeed@microsoft.com) and they confirmed this doesn't work in 2012.

There is a hotfix that is apparently available from special request to MS - 2777475.

They said it was fixed in 2012 R2.

answered on Server Fault Sep 1, 2013 by Andy Arismendi
1

The fix is available in:

Windows 8 and Windows Server 2012 update rollup: December 2012

http://support.microsoft.com/kb/2779768

answered on Server Fault Feb 11, 2014 by Igal Serban

User contributions licensed under CC BY-SA 3.0