Your network contains an Active Directory domain named contoso.com. The domain contains a server named
Server1. Server1 runs Windows Server 2012.
You plan to create a shared folder. The shared folder will have a quota limit.
You discover that when you run the New Share Wizard, you cannot select the SMB Share – Advanced option.
You need to ensure that you can use SMB Share – Advanced to create the new share.
What should you do on Server1 before you run the New Share Wizard?
A.
Configure the Advanced system settings.
B.
Run the Install-WindowsFeaturecmdlet.
C.
Run the Set-SmbSharecmdlet.
D.
Install the Share and Storage Management tool.
Explanation:
Install-WindowsFeature
Installs one or more Windows Server roles, role services, or features on either the local or a specified remote
server that is running Windows Server 2012. This cmdlet is equivalent to and replaces Add-WindowsFeature,
the cmdlet that was used to install roles, role services, and features in Windows Server 2008 R2.
What you want to install first is the “File Server Resource Manager”
I believe all the answers are wrong above, I seen this question on other preps with the correct answer.
http://blogs.technet.com/b/yungchou/archive/2012/09/10/windows-server-2012-hyper-v-over-smb-explained.aspx
B is correct.
You can install FSRM with install-windowsfeature fs-resource-manager commandlet
Thanks. you need FSRM to enable SMB?
File Services Resource Manager has to be installed in order to enable quota functionality. If FRSM is not installed then quota functionality will not be enabled on the server.
Quotas are available through the New Share Wizard by using the SMB-Advanced option. If FSRM is not installed then quotas are not enabled on the server and the SMB-Advanced option will be greyed out.
In this question, you have to add the FSRM role which is a sub-role of File and Storage Services. Use the following command:
Install-WindowsFeature -Name FS-Resource-Manager
-Tim-
I agree you need to install FRSM, the only problem is that’s it’s a windows ROLE and not a FEATURE. Again some crap question that’s just not correct.
You sound like a whiny little special snowflake.
Go back to the basics.
Install-WindowsFeature installs BOTH roles and features. It’s the freaking basic command.
Install-WindowsFeature -Name FS-Resource-Manager
https://4sysops.com/archives/file-server-resource-manager-fsrm-part-1-install-frsm/
B is correct
Thanks gentlemen.
Answer D – but mistake in answer not tool but role
B = not true
Isn’t D a Windows Server 2008 Tool?