Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Urgent: I need to remove redaction marks in bulk

New Here ,
Sep 22, 2022 Sep 22, 2022

I work in data protection and have run 500 pdfs through lists of words that I want redacted. I have found that I had my settings wrong and now lots of words that I do not want redacted had the red box redaction mark around them.

 

Please could someone let me know if there is a way to remove these marks in bulk rather than document by document? Thanks

TOPICS
How to
2.5K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
1 ACCEPTED SOLUTION
New Here ,
Sep 26, 2022 Sep 26, 2022

No helpful solutions found - fastest way I reversed this was by restoring previous version of each pdf file. Just did this by right clicking on them in file explorer. Took away the red boxes and now I can apply the right filters. Hope this at least helps a bit if anyone else has the same issue.

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Sep 26, 2022 Sep 26, 2022

No helpful solutions found - fastest way I reversed this was by restoring previous version of each pdf file. Just did this by right clicking on them in file explorer. Took away the red boxes and now I can apply the right filters. Hope this at least helps a bit if anyone else has the same issue.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 27, 2022 Sep 27, 2022
LATEST

You can use this code (for example, as a part of an Action) to remove all Redaction comments from a file:

 

this.syncAnnotScan();
var annots = this.getAnnots();
if (annots!=null) {
	for (var i=annots.length-1; i>=0; i--) {
		var annot = annots[i];
		if (annot.type=="Redact") annot.destroy();
	}
}
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines