Version Affected: All
Description:
When clicking on the “Content and Localization” link on the overview tab you get the below error.
Resolution:
Delete the below file types in the Resource folder(s) on the realm(s) that are having issues.
-
Delete the following file types '*.sha1', '*.sha256', '*.md5'
-
If you have to do this on all realms you can run the below script to delete all the defined file types from the resource folder on all realms.
- Powershell script:
-
$Directory = 'D:\secureauth'
$folders =Get-ChildItem -Path $Directory -Recurse -include Resource -Depth 2$files = foreach ($folder in $folders) {
get-childitem -path $folder -Include ('*.sha1','*.sha256','*.md5') -Recurse | foreach { Remove-Item $_.FullName}
}
-
Special Considerations (optional as needed):
SecureAuth Knowledge Base Articles provide information based on specific use cases and may not apply to all appliances or configurations. Be advised that these instructions could cause harm to the environment if not followed correctly or if they do not apply to the current use case.
Customers are responsible for their own due diligence prior to utilizing this information and agree that SecureAuth is not liable for any issues caused by misconfiguration directly or indirectly related to SecureAuth products.
Comments
Please sign in to leave a comment.