WSSDecoder – Talk

From Bohemia Interactive Community
Jump to navigation Jump to search
(Exampe: Decode all WSS files in sounds_f)
 
No edit summary
 
Line 1: Line 1:
PowerShell P:\a3\sounds_f> get-childitem "" -Recurse | where {$_.extension -eq ".wss"} | Foreach {P:\Audio\WSSDecoder.exe $_.fullname}
How to decode recurse directories with powershell:
P:\a3\sounds_f> get-childitem "" -Recurse | where {$_.extension -eq ".wss"} | Foreach {P:\Audio\WSSDecoder.exe $_.fullname}

Latest revision as of 23:55, 17 February 2015

How to decode recurse directories with powershell: P:\a3\sounds_f> get-childitem "" -Recurse | where {$_.extension -eq ".wss"} | Foreach {P:\Audio\WSSDecoder.exe $_.fullname}