JAKAMY Posted October 18 Share Posted October 18 Till it is added as a feature to set Default Clear logos to Autogenerated or repeating playlists, I use this PowerShell script to update them. You can use it to make your own auto update ones when you add a new playlist in the future and avoid the redundant copy paste This script find all folders in images/playlists containing a word like Canada and overwrite in the subfolder the source image: just open powershell ISE in windows and paste your adapted code since running .ps1 files is disabled by default: (you can use notepad++ to replace all source folder paths) ex: $sourceFile = "C:\LaunchBox\Images\Playlists\Canada.png" # Specify the path to your source file Get-ChildItem -Recurse -Directory -Filter "*Canada" | ForEach-Object { $clearLogoPath = Join-Path -Path $_.FullName -ChildPath "Clear Logo" if (Test-Path -Path $clearLogoPath) { Copy-Item -Path $sourceFile -Destination $clearLogoPath -Force } } Write-Output "Done." For all the regions clear logo in platform categories ex: $sourceFile = "C:\LaunchBox\Images\Platform Categories\Regions.png" # Specify the path to your source file Get-ChildItem -Recurse -Directory -Filter "*Regions" | ForEach-Object { $clearLogoPath = Join-Path -Path $_.FullName -ChildPath "Clear Logo" if (Test-Path -Path $clearLogoPath) { Copy-Item -Path $sourceFile -Destination $clearLogoPath -Force } } Write-Output "Done." Files attached as txt for copy paste and .ps1 for those who enabled running scripts Countries.ps1Countries.txtregions.ps1regions.txt Cheers NB: Autogenerated playlists don't create corresponding images folders till you select each generated country in Launchbox I use the great regions logos from RetroHumanoid and Yorrick36 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.