Remove Render Blocking From Office 365 Public Facing Website

Please does anyone know how to solve this?
Im trying to optimise my office 365 public facing website with search engines such as Google. Google has found a number of errors on all my pages, one being this Remove Render Blocking from Javascript & Optimise CSS Delivery. What does this mean and
how do i fix this? Must be someone out there that knows surely.
The notes Google left where: None of the above-the-fold content on your page could be rendered without waiting for the following
resources to load. Try to defer or asynchronously load blocking resources, or inline the critical portions of those resources directly in the HTML.
Thanks

I feel like I'm losing my mind! Here is a  Fortune 500 company web site using Sharepoint public facing: http://www.constellation.com/pages/default.aspx.
Just vaildated it; it contains 93 errors!! Another has a slow-moving Flash component that cannot be controlled by the user and looks like it was built in 1995 at best: http://www.viacom.com/Pages/default.aspx . It contains 59 errors.
What is going on here? The combination of "Cloud" computing and mobile devices is destroying web design! We are regressing!

Similar Messages

  • DW site to windows office 365 public facing?????

    A tech consulting firm recently asked if I had the resources to convert existing websites, likely built with DW, to Office 365 public facing sites. Everything I have read about this software indicates that the process would be hellish, inasmuch as the MS program is designed for people with no web design skills whereas DW is designed for web design professionals.
    I understand why a business owner would like to integrate everything into one package, but I don't think dumbing down the website is the answer. Has anyone else ever used this software?

    I feel like I'm losing my mind! Here is a  Fortune 500 company web site using Sharepoint public facing: http://www.constellation.com/pages/default.aspx.
    Just vaildated it; it contains 93 errors!! Another has a slow-moving Flash component that cannot be controlled by the user and looks like it was built in 1995 at best: http://www.viacom.com/Pages/default.aspx . It contains 59 errors.
    What is going on here? The combination of "Cloud" computing and mobile devices is destroying web design! We are regressing!

  • How to remove external contact from office 365 Global Address List

    Try this below.
    $file1 = "file1.csv"
    $file2 = "file2.csv"
    $f2Names = import-csv $file2 | select -ExpandProperty Name
    Import-Csv $file1 |
    Where { $f2Names -notcontains $_.Name }

    We have an office 365 online service.  We have successfully imported and updated via csv and powershell scripts as part of managing external contacts.
    how can we delete using the same structure?  CSV file and powershell scripts
    This topic first appeared in the Spiceworks Community

  • Opportunistic TLS removed from Office 365?

    Team.
       I have an open question regarding changes to the mail flow connector for Exchange Online:http://community.office365.com/en-us/f/156/p/343149/929997.aspx#929997
    Hello all,
        I'm working on a Hybrid 2010 configuration.  When modify the connectors in Exchange Online EAC, I noticed that the connectors changes, and opportunistic TLS is gone. 
    What happened?  Can someone please provide some information regarding the TLS changes?  Did opportunistic TLS get removed? 
    I was following these articles:
    Configure mail flow using connectors in Office 365
    https://technet.microsoft.com/en-us/library/ms.exch.eac.connectorselection(v=exchg.150).aspx
    Set up connectors to route mail between Office 365 and your own email servers
    https://technet.microsoft.com/en-us/library/dn751020(v=exchg.150).aspx
    Any information on theses changes will be appreciated.
    -KloudSavvy
    I received this response:
    Posted by Allen Z. MSFT Support
    on
    4/11/2015 3:05 AM
                          Microsoft Support                      
    Suggested Answer
    Hi Kloud,
    I didn’t find any official documentation about that. The connectors page in
    Exchange admin center has just been updated, so we may not have relevant documentation at this point. If I find any, I’ll let you know.
    Meanwhile, I suggest you submit your feedback to let our relevant team know that you need an official documentation about the
    Opportunistic TLS of new connectors.
    Thanks for your understanding.
    Best Regards,
    Allen
    Do you know the answer to this question?  Or, are you planning to post something on these changes?
    Thanks           

    Hi,
    What’s your scenario for creating a connector?
    I noticed that you are using Exchange 2010-based hybrid deployment. Generally, when configuring a hybrid configuration using the Hybrid Configuration wizard, one of the things it creates is a new receive connector named “Inbound from Office 365” on each
    hybrid transport server.
    This connector is set to only accept incoming SMTP sessions from a specific set of IP ranges, which are associated with the FOPE service used in Office 365. Please check your receive connector and send connector for Hybrid environment in EAC and share the
    configuration information here for further analysis.
    Additionally, here is a reference about Hybrid 2010 Configuration for mail flow:
    http://www.msexchange.org/articles-tutorials/office-365/exchange-online/using-hybrid-configuration-wizard-exchange-2010-service-pack-2-part2.html
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please
    make sure that you completely understand the risk before retrieving any suggestions from the above link.
    Regards,
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Winnie Liang
    TechNet Community Support

  • How to download a file version from office 365 using csom

    I need to download an older file version from office 365 and get the data into a byte array. I have no trouble downloading the latest version with File.OpenBinaryStream() and I have no trouble loading the previous file versions with File.Versions. But now
    I need to actually download an older version of the file and it seems the only way is to use File.OpenBinaryDirect. So I am creating a client context using my oAuth access token and providing the correct path, but I am getting a (401) Unauthorized
    error. Looking with Fiddler I can see that the call to OpenBinaryDirect is somehow trying to post to my file URL and the server is responding with 401.
    context = TokenHelper.GetClientContextWithAccessToken(SPHostUrl, AccessToken);
    FileInformation info = File.OpenBinaryDirect(context, "/" + _fileVersion.Url);  //throws 401
    //leading slash required otherwise ArgumentOutOfRangeException
    I have to be able to access the older file versions with my c# code -- I don't have a viable app without that ability -- any help urgently needed and greatly appreciated!

    Thank you SO much (Can't wait for the next release)!
    For anyone else who lands here, here's the code I ended up using:
    // VersionAccessUser and VersionAccessPassword are stored in web.config
    // web.Url is loaded via the clientContext
    // myVersion is the FileVersion I got from the file's Versions.GetById() method
    // probably a lot of ways to get hostUrl, it just needs to be https://yourdomain.sharepoint.com/
    // - I'm running my app from a subweb
    // I had trouble following the links to get the full MsOnlineClaimsHelper code
    // (the one on msdn.com was missing RequestBodyWriter, WSTrustFeb2005ContractClient,
    // and IWSTrustFeb2005Contract
    // so I've included the code I used here.
    string myVersionFullUrl = string.Format("{0}/{1}", web.Url, myVersion.Url);
    string userName = WebConfigurationManager.AppSettings.Get("VersionAccessUser");
    string strPassword = WebConfigurationManager.AppSettings.Get("VersionAccessPassword");
    string hostUrl = Regex.Replace(web.Url, "([^/]+//[^/]+/).*", "$1");
    MsOnlineClaimsHelper claimsHelper = new MsOnlineClaimsHelper(hostUrl, userName, strPassword);
    var client = new WebClient();
    client.Headers["Accept"] = "/";
    client.Headers.Add(HttpRequestHeader.UserAgent, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)");
    client.Headers.Add(HttpRequestHeader.Cookie, claimsHelper.CookieContainer.GetCookieHeader(new Uri(hostUrl)));
    var document = client.DownloadString(myVersionFullUrl);
    // These classes are needed to download old versions of files (see: http://social.msdn.microsoft.com/Forums/en-US/7746d857-d351-49cc-b2f0-496663239e02/how-to-download-a-file-version-from-office-365-using-csom?forum=sharepointdevelopment)
    // I cobbled this file from http://social.technet.microsoft.com/Forums/msonline/en-US/4e304493-7ddd-4721-8f46-cb7875078f8b/problem-logging-in-to-office-365-sharepoint-online-from-webole-hosted-in-the-cloud?forum=onlineservicessharepoint
    // and http://fredericloud.com/2011/01/11/connecting-to-sharepoint-with-claims-authentication/
    using Microsoft.IdentityModel.Protocols.WSTrust;
    using Microsoft.SharePoint.Client;
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Net;
    using System.Net.Security;
    using System.ServiceModel;
    using System.ServiceModel.Channels;
    using System.Text;
    using System.Web;
    using System.Xml;
    using System.Xml.Linq;
    namespace DPSiDoxAppWeb.Helpers
    /// <summary>
    /// Create a new contract to use for issue claims for the SharePoint requests
    /// </summary>
    [ServiceContract]
    public interface IWSTrustFeb2005Contract
    [OperationContract(ProtectionLevel = ProtectionLevel.EncryptAndSign,
    Action = "http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue",
    ReplyAction = "http://schemas.xmlsoap.org/ws/2005/02/trust/RSTR/Issue",
    AsyncPattern = true)]
    IAsyncResult BeginIssue(Message request, AsyncCallback callback, object state);
    Message EndIssue(IAsyncResult asyncResult);
    /// <summary>
    /// Implement the client contract for the new type
    /// </summary>
    public class WSTrustFeb2005ContractClient : ClientBase<IWSTrustFeb2005Contract>, IWSTrustFeb2005Contract
    public WSTrustFeb2005ContractClient(Binding binding, EndpointAddress remoteAddress)
    : base(binding, remoteAddress)
    public IAsyncResult BeginIssue(Message request, AsyncCallback callback, object state)
    return Channel.BeginIssue(request, callback, state);
    public Message EndIssue(IAsyncResult asyncResult)
    return Channel.EndIssue(asyncResult);
    /// <summary>
    /// Create a class that will serialize the token into the request
    /// </summary>
    class RequestBodyWriter : BodyWriter
    readonly WSTrustRequestSerializer _serializer;
    readonly RequestSecurityToken _rst;
    /// <summary>
    /// Constructs the Body Writer.
    /// </summary>
    /// <param name="serializer">Serializer to use for serializing the rst.</param>
    /// <param name="rst">The RequestSecurityToken object to be serialized to the outgoing Message.</param>
    public RequestBodyWriter(WSTrustRequestSerializer serializer, RequestSecurityToken rst)
    : base(false)
    if (serializer == null)
    throw new ArgumentNullException("serializer");
    _serializer = serializer;
    _rst = rst;
    /// <summary>
    /// Override of the base class method. Serializes the rst to the outgoing stream.
    /// </summary>
    /// <param name="writer">Writer to which the rst should be written.</param>
    protected override void OnWriteBodyContents(XmlDictionaryWriter writer)
    _serializer.WriteXml(_rst, writer, new WSTrustSerializationContext());
    public class MsOnlineClaimsHelper
    #region Properties
    readonly string _username;
    readonly string _password;
    readonly bool _useRtfa;
    readonly Uri _host;
    CookieContainer _cachedCookieContainer = null;
    DateTime _expires = DateTime.MinValue;
    #endregion
    #region Constructors
    public MsOnlineClaimsHelper(string host, string username, string password)
    : this(new Uri(host), username, password)
    public MsOnlineClaimsHelper(Uri host, string username, string password)
    _host = host;
    _username = username;
    _password = password;
    _useRtfa = true;
    public MsOnlineClaimsHelper(Uri host, string username, string password, bool useRtfa)
    _host = host;
    _username = username;
    _password = password;
    _useRtfa = useRtfa;
    #endregion
    #region Constants
    public const string office365STS = "https://login.microsoftonline.com/extSTS.srf";
    public const string office365Login = "https://login.microsoftonline.com/login.srf";
    public const string office365Metadata = "https://nexus.microsoftonline-p.com/federationmetadata/2007-06/federationmetadata.xml";
    public const string wsse = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";
    public const string wsu = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd";
    private const string userAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)";
    #endregion
    class MsoCookies
    public string FedAuth { get; set; }
    public string rtFa { get; set; }
    public DateTime Expires { get; set; }
    public Uri Host { get; set; }
    // Method used to add cookies to CSOM
    public void clientContext_ExecutingWebRequest(object sender, WebRequestEventArgs e)
    e.WebRequestExecutor.WebRequest.CookieContainer = getCookieContainer();
    //e.WebRequestExecutor.WebRequest.UserAgent = userAgent;
    // Creates or loads cached cookie container
    CookieContainer getCookieContainer()
    if (_cachedCookieContainer == null || DateTime.Now > _expires)
    // Get the SAML tokens from SPO STS (via MSO STS) using fed auth passive approach
    MsoCookies cookies = getSamlToken();
    if (cookies != null && !string.IsNullOrEmpty(cookies.FedAuth))
    // Create cookie collection with the SAML token
    _expires = cookies.Expires;
    CookieContainer cc = new CookieContainer();
    // Set the FedAuth cookie
    Cookie samlAuth = new Cookie("FedAuth", cookies.FedAuth)
    Expires = cookies.Expires,
    Path = "/",
    Secure = cookies.Host.Scheme == "https",
    HttpOnly = true,
    Domain = cookies.Host.Host
    cc.Add(samlAuth);
    if (_useRtfa)
    // Set the rtFA (sign-out) cookie, added march 2011
    Cookie rtFa = new Cookie("rtFA", cookies.rtFa)
    Expires = cookies.Expires,
    Path = "/",
    Secure = cookies.Host.Scheme == "https",
    HttpOnly = true,
    Domain = cookies.Host.Host
    cc.Add(rtFa);
    _cachedCookieContainer = cc;
    return cc;
    return null;
    return _cachedCookieContainer;
    public CookieContainer CookieContainer
    get
    if (_cachedCookieContainer == null || DateTime.Now > _expires)
    return getCookieContainer();
    return _cachedCookieContainer;
    private MsoCookies getSamlToken()
    MsoCookies ret = new MsoCookies();
    try
    var sharepointSite = new
    Wctx = office365Login,
    Wreply = _host.GetLeftPart(UriPartial.Authority) + "/_forms/default.aspx?wa=wsignin1.0"
    //get token from STS
    string stsResponse = getResponse(office365STS, sharepointSite.Wreply);
    // parse the token response
    XDocument doc = XDocument.Parse(stsResponse);
    // get the security token
    var crypt = from result in doc.Descendants()
    where result.Name == XName.Get("BinarySecurityToken", wsse)
    select result;
    // get the token expiration
    var expires = from result in doc.Descendants()
    where result.Name == XName.Get("Expires", wsu)
    select result;
    ret.Expires = Convert.ToDateTime(expires.First().Value);
    HttpWebRequest request = createRequest(sharepointSite.Wreply);
    byte[] data = Encoding.UTF8.GetBytes(crypt.FirstOrDefault().Value);
    using (Stream stream = request.GetRequestStream())
    stream.Write(data, 0, data.Length);
    stream.Close();
    using (HttpWebResponse webResponse = request.GetResponse() as HttpWebResponse)
    // Handle redirect, added may 2011 for P-subscriptions
    if (webResponse.StatusCode == HttpStatusCode.MovedPermanently)
    HttpWebRequest request2 = createRequest(webResponse.Headers["Location"]);
    using (Stream stream2 = request2.GetRequestStream())
    stream2.Write(data, 0, data.Length);
    stream2.Close();
    using (HttpWebResponse webResponse2 = request2.GetResponse() as HttpWebResponse)
    ret.FedAuth = webResponse2.Cookies["FedAuth"].Value;
    ret.rtFa = webResponse2.Cookies["rtFa"].Value;
    ret.Host = request2.RequestUri;
    else
    ret.FedAuth = webResponse.Cookies["FedAuth"].Value;
    ret.rtFa = webResponse.Cookies["rtFa"].Value;
    ret.Host = request.RequestUri;
    catch (Exception ex)
    return null;
    return ret;
    static HttpWebRequest createRequest(string url)
    HttpWebRequest request = HttpWebRequest.Create(url) as HttpWebRequest;
    request.Method = "POST";
    request.ContentType = "application/x-www-form-urlencoded";
    request.CookieContainer = new CookieContainer();
    request.AllowAutoRedirect = false; // Do NOT automatically redirect
    request.UserAgent = userAgent;
    return request;
    private string getResponse(string stsUrl, string realm)
    RequestSecurityToken rst = new RequestSecurityToken
    RequestType = WSTrustFeb2005Constants.RequestTypes.Issue,
    AppliesTo = new EndpointAddress(realm),
    KeyType = WSTrustFeb2005Constants.KeyTypes.Bearer,
    TokenType = Microsoft.IdentityModel.Tokens.SecurityTokenTypes.Saml11TokenProfile11
    WSTrustFeb2005RequestSerializer trustSerializer = new WSTrustFeb2005RequestSerializer();
    WSHttpBinding binding = new WSHttpBinding();
    binding.Security.Mode = SecurityMode.TransportWithMessageCredential;
    binding.Security.Message.ClientCredentialType = MessageCredentialType.UserName;
    binding.Security.Message.EstablishSecurityContext = false;
    binding.Security.Message.NegotiateServiceCredential = false;
    binding.Security.Transport.ClientCredentialType = HttpClientCredentialType.None;
    EndpointAddress address = new EndpointAddress(stsUrl);
    using (WSTrustFeb2005ContractClient trustClient = new WSTrustFeb2005ContractClient(binding, address))
    trustClient.ClientCredentials.UserName.UserName = _username;
    trustClient.ClientCredentials.UserName.Password = _password;
    Message response = trustClient.EndIssue(
    trustClient.BeginIssue(
    Message.CreateMessage(
    MessageVersion.Default,
    WSTrustFeb2005Constants.Actions.Issue,
    new RequestBodyWriter(trustSerializer, rst)
    null,
    null));
    trustClient.Close();
    using (XmlDictionaryReader reader = response.GetReaderAtBodyContents())
    return reader.ReadOuterXml();

  • HELP!! "remove render-blocking JavaScript" and "leverage browser caching"

    My Adobe Muse website, www.realtorindfw.com, (desktop version) was loading just fine until yesterday. Now it loads very slowly, I tried to reduce image size, thinking that might be the problem (even though it used to load incredibly fast even when the images were 4x larger, so I shouldn't have thought that). When that did not fix the problem I typed my site into Google's PageSpeed and found that the main issue is that I need to "remove render-blocking JavaScript" and "leverage browser caching."
    It appears the main problem is that the file, http://webfonts.creativecloud.com/…eue:n4:all;open-sans-condensed:n3:all.js, is apparently the render-blocking JavaScript that is causing everything else to be delayed, in that the images cannot load until this line is resolved and that can take up to a minute. From reading online, it looks like if I could move this line of code to the bottom, then it wouldn't hold everything else up, since no assets would be behind it. I obviously know nothing about coding though (which is why I use Muse). How can I go about resolving this render-blocking JavaScript issue?
    Also, the "leverage browser caching" issue is that some images don't have an expiration date associated with them. I don't believe this has anything to do with me and instead is some sort of Muse issue. Is there a way I can fix this?
    My page was loading just fine, until I randomly uploaded again and all these problems started. Please type my site into PageSpeed and look at the problems for the desktop version and see if you can figure out how this can be resolved. This is my business site, so obviously I am trying to get it fixed asap. I also discussed this with chat support and they said the best way to get it resolved would be to post it here. Thanks.

    Good question Tarran.."remove render-blocking JavaScript" and "leverage browser caching." I get this quite a lot on site test in google page speed. Which i am trying to learn about. Take onboard Zak dudes save image for web in photoshop.
    Like this is a big deal... If a client get there head around webmaster tools. As they should. And they see a red mark "remove render-blocking JavaScript" and "leverage browser caching." or content above the fold. What am i going to do?
    Is this a common web issue across browsers for all web builders. Is there a form on this?
    Tarran best of luck with business, just a suggestion when i scrolled to bottom of your site, which is a big page. I had know way to get back to menu, taken thats what i wanted to do. Put a couple of state buttons around. My hand was sore.
    Best of luck with muse it rocks.
    Padraig 

  • How do I add a dismissable notice to my (office 365) public website?

    Hi
    I have a public website and I want to add a small pop-up message that says something like "We have placed cookies on your computer to help make this website better. We use a Google Analytics script which sets cookies. More details can be found in our
    privacy policy. Click here to dismiss this message".
    Ideally this would appear at the top of the page and disappear when clicked.
    Does anyone know how I can do this? There are open source JavaScript's available but all seem to need html changes to the site and I don't think this can be done with the office 365 public website. I can't find anything relevant on the forums but I need
    to do this under EU law as it appears SharePoint uses a cookie and I also want to use google analytics.
    Any help appreciated.
    (this was originally posted on the office 365 forum and MS directed me here)

    hi,
    you can edit the master page for sharepoint online using the sharepoint designer 2013.
    you can add the google analytics and dismissal notice using javascript in master page.
    this link shows how to use sharepoint designer 2010 to change master page this is valid for sharepoint 2013 with office 365 online.
    https://support.office.com/en-in/article/Customize-a-master-page-to-brand-your-site-0a57b837-4c97-4af9-a088-fedf3dfd1dd5?CorrelationId=d0007b5a-c45c-4661-b5fd-4d75c148e2d5&ui=en-US&rs=en-IN&ad=IN
    http://www.sharepoint2013.me/Blog/Post/158/Edit-existing-master-page-in-SharePoint-2013
    Whenever you see a reply and if you think is helpful,Vote As Helpful! And whenever you see a reply being an answer to the question of the thread, click Mark As Answer

  • How can I download content of wiki pages from Office 365 online Sharepoint site using c#?

    How can I download content of wiki pages from Office 365 online Sharepoint site using c#?
    Ratnesh[MSFT]

    Hi,
    According to your post, my understanding is that you want to download content of wiki pages on SharePoint Online.
    If just for getting the text of the page, I suggest you convert page to PDF file first and then download the PDF file via a Visual Web Part as a Sandboxed solution.
    A sample about export HTML to PDF:
    http://hamang.net/2008/08/14/html-to-pdf-in-net/
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Patrick Liang
    TechNet Community Support

  • Can't activate Office 2011 for mac (downloaded from office 365 portal)

    Hello All,
    I've installed Office 2011 for mac which was downloaded from office 365 Portal. However, during installation process there was not a windows for activation (key or sign in method).
    Is there a way to force activation on Office 2011 for mac?
    Note: I've deleted office 365 com.microsoft.office.plist but i didn't get a windows for activation.
    MacbookPro Version 10.10.2
    Regards
    JO

    Hi,
    If you downloaded Office 2011 for Mac, you may not need a product key to activate it. Office 365 uses a new mechanism that the activation is based on your Office 365 Account instead of a product key.
    Anyway, in this forum we mainly discuss questions and feedbacks about Office for Windows, as your question is about Office for Mac, I suggest you post the question in Office for Mac forum:
    http://answers.microsoft.com/en-us/mac
    I've also noticed this question is actually more related to the activation, you may need to contact the local customer service to get more dedicated assistance:
    https://support.microsoft.com/gp/customer-service-phone-numbers/en-us?wa=wsignin1.0
    Regards,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Migrating from office 365 to OSX Server 2.2.1 Mail server.

    hi folks,
    I am considering setting up an OSX Server v 2.21 and using it as my main mail server at home, and migrating away from office 365, and using the OSX mail server as my main server. I have my own domain name, and i would be the only user of the mail server.
    I would be running this on a mac mini i7 with 16 GB ram.
    what anti virus / spam applications are there available for the mac mail server?
    thanks.

    The power in your computer is fine.  I was just trying to warn you that if any network requests come in the server configuration immediately priorises that higher than interacting with the user sitting that the keyboard.  Apps you are using may stutter until the network request has been answered.  Of course, if you don't have many network users and with a computer that powerful, it probably won't take the server long enough to answer the network request that you notice any problem.
    No webmail portal for mail, and no easy way to add one.  Just mail apps using POP, SMTP, etc..
    Here's the manual for OS X Server if you're interested:
    https://help.apple.com/advancedserveradmin/mac/10.8/

  • Useless World Minutes (from Office 365 subscriptio...

    Hello Skype,
    I got 60 world minutes each month from Office 365 subscription...which is nice...however, I have not been able to use a single minute?
    Issue?  Insufficient credit (!).
    Destination call?  SCB, a landline call to an international banking institution in the heart of HCM city, the biggest city in Vietnam...not a rural area, not a mobile phone...how so???

    The Office 365 signup page: http://www.skype.com/en/offers/office365/ has the supported countries clearly listed on the lower half of the page.  No further research is required.  This is the same list that appears under the properties of the World plan (in graphical flag form) on the Skype rates page when looking at the available plans for a particular country.  If the list was any shorter, it would be wrong.
    Call landlines and mobiles in: Canada, China, Guam, Hong Kong SAR, Puerto Rico, Singapore, Thailand, and United States.
    Call landlines only in: Andorra, Argentina, Australia, Austria, Belgium, Brazil, Brunei, Bulgaria, Chile, Colombia (excluding rural areas - LEX), Costa Rica, Croatia, Czech Republic, Denmark, Estonia, Finland, France, Germany, Greece, Guadeloupe, Hungary, Iceland, Indonesia (Jakarta only), Republic of Ireland, Israel, Italy, Japan, Korea, Latvia, Lithuania, Luxembourg, Malaysia, Malta, Mexico, Morocco, Netherlands, New Zealand, Norway, Panama, Paraguay, Peru, Poland, Portugal, Romania, Russia, Slovakia, Slovenia, South Africa, Spain, Sweden, Switzerland, Taiwan, Turkey, United Kingdom, and Venezuela.
    It is a 60 minute plan that adheres to 60 minutes available to those countries.  It isn't $60 worth of general credit.  I have not doubt restrictions in this form allow people to get the most amount of talk time and allows the promotion to be cost-limited through contracts allowing the promotion to exist.  

  • Migrate Sharepoint 2013 from office 365 to on premise

    The company management decide to move SharePoint 2013 from Office 365 to on premise. Are there any instructions or step to achieve this, or any recommended third party tools? Thanks
    Yee

    i think your best bet is 3rd party tool, their are alot of 3rd parties which support this migration. check the below post.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/d348f3a0-345f-4085-b72f-f51a31659485/migrate-from-sharepoint-online-to-on-premise-in-2013?forum=sharepointgeneral
    check this blog as well:
    http://blog.hametbenoit.info/Lists/Posts/Post.aspx?ID=369
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Is it possible to switch from Office 365 online user management to Active Directory after Exchange online migration?

    If we utilize the Cutover method to migrate from on-premise Exchange (2007) to Office 365, which to my understanding will hand over user management/authentication to Office 365 online during the process, is possible to later switch from Office 365 user management
    to Active Directory (synced to a future local domain, or even possibly via AD federation single sign-on)? If so, how difficult is this process and is there any documentation available?
    Asking this because the organization  I'm working for plans to upgrade (re-do actually) its entire infrastructure. There will be a completely brand new domain/AD set up that's totally unrelated to the old one. At the same time, we also plan to migrate
    all emails (previously hosted locally on Exchange 2007) to Office 365 and get rid of local exchange. Now because we will set up new domain, we do not want to carry over the older AD to the cloud, hence we will not use the "Staged Migration". 
    So the plan is to to use "Cutover" migration first, which means all authentications will become Office 365 managed. That's fine for now. But later, after we set up our new domain and AD controller etc, we'd like to have Exchange Online switch back
    to syncing with our new on-premise AD. We'd also like to consider the AD Federation Services if it's not too complicated to set up.
    Your advice on this would be greatly appreciated!

    In principle, you cannot sync back from the cloud AD to the on-prem, yet. But you can take advantage of the soft-matching mechanism once you have the new AD in place:
    http://support.microsoft.com/kb/2641663
    Be careful though, as the moment you turn on Dirsync, all the matching users in the cloud will have their attributes overwritten. A very good idea is to do an 'export' of the cloud AD first, using the WAAD module for PowerShell and the Get-MsolUser cmdlets,
    which you can then use to compare or import data in the new on-prem AD. Some links:
    http://technet.microsoft.com/en-us/library/hh974317.aspx
    http://msdn.microsoft.com/en-us/library/azure/dn194133.aspx

  • Sharepoint 2013 Public Facing Website With Managed Metadata Navigation on Office365 E3 Trial Online

    Warning: I am a complete novice in sharepoint
    I have subscribed to office365 online trial Enterprise edition to learn sharepoint
    I have created a Public facing Website
    Through the site-collection setting -> navigation created a new metadata group named navigation and chose it for global and current menu(I switched on the publishing service)
    Under the term Management I added two sub terms(for navigation group) with links to document and home.aspx
    The team site immediately showed the global menu with only two options(home and document) as needed
    Unfortunately the public facing site did not show any such options and instead showed a different menu(default one)
    I tried to add the navigation snippet to the master page and it showed the same default menu.
    The public site has no navigation option in Site setting either
    QUESTION: How can I get managed navigation in public facing site? Is it possible or it is not allowed?

    Hi,
    According to your post, my understanding is that you wanted to use the Managed Metadata Navigation in Public Website.
    Per my experience, we could not use the managed metadata navigation in public website, it is only available for the internal site collections.
    For more information:
    http://community.office365.com/en-us/forums/154/t/166500.aspx
    You can refer to the following article to know the public website and internal site collections on Office 365.
    http://blogs.sharepoint911.com/blogs/jennifer/Lists/Posts/Post.aspx?ID=76
    As this is the forum for the SharePoint server, , I’m not sure whether it supported managed metadata navigation now.
    I recommend you can post your question to the forum for SharePoint Online:
    http://community.office365.com/en-us/forums/154.aspx.
    More experts will assist you, then you will get more information relation to SharePoint Online.
    Thank you for your understanding and support.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • SharePoint Online Public Facing Website Issues/Limitations

    Hi,
    We would like to use SharePoint Online for a public facing website (we are using the intranet side already which works well) but have noticed a lot of issues trying to get it to work the way we want to. I have seen on the web that there are quite a few limitations
    from various blogs/forums with suggested work-arounds but none of them have worked thus far.
    Basically I need to make a call on whether or not SP Online will be able to meet the requirements or if we'll have to look at an alternative solution.
    E.g. 1) Document Libraries
    1.1) I've created a document library and exposed it through an app part on a public page. This seems to work fine for the most part when using PDF files but any Word/Excel documents want to open in OWA or, if forced, in the client application which then
    starts prompting for credentials. The requirement here is to have various documents available to the public to download and fill in. Is it possible to force all files within a document library, when clicked, to prompt to download/save the file?
    1.2) When clicking on the name of the document library that is displayed in the app part, it wants to open the document library itself which then redirects to the login page. The issue with this is that if a user goes down a level into a folder in the document
    library, they have to use the browser back button to go back up a level. Most users will click on the title though which doesn't lend well to a good user experience. Is there any way to prevent this and have the title link to the page with the app part or
    have some form of folder navigation present?
    E.g. 2) Calendars
    1.1) I have found a "work around" in changing the content type to Event for this to somewhat work but we need a calendar to be filterable by a certain category which doesn't seem possible when adding the calendar app part to a public page. If it
    is possible to display a view selector on the public page, that would suffice but it seems that adding the part to the page limits it to a pre-defined view.
    1.2) I also tried displaying it as a "list" instead of a calendar view but when trying to open a single item to see its contents, we are again redirected to the login screen. Is there any way around this?
    1.3) Using the same list approach at least shows the column titles but when trying to open the filter drop down I get "Cannot show the value of the filter. The field may not be filterable, or the number of items returned exceeds the list view threshold
    enforced by the administrator" which doesn't happen when logged in. Is this also by design or is it fixable somehow?
    1.4) The same issue applies for the title of the calendar whereby clicking on it directs the user to a login screen.
    I've tried numerous attempts at getting the above to work but basically if SP Online public facing websites are not meant to be more than simple content pages/brochure type sites then we'll have to use an alternative solution. If anyone else has encountered
    the same types of issues or figured out workarounds for them, I'd love to hear what they are!
    Kind regards,
    Rick

    Hi  ,
    According to your description, my understanding is that you want to customize the search result for displaying news pages with query string in your SharePoint Online.
    For  your issue, you can create custom search result template and modify the following code:
    <a href=”_#=ctx.CurrentItem.Path=#_”>
     _#=ctx.CurrentItem.Title=#_
     </a>
    For more information, you can refer to the blog:
    http://www.abelsolutions.com/totm/creating-customized-search-results-in-sharepoint-2013/
    http://sharepointfieldnotes.blogspot.com/2012/11/customizing-sharepoint-2013-search.html
    http://channel9.msdn.com/Events/SharePoint-Conference/2014/SPC322
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

Maybe you are looking for

  • QuickTime 7.7.1, Windows Vista, Internet Explorer, and .mpg files

    After updating QuickTime to 7.7.1, QuickTime runs whenever I click on a .mpg file in Internet Explorer, under Windows Vista. The last time this happened I had to go into QuickTime>Edit>Preferences>QuickTime Preferences>Browser>Mime Settings and unche

  • UnknownHostException when using well-known-addresses prevents startup

    We found an issue that seems like a bug in Coherence. We are using well-known-addresses instead of multicast server discovery. Everything worked great, until one of the servers that used to be in the list was removed from DNS. We are no longer able t

  • About dataguard thread

    hai.. i visit this forums regularly.some of the people searching to post a new thread regarding to dataguard including me.we are searching for the dataguard forums. but i didnt get so far.why shouldnt u start one new forum regarding the dataguard? an

  • Resize photos in lion

    How do I resize photos below 4.7 jepg

  • Ipod Touch LCD Screen

    Does anybody know if the LCD touch screen on the latest version of the iPod touch is the same as the LCD screen used in the 3G iPhone?