What is Windows Side-by-Side (WinSxS) folder and How it can save your server’s hard disk space?


Introduction

Whenever you install any role or feature in Windows Server, the installation wizard or PowewrShell cmdlet looks for installation files in a specific location i.e. WinSxS folder located in C:\Windows\WinSxS folder. If you go to this folder and check its properties, you will see it contains the largest space in the entire Windows folder around 6 GB approx in my Windows Server 2012 R2 installation.

And in server’s case, not all the roles and features are installed on servers. Only a small amount of roles are needed like Web Server, Active Directory etc. So this consumes lot of space for the roles and features which we don’t need to even install.

Now in Windows Server 2012, you have the option via PowerShell to remove the files you don;t need. I will tell you how.

Actual Lab

  • Open PowerShell.
  • Type Get-WindowsFeature, to get the full list of available/installed/removed features.
  • Now to uninstall and remove the files from WinSxS folder, simply issue Uninstall-WindowsFeature Feature Name -Remove cmdlet.(E.g to remove Windows Server Migration tools, use the command Uninstall-WindowsFeature Migration -Remove). If you don’t use the -Remove keyword, the installation files will remain in the WinSxS folder and will be used if you install the role at a later time without going to WIndows Update website.
  • If you want to install this role/feature at a later time, you can do this, just make sure that your server is connected to the Internet and issue this command Install-WindowsFeature Feature Name cmdlet. The command will first look at WinSxS folder, if the files are not found, then it will fetch the required files from Windows Update website.

This will save you considerable amount of space on your server hard disk.

You can also watch the full video here.

https://www.bitchute.com/video/pEQ6sml4FRKL/

How to change Refresh Interval of Server Manager in Windows Server 2012


To change refresh interval of Server Manager, perform the following steps.

  • Login to the server as Admin.
  • Open Server Manager.
  • Click on Manager and choose Server Manager Properties.
  • The Server Manager properties Windows appears.

  • Change the time to your convenient time. You can assign 1 to 14400 minutes. Default is 10 minutes and click on OK.

You can see the full video here also.

How to Set or Change Resolution of Command Prompt in Windows Server 2012 Server Core


To Set or change resolution of Server Core 2012, perform the below mentioned steps.

  • Login to Windows Server 2012 Server Core as admin.
  • In the command prompt windows, type Setres and press enter.
  • To view the current resolution, type Setres -i
  • To change resolution type Setres -w 1280 -h 1024. It will ask you for the confirmation.
  • Type Y to save the current resolution or Type N to cancel the changes.
  • To forcefully change resolution, without confirmation just add -f command at the end.

You can watch the full tutorial here on our YouTube channel also. Here is the link for the same.