• Hi Guest!

    We are extremely excited to announce the release of our first Beta for VaM2, the next generation of Virt-A-Mate which is currently in development.
    To participate in the Beta, a subscription to the Entertainer or Creator Tier is required. Once subscribed, download instructions can be found here.

    Click here for information and guides regarding the VaM2 beta. Join our Discord server for more announcements and community discussion about VaM2.

Windows: Quick way to inventory your var downloads (looks & scenes)

downshift

New member
Joined
Jan 6, 2022
Messages
2
Reactions
3
If you're like me and have a huge collection of looks & scenes in a downloads folder, you probably wish you could see samples what you've downloaded.

This will scan all var files in a directory tree and extract the jpg from the \Saves\scene folder to a Samples folder. You'll be able to browse the thumbnails in the folder and usually find the look you want to add to VAM by matching the jpg filename to the var it came from.

Dependency: You'll need 7Zip (free).

Run this cmd with Powershell in your downloads folder,
Recommended method: Save this into samples.ps1 (in the downloads folder) and right-click --> "Run with Powershell"

If (!(test-path .\Samples)) {md .\Samples}; ls *.var -file -recurse | %{& 'C:\Program Files\7-Zip\7z.exe' e $_ -i!"Saves\scene\*.jpg" -o".\Samples" -r -aoa}
 
Thank you, this might become useful for some people!
 
Back
Top Bottom