How to create an iSCSI target on Windows Server 2012

iSCSI is a powerful technology that may come in handy even for sharing a network volume to a bunch of users. While iSCSI was developed for much more complex operations, being able to connect a network volume to a client PC has its advantages over a network share.

Windows Server 2012 and 2012 R2 can “natively” manage iSCSI targets while older versions needed the installation a Microsoft package.

In this tutorial we’ll see how to create an iSCSI target and how to connect a client PC to it.
(more…)

Active Directory: how to restrict sites in IE 10 and IE 11 with a Group Policy

Site restrictions are common in business networks. Mangers and entrepreneurs want to limit potential distractions and Microsoft offers a range of solutions to achieve the objective. An usual practice is to adopt a proxy server but you can enforce site restrictions on Internet Explorer – even the latest versions – using a simple Active Directory Group Policy.

In this tutorial we’ll take advantage of the Content Advisor functionalities of Internet Explorer, a feature Microsoft hid in IE 10 and IE 11.
(more…)

How to allow Remote Desktop Control to a standard domain user

A standard user of an Active Directory Domain may need to access several PCs of the domain. The manual configuration of the needed permissions may be tricky but thanks to the Windows Server Essentials Experience role we have an easier way to allow the remote control.

Before reading this tutorial you need to install the Windows Server Essentials Experience role. If you don’t know how to do that, read this article.
(more…)

How to install the Windows Server Essentials Dashboard

Windows Server Essentials Dashboard is an interesting tool that facilitates the management of an Active Directory Domain. Once a feature available uniquely on Windows Server SBS, you can now install it on every Windows Server 2012 or 2012 R2.

The installation process involves the addition of a role. Quite an easy procedure.
(more…)

How to connect a Windows 8.1 client to a Work Folders Sync Share

Recently, we explained how you can set up a Work Folders Sync Share on a Windows Server 2012 R2. It’s time to discover how you can connect a Windows 8.1 client to a Work Folders Sync Share.

The process is quick and simple, but you need to know two important things:

  • By default, you need a SSL certificate installed and configured on the server in order to connect the client. You can configure the client to use http – instead of https – by running the following command on the client:
    Reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WorkFolders /v AllowUnsecureConnection /t REG_DWORD /d 1
  • As Microsoft explains here, when a user enters the email address, such as Jane@contoso.com, the client will construct the Url as https://WorkFolders.contoso.com, and use that Url to communicate with the server. In production environment, you will need to publish the Url for the client to communicate to the server through reverse proxy. You can bypass the Url publication configuring the following regkey:
    Reg add HKCU\Software\Microsoft\Windows\CurrentVersion\WorkFolders /v ServerUrl /t REG_SZ /d http://syncServer.contoso.com

(more…)

How to install and configure IIS on Windows Server 2012 R2

We’ve already seen how you can install IIS (Internet Information Services) on Windows 8.1 for testing purposes. Now, we’ll see how you can install IIS on a server machine, to host your website for production purposes.

There’s no much differences between the two procedures. The installation is quick and easy.
(more…)