-
This is the code for live tiles, you add this directly to the hapconfig.xml file as it's an advanced feature the config tool doesn't support using it.
HTML Code:
<Link name="CRI-SVR-001" showto="Inherit" description="Uptime" url="#" icon="" target="" type="uptime:cri-svr-001" />
For Exchange support you need to ensure you are running Exchange 2007+, or using Office 365.
The links you add are:
HTML Code:
<Link name="Emails" showto="Inherit" description="Access Outlook Web App" url="/owa/" icon="~/images/icons/metro/Office-15/outlook.png" target="" type="exchange.unread" />
<Link name="Calendar" showto="Inherit" description="My Calendar" url="/owa/" icon="~/images/icons/metro/applications/calendar.png" target="" type="exchange.appointments" />
Then on the SMTP node you need to set the exchange server
HTML Code:
<SMTP exchange="server fqdn" />
The current user's credentials are used to connected to EWS.
The Sever FQDN needs to be one where the certificate is a valid one, usually the external url
-
1 Attachment(s)
Thanks for getting back on a saturday night NickX
The Server code was the same just my server names
As to the SMTP
Code:
<SMTP exchange="server fqdn" />
this is what I have at the moment so do I replace SMTP Server= for SMTP exchange=
Code:
<SMTP server="mail.school.sch.uk" port="25" enabled="True" ssl="False" from="HAP Server" fromaddress="hap@school.sch.uk" user="" password="" />
Attachment 15046
-
HTML Code:
<SMTP server="mail.school.sch.uk" port="25" enabled="True" ssl="False" from="HAP Server" fromaddress="hap@school.sch.uk" user="" password="" exchange="mail.school.sch.uk" />
-
Just an update I now have Server Uptime working; in the initial config I had set domain\user for the active directory setup and everything in the setup worked. But by removing the "domain" the server uptime live tiles now work.
one last issue if I use
Code:
<Link name="Emails" showto="Inherit" description="Access Outlook Web App" url="/owa/" icon="~/images/icons/metro/Office-15/outlook.png" target="" type="exchange.unread" />
clicking on the tile goes to the HAP server not the Exchange server I have modded the line to
Code:
<Link name="Emails" showto="Inherit" description="Access Outlook Web App" url="https://school.mail/owa/" icon="~/images/icons/metro/Office-15/outlook.png" target="" type="exchange.unread" />
This works for the live tile but I still have to log into OWA when I click on the tile, is this right?
-
It is not meant to log you into OWA automatically, that would be a security risk
-
In that case I think mine is about there then, time to show it to management.