Skip to content

JayTwoLab/json-downloader-poweshell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

json-downloader-poweshell

Feature

  • It performs the function of downloading files from the following contents.
{
	"https://raw.githubusercontent.com/j2doll/json-downloader/master/README.md" : "README.md" ,
	"https://raw.githubusercontent.com/j2doll/json-downloader/master/LICENSE" : "LICENSE" 
}
  • ⚡ Performs the function of decompressing downloaded file(s)

Usage

1️⃣ How to use it in Windows Command Prompt

  • Only download files
powershell -ExecutionPolicy Bypass -File main.ps1 json test.json
  • Unzip the file after downloading it
powershell -ExecutionPolicy Bypass -File main.ps1 7z test.json

2️⃣ How to use it in Powershell

  • Temporarily change policy in Powershell
Set-ExecutionPolicy Bypass -Scope Process -Force
  • Only download files
.\main.ps1 json .\test.json
  • Unzip the file after downloading it
.\main.ps1 7z .\test.json

License

  • json-downloader-poweshell is under MIT License.

Contact