Go to file
2024-09-08 02:35:56 +00:00
install/groups Add install/groups/programming.ps1 2024-09-07 19:19:45 +00:00
InstallApps.ps1 Update InstallApps.ps1 2024-09-07 19:08:42 +00:00
README.md Update README.md 2024-09-08 02:35:56 +00:00
wingetSetup.ps1 Update wingetSetup.ps1 2024-09-08 01:55:33 +00:00

How to use this repo.

  1. Download this repo by holding the Win + X key at the same time on your keyboard and clicking Terminal.

    • NOTE: you can use admin or non admin terminal. The difference will be weather you hit yes or no for every software installing. If you do not trust the script choose non admin terminal, if you do trust it use admin terminal (I use admin but I wrote the scripts). Either way please always read every script you choose to install.
  2. Install git with this command winget install --id Git.Git -e --source winget

    • winget install: The base command to install a package using Winget.
    • --id Git.Git: Specifies the unique identifier for the package you want to install. Git.Git is the identifier for the Git software.
    • -e: Stands for --exact. This flag ensures an exact match for the package ID specified, avoiding ambiguity if there are multiple packages with similar names.
    • --source winget: Specifies the source repository from which to install the package. winget is the default source (the official Windows Package Manager repository).
  3. Paste this: cd "$env:USERPROFILE\Downloads" ; git clone https://hmg.studio/HomeHosted/winget.git ; cd winget

    • Explanation:
      • cd "$env:USERPROFILE\Downloads": Changes the current directory to the user's Downloads folder.
      • git clone https://hmg.studio/HomeHosted/winget.git: Clones the repository from the specified URL into the Downloads folder.
      • cd winget: Changes the directory into the newly cloned repository folder named winget.