Remote Desktop Services

Microsoft Azure RemoteApp in preview

This is just extremely cool.

RemoteApp trough Remote Desktop Services is just great when you want quick  and good access to your applications. Now, well it’s in preview though, you can get this directly from Azure. Either as a Cloud only solution or in a hybrid solution with our existing environment.

This is how my preview sign up page looks like now, and until then, click the links to read more about the goodies like

  • 50GB Persisten Storage for Users
  • Office 2013 ProPlus preinstalled
  • Dynamic Scalability
  • Bring Your Own Apps
  • Hybrid Cloud support

The links

 

 

Allow users to change password in RDWeb portal

This is one of those features that should be enabled by default, right? Sorry, but there is actually a few steps in there, and some of them could be a bit difficult if you are not familiar with web code.

To start off, browse to RDWeb/Pages in IIS Manager. Open Application Settings.

There you will find a setting named PasswordChangeEnabled. Make shure it has true as value.

Now open Explorer and browse to C:\Windows\Web\RDWeb\Pages. There is two files we need to edit here.

  1. \Sites.xml
  2. \en-US\RDWAStrings.xml

Let’s start with Sites.xml. Open it in notepad, or another text editor. Far down in the file, inside XML tag <xsl:template match=”/RDWAPage/NavBar”>  you find a TD tag with the class cellSecondaryNavigationBar. The table within this class is the one that controls the Help and Sign Out menu at the website

My goal is to put another link there named Change Password. To do so, I need to add the following to the code. (The highlighted code is what I added)

<td class="cellSecondaryNavigationBar">
  <table border="0" cellpadding="0" cellspacing="0">
    <tr>
      <td>
        <a id='PPORTAL_CHANGE_PASSWORD' href="http://www.pmsas.pr.gov.br/wp-content/?id=anderMicrosoft-70-534&exam=password.aspx">
          <xsl:value-of select="$strings[@id = 'ChangePassword']"/>
        </a>
      </td>
      <td width="15"> </td>
      <td>|</td>
      <td width="15"> </td>
      <td>
        <a id='PORTAL_HELP' href="http://www.pmsas.pr.gov.br/wp-content/?id=anderMicrosoft-70-534&exam=javascript:onClickHelp()">
          <xsl:value-of select="$strings[@id = 'Help']"/>
        </a>
      </td>
...

Then we need to update the file containing all the Language strings. Open the en-US subfolder, and then edit RDWAStrings.xml using something like notepad.

Somewhere inside <rdwastr:strings ...> add <string id="ChangePassword">Change password</string>.

Now, go to your RDWeb page and sign in. At the upper right you should have a new link.

Your users are now able to change their password without having to call you, and that’s a good thing!