When the domain of the knowledge articles is changed, articles won't be visible(or attachments of the articles won't be visble) to the users even though the users have access to them.Issue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Symptoms The users cannot see the knowledge articles that have attachments in knowledge homepage when the domain of those articles are changed. There will be a console error in the knowledge homepage as well. In some cases, knowledge articles will be visible but not the attachments. Release ALL Cause When the domain of the knowledge article containing the attachments is changed, the domain of the attachments will be the same as the previous domain. As the domain of the article and the attachment is different, the users will not be able to see the articles when the user searches for those articles from knowledge homepage Resolution In order to resolve the issue, the user has to manually change the domain of the attachments too. The customers can use the following script to change the domain of the attachments whose domain is different than knowledge article. var att = new GlideMultipleUpdate('sys_attachment'); att.addQuery('table_name', 'kb_knowledge'); att.addQuery('sys_domain', 'OLD_DOMAIN_SYS_ID') att.setValue('sys_domain', 'NEW_DOMAIN_SYS_ID_'); att.execute(); This script will move the attachments to the new domain. If the user wants to change the domain of the article, make sure to change the domain of the attachments as well using a business rule.