Advertisement
Wazanator

Find and Convert VTF's to PNG

Dec 28th, 2021
3,367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $output = "E:\SourceEngine\RawImages"
  2. $vtflib = "C:\Tools\vtfLib\bin\x86\VTFCmd.exe"
  3. Get-ChildItem  -Path "C:\Program Files (x86)\Steam" -Recurse -Filter *.vtf |
  4. ForEach-Object {
  5.     & $vtflib -file $_.FullName -output $output -exportformat "png"
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement