#1. get at http://kaioa.com/node/63 "inkscapec.exe" Install in Inkscape base folder. #2. Run the script in Powershell. If it does not run see Get-ExecutionPolicy. If restricted. Open Powershell as administrator and Set-ExecutionPolicy RemoteSigned. #cd .\Pictures; #Relative path to treat pictures. I did not to manage recursion with the following script. Get-ChildItem $Path | Where-Object{$_.extension -eq ".svg"} | foreach{$out= $_.Name.Split(".")[0] +".pdf"; &'C:\Program Files\Inkscape\inkscapec.exe' -A $out $_.Name;}