Hi Jason,
Please refer the below PowerShell script to rotate multiple images in a specific folder:
--------------------------------------------------------------------------------
$path = "FOLDER PATH" #target directory
[System.Reflection.Assembly]::LoadWithPartialName("System.Drawing")
Get-ChildItem -recurse ($path) -include @("*.png", "*.jpg") |
ForEach-Object {
$image = [System.Drawing.image]::FromFile( $_ )
$image.rotateflip("Rotate90FlipNone")
$image.save($_)
}
--------------------------------------------------------------------------------
Hope this will help.
Regards
Kaif