layout | title | permalink |
---|---|---|
page |
Resources |
/404.html |
{% include highlights.html %}
<script> let element = document.getElementById("error"); if (element) { let html = ""; let pathname = window.location.pathname; let match = pathname.match(/^\/pubs\/pc\/reference\/microsoft\/kb\/Q([0-9]+)\/?$/); if (match) { let article = ("00000" + match[1]).slice(-6); let url = "https://jeffpar.github.io/kbarchive/kb/" + article.slice(0, 3) + "/Q" + match[1] + "/"; let heading = document.getElementById("pcjs-heading"); if (heading) heading.innerHTML = "KnowledgeBase Archive"; html += "The KB article previously at " + pathname + " is available in the Microsoft KnowledgeBase Archive.
\n\n"; } else { html += "Sorry, the page or resource at " + pathname + " has moved or may no longer be available.\n"; html += "Use the PCjs Explorer to find what you're looking for, or contact us for assistance. Thanks!
\n"; } element.innerHTML = html; } </script>