- Managing shared mailboxes in Office 365 with PowerShell - Thu, May 5 2016
- Managing shared mailboxes in Office 365 with the GUI - Wed, May 4 2016
- Installing and configuring the Enhanced Mitigation Experience Toolkit (EMET) - Wed, Mar 16 2016
If you're running file servers, I highly recommend running FSRM. I'm always surprised at how many people either haven't heard of FSRM or have never used it and complain about several of the problems it can help you solve. The FSRM gives you greater control over folder quotas, let's you block file types (file screening), and generate storage reports just to name a few things it can do. So, let's get started by installing the File Server Resource Manager on a file server.
Install FSRM on Windows Server 2012 with PowerShell
Installing the FSRM on Server 2012 with the Install-WindowsFeature cmdlet is definitely the fastest way to get up and going. With Administrator rights, run the following PowerShell command and you're done:
Install-WindowsFeature –Name FS-Resource-Manager –IncludeManagementTools
Install FSRM on Server 2008 R2 using PowerShell
Installing FSRM on Server 2008 R2 with PowerShell takes slightly more work, but is still much faster than with the GUI. With Administrator rights, run the following PowerShell command:
Import-Module Servermanager
Add-WindowsFeature FS-FileServer,FS-Resource-Manager
Install FSRM on Server 2012 using Server Manager
Installing FSRM from the GUI is slightly more involved. First, start off in the Server Manager and go to Manage, then Add Roles and Features.
Click through the Before you begin dialog and the installation type since we won’t be setting up Remote Desktop Services.
Depending on how many servers you are managing in your Server Manager, you may see multiple servers. Select your file server and click Next.
When you get to the Select server roles screen, scroll down to the File And Storage Services area and check File Server Resource Manager. When you do this, you’ll be prompted to add additional features that are necessary for the FSRM… namely the File Server role and the management tools (which you’ll definitely need if they’re not already installed). After clicking Add Features, you’ll be taken back to the Select server rolls screen and you should see that File Server and File Server Resource Manager are both checked now. Click Next to move on.
On the Select features screen, there is nothing to change. However, if you scroll down, you should see that the File Services Tools option has been checked under Remote Server Administration Tools, Role Administration Tools. Click Next to move on.
On the Confirmation installation selections screen, you can click Install. Now you can sit back and wait for FSRM to install.
If you were installing directly on the server console, the File Server Resource Manager administrative tool should now be on the Start screen.
Install FSRM on Server 2008 R2 using Server Manager
To install the File Server Resource Manager in Windows Server 2008 R2, click on Roles in the Server Manager and then click on Add Roles. Click through the Before You Begin dialog.
In the Server Roles screen, click File Services and then Next.
In the File Services screen, click Next. In the ‘Role Services’ screen that comes up next, you’ll want to check File Server Resource Manager and then click Next. For now, we’ll skip configuring FRSM and click Next to bypass Configure Storage Usage Monitoring.
On the Confirm Installation Selections, click Install and wait for the installation to finish.
The File Server Resource Manager administrative tool should now be available on the Start menu.
In my next post I will outline the initial FSRM configuration.
Thanks! Helped a bit, as I am learning Server 2012. Here’s a twist, what if I want to connect from a Server 2012 to a Windows 7 machine. As in I want to check my emails and stuff while practicing on the Server machine in my basement. I’ve installed File Services and tried to connect but says it has to be Windows 2008 Server…etc. Is there a simple way of Remote Desktop from Server 2012R2 to Win7Pro?
Cheers
tom
We have a tutorial on enabling Remote Desktop on Windows 7 Pro. You should be able to use the Remote Desktop client on Server 2013 (if the GUI is installed).
Thank you for help me