Skip to content

Instantly share code, notes, and snippets.

@Candunc
Created May 21, 2019 16:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Candunc/339b315dcb894bb446b489151ae78297 to your computer and use it in GitHub Desktop.
Save Candunc/339b315dcb894bb446b489151ae78297 to your computer and use it in GitHub Desktop.
Downloads FTB modpacks using the provided manifest.json on Windows. Requires wget.exe.
Get-Content .\manifest.json | ConvertFrom-Json | select -expand files | foreach { wget.exe --content-disposition -P .\overrides\mods\ "https://minecraft.curseforge.com/projects/$($_.projectID)/files/$($_.fileID)/download" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment