how can i print my movie list to me printer

i like to make a list of my movies but I don’t know how

Start PowerShell ISE on a PC. You may need to enable scripts so type in the bottom window: “Set-ExecutionPolicy -ExecutionPolicy unrestricted” without the quotes. Then in the upper window:

$MyMovie = “\Path…\Movies” #path to wherever your movies are
$A =get-childitem -Path $MyMovie -file -Exclude .srt -recurse -depth 2| select Name,length
$A| Export-Csv C:\Users*Your Name
\Desktop\movies.csv -append

the -depth 2 in the second line is the number of subfolders you have- I have 2 levels
The CSV will open in Excel with name and size (length) in bytes divide by 1048576 to get MB.

The PlexPy tool can also help you do this.
https://forums.plex.tv/discussion/169591/plexpy-another-plex-monitoring-program