Skip to content

Latest commit

 

History

History
30 lines (27 loc) · 1.47 KB

404.md

File metadata and controls

30 lines (27 loc) · 1.47 KB
layout title permalink
page
Resources
/404.html

{% include web/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 + " does not exist.

\n"; html += "

If it previously existed, then it has either moved or is no longer available.

\n"; html += "

Try the PCjs Explorer to find what you're looking for, or send email for assistance. Thanks!

\n"; } element.innerHTML = html; } </script>