Make sure you have Chocolatey installed on your system. Chocolatey serves as a package manager for Windows, streamlining the installation process of various software packages. You can confirm its installation status by accessing PowerShell and executing the command choco. If Chocolatey is not installed, execute the following command in PowerShell with administrative privileges:
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))By executing this command, Chocolatey will be installed on your system, enabling seamless software management.
Tip
To optimize the installation process and automate responses to prompts, you have the option to enable a feature within Chocolatey. This feature allows for automatic acceptance of prompts by typing "y." Execute the following command in PowerShell to activate this feature:
choco feature enable -n=allowGlobalConfirmationOnce the prerequisites are in place, you can initiate the installation process for the desired package using Chocolatey. Follow these steps meticulously:
- Open PowerShell as an administrator.
- Create a directory
C:\choco-packages\SAY10s-PCon your disk.
mkdir C:\choco-packages\SAY10s-PC- Download the SAY10s-PC.nupkg file from the repository and place it within the newly created directory (C:\choco-packages\SAY10s-PC).
- Execute the installation command in PowerShell to install the applications contained within the package. Utilize the following command:
choco install SAY10s-PC --version="1.0.0" --source="C:\choco-packages\SAY10s-PC;https://community.chocolatey.org/api/v2/"- There you go! You've successfully installed all basic apps.