Custom Python Script for Batch Exporting Layouts in .pdf Format
#change the single file output path and press enter, prepare for amazement ::::::D import arcpy aprx = arcpy.mp.ArcGISProject("CURRENT") for lyt in aprx.listLayouts(): print(" {0} ({1} x {2} {3})".format(lyt.name, lyt.pageHeight, lyt.pageWidth, lyt.pageUnits)) lyt.exportToPDF("your_file_paTH"+ "\\" + lyt.name + ".pdf") This was the script for those interested!