├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ ├── codeql.yml │ └── msvc.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── wea-v1.2 └── weai │ ├── Readme.md │ ├── wea_installer_v1.2_RUN-AS-ADMIN.cmd │ └── wea_uninstaller_v1.2_RUN-AS-ADMIN.cmd ├── wea-v1.3 └── weai │ ├── Readme.md │ ├── wea_installer_v1.3_RUN-AS-ADMIN.cmd │ └── wea_uninstaller_v1.3_RUN-AS-ADMIN.cmd ├── weai-v1.0 └── weai │ ├── Readme.md │ └── weai.cmd └── weai-v1.1 └── weai ├── Readme.md ├── wea_installer_v1.1_RUN-AS-ADMIN.cmd └── wea_uninstaller_v1.1.cmd /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- 1 | name: Bug report 2 | description: Create a report to help us improve 3 | labels: bug 4 | body: 5 | - type: checkboxes 6 | attributes: 7 | label: Issue tracker rule checks (please read carefully) 8 | options: 9 | - label: "I have checked that my problem is not already reported" 10 | required: true 11 | - label: "I have checked that my problem is not already fixed" 12 | required: true 13 | 14 | - type: textarea 15 | attributes: 16 | label: Issue description 17 | description: Explain clearly and unambiguously what went wrong 18 | placeholder: | 19 | Tell us here about the bug/problem 20 | validations: 21 | required: true 22 | - type: textarea 23 | attributes: 24 | label: How to reproduce this issue? 25 | description: Try to explain what you did for the bug to occur. If applicable, add screenshots to help explain your problem. 26 | placeholder: | 27 | Step 1: ... 28 | Step 2: ... 29 | ... 30 | validations: 31 | required: true 32 | - type: textarea 33 | attributes: 34 | label: Logs 35 | description: 36 | placeholder: | 37 | [example_log.txt / example_log.md ...] 38 | validations: 39 | required: false 40 | 41 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: "YouTube" 4 | url: https://youtube.com/@infoyps 5 | about: My Youtube Channel 6 | 7 | - name: "GitHub" 8 | url: https://github.com/PSGitHubUser1 9 | about: My GitHub Page 10 | 11 | - name: "Discord Server" 12 | url: https://discord.gg/GYATqrtJSq 13 | about: My Discord Server 14 | 15 | - name: "Personal Discord" 16 | about: PSPlaysMC#3778 17 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: Feature Request 2 | description: Create a report to help us improve (search for duplicates first) 3 | labels: enhancement 4 | body: 5 | - type: textarea 6 | attributes: 7 | label: Feature description 8 | description: Explain clearly 9 | placeholder: | 10 | Tell us here about the feature 11 | validations: 12 | required: true 13 | - type: textarea 14 | attributes: 15 | label: Logs 16 | description: Provide logs [Optional] 17 | placeholder: | 18 | example_log.txt 19 | validations: 20 | required: false 21 | - type: checkboxes 22 | attributes: 23 | label: Issue tracker rule checks (please read carefully) 24 | options: 25 | - label: "I have checked that this feature is not already asked." 26 | required: true 27 | - label: "I have checked that this feature is not already implemented" 28 | required: true 29 | -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- 1 | # For most projects, this workflow file will not need changing; you simply need 2 | # to commit it to your repository. 3 | # 4 | # You may wish to alter this file to override the set of languages analyzed, 5 | # or to provide custom queries or build logic. 6 | # 7 | # ******** NOTE ******** 8 | # We have attempted to detect the languages in your repository. Please check 9 | # the `language` matrix defined below to confirm you have the correct set of 10 | # supported CodeQL languages. 11 | # 12 | name: "CodeQL" 13 | 14 | on: 15 | push: 16 | branches: [ "ProjectPublic" ] 17 | pull_request: 18 | # The branches below must be a subset of the branches above 19 | branches: [ "ProjectPublic" ] 20 | schedule: 21 | - cron: '23 15 * * 1' 22 | 23 | jobs: 24 | analyze: 25 | name: Analyze 26 | runs-on: ubuntu-latest 27 | permissions: 28 | actions: read 29 | contents: read 30 | security-events: write 31 | 32 | strategy: 33 | fail-fast: false 34 | matrix: 35 | language: [ ] 36 | # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] 37 | # Use only 'java' to analyze code written in Java, Kotlin or both 38 | # Use only 'javascript' to analyze code written in JavaScript, TypeScript or both 39 | # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support 40 | 41 | steps: 42 | - name: Checkout repository 43 | uses: actions/checkout@v3 44 | 45 | # Initializes the CodeQL tools for scanning. 46 | - name: Initialize CodeQL 47 | uses: github/codeql-action/init@v2 48 | with: 49 | languages: ${{ matrix.language }} 50 | # If you wish to specify custom queries, you can do so here or in a config file. 51 | # By default, queries listed here will override any specified in a config file. 52 | # Prefix the list here with "+" to use these queries and those in the config file. 53 | 54 | # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs 55 | # queries: security-extended,security-and-quality 56 | 57 | 58 | # Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java). 59 | # If this step fails, then you should remove it and run the build manually (see below) 60 | - name: Autobuild 61 | uses: github/codeql-action/autobuild@v2 62 | 63 | # ℹ️ Command-line programs to run using the OS shell. 64 | # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun 65 | 66 | # If the Autobuild fails above, remove it and uncomment the following three lines. 67 | # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. 68 | 69 | # - run: | 70 | # echo "Run, Build Application using script" 71 | # ./location_of_script_within_repo/buildscript.sh 72 | 73 | - name: Perform CodeQL Analysis 74 | uses: github/codeql-action/analyze@v2 75 | with: 76 | category: "/language:${{matrix.language}}" 77 | -------------------------------------------------------------------------------- /.github/workflows/msvc.yml: -------------------------------------------------------------------------------- 1 | # This workflow uses actions that are not certified by GitHub. 2 | # They are provided by a third-party and are governed by 3 | # separate terms of service, privacy policy, and support 4 | # documentation. 5 | # 6 | # Find more information at: 7 | # https://github.com/microsoft/msvc-code-analysis-action 8 | 9 | name: Microsoft C++ Code Analysis 10 | 11 | on: 12 | push: 13 | branches: [ "ProjectPublic" ] 14 | pull_request: 15 | branches: [ "ProjectPublic" ] 16 | schedule: 17 | - cron: '36 15 * * 6' 18 | 19 | env: 20 | # Path to the CMake build directory. 21 | build: '${{ github.workspace }}/build' 22 | 23 | permissions: 24 | contents: read 25 | 26 | jobs: 27 | analyze: 28 | permissions: 29 | contents: read # for actions/checkout to fetch code 30 | security-events: write # for github/codeql-action/upload-sarif to upload SARIF results 31 | actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status 32 | name: Analyze 33 | runs-on: windows-latest 34 | 35 | steps: 36 | - name: Checkout repository 37 | uses: actions/checkout@v3 38 | 39 | - name: Configure CMake 40 | run: cmake -B ${{ env.build }} 41 | 42 | # Build is not required unless generated source files are used 43 | # - name: Build CMake 44 | # run: cmake --build ${{ env.build }} 45 | 46 | - name: Initialize MSVC Code Analysis 47 | uses: microsoft/msvc-code-analysis-action@04825f6d9e00f87422d6bf04e1a38b1f3ed60d99 48 | # Provide a unique ID to access the sarif output path 49 | id: run-analysis 50 | with: 51 | cmakeBuildDirectory: ${{ env.build }} 52 | # Ruleset file that will determine what checks will be run 53 | ruleset: NativeRecommendedRules.ruleset 54 | 55 | # Upload SARIF file to GitHub Code Scanning Alerts 56 | - name: Upload SARIF to GitHub 57 | uses: github/codeql-action/upload-sarif@v2 58 | with: 59 | sarif_file: ${{ steps.run-analysis.outputs.sarif }} 60 | 61 | # Upload SARIF file as an Artifact to download and view 62 | # - name: Upload SARIF as an Artifact 63 | # uses: actions/upload-artifact@v3 64 | # with: 65 | # name: sarif-file 66 | # path: ${{ steps.run-analysis.outputs.sarif }} 67 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore this file. 2 | *.cmd 3 | *.ps1 4 | *.bat 5 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | infoyps13@gmail.com. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 InfoyTech 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | ![Button2](https://user-images.githubusercontent.com/90406016/216652311-b187c43b-ac0c-4b35-a26c-b10dc6c49123.png) 3 | ---- 4 | ![](https://img.shields.io/badge/Made%20by-PSGitHubUser1-blue) 5 | 6 | ## $ Requirements 7 | * This script requires `winget` to run this .cmd file successfully. 8 | * Windows 10 build 1709 is minimum to install `winget` 9 | * To check your build of Windows, press `Windows key + R` & type `winver` 10 | 11 | ## $ Download `winget` 12 | * Method 1: Search on MS Store "App Installer" or click [here](https://apps.microsoft.com/store/detail/app-installer/9NBLGGH4NNS1). *[Recommended]* 13 | * Method 2: Go [here](https://github.com/microsoft/winget-cli/releases) and install the latest release. *[Not recommended]* 14 | 15 | 16 | ---------- 17 | ![](https://img.shields.io/github/release-date/PSGitHubUser1/Windows-Essentials-Apps-Installer) 18 | ![](https://img.shields.io/github/v/release/PSGitHubUser1/Windows-Essentials-Apps-Installer?include_prereleases) 19 | 20 | ## This is a .cmd file. It installs: 21 | * Microsoft PowerToys 22 | * Python 23 | * OBS Studio 24 | * Blockbench 25 | * Notepad++ 26 | * 7-Zip 27 | * Audacity 28 | * GIMP 29 | * Visual C++ 2013, 2015-2019 Redistributables 30 | * FFmpeg 31 | * cURL 32 | * Java (Oracle, JDK 17) 33 | * VLC Media Player 34 | * DirectX, the setup file will be downloaded on Desktop, install it manually. 35 | ## These apps' codes are commented, if you want to install, just remove `::` from code 36 | * Twitter 37 | * Facebook 38 | * Clipchamp 39 | * Github Desktop 40 | * ShareX 41 | * Instagram 42 | * WingetUI 43 | * Phone Link / Your Phone 44 | * Microsoft PC Manager 45 | * Chocolatey 46 | * MPV 47 | * VS Code 48 | 49 | > ### * Uninstaller is available which will uninstall apps which are included in this .cmd file. (till v1.3 for now) 50 | > ### * The Uninstaller will updated, but not now... 51 | 52 | # Made by me [@PSGitHubUser1](https://github.com/PSGitHubUser1) 53 | #### This should not be distributed or published after tweaks. 54 | -------------------------------------------------------------------------------- /wea-v1.2/weai/Readme.md: -------------------------------------------------------------------------------- 1 | ## This is a .cmd file. It installs/uninstalls: 2 | 3 | * Microsoft PowerToys 4 | * VS Code 5 | * Clipchamp 6 | * OBS Studio 7 | * Blockbench 8 | * WingetUI 9 | * Microsoft PC Manager 10 | * Notepad++ 11 | * 7-Zip 12 | * Audacity 13 | * ShareX 14 | * GitHub Desktop 15 | * GIMP 16 | 17 | ## Made by me [@PSGitHubUser1](https://github.com/PSGitHubUser1) 18 | 19 | #### This should not be distributed or published after modifications. 20 | -------------------------------------------------------------------------------- /wea-v1.2/weai/wea_installer_v1.2_RUN-AS-ADMIN.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | title WEAI by PSGitHubUser1 4 | 5 | echo ========================================= 6 | echo WEAI, Made by InfoyTech/PSGitHubUser1 7 | echo ========================================= 8 | echo ***************************************************** 9 | echo -------------------------------------------------------------- 10 | echo * Not to be distributed or published after some modifications 11 | echo -------------------------------------------------------------- 12 | 13 | winget install 9P1J8S7CCWWT 14 | if %ERRORLEVEL% EQU 0 Echo [Clipchamp] 15 | winget install --id Microsoft.PowerToys 16 | if %ERRORLEVEL% EQU 0 Echo [Microsoft PowerToys] 17 | winget install --id JannisX11.Blockbench 18 | if %ERRORLEVEL% EQU 0 Echo [Blockbench] 19 | winget install --id Discord.Discord 20 | if %ERRORLEVEL% EQU 0 Echo [Discord] 21 | winget install --id SomePythonThings.WingetUIStore 22 | if %ERRORLEVEL% EQU 0 Echo [WingetUI] 23 | winget install --id Microsoft.PCManager 24 | if %ERRORLEVEL% EQU 0 Echo [Microsoft PC Manager] 25 | winget install --id Notepad++.Notepad++ 26 | if %ERRORLEVEL% EQU 0 Echo [Notepad++] 27 | winget install --id WhatsApp.WhatsApp 28 | if %ERRORLEVEL% EQU 0 Echo [WhatsApp] 29 | winget install --id 7zip.7zip 30 | if %ERRORLEVEL% EQU 0 Echo [7-Zip] 31 | winget install --id Audacity.Audacity 32 | if %ERRORLEVEL% EQU 0 Echo [Audacity] 33 | winget install --id ShareX.ShareX 34 | if %ERRORLEVEL% EQU 0 Echo [ShareX] 35 | winget install --id GitHub.GitHubDesktop 36 | if %ERRORLEVEL% EQU 0 Echo [GitHub Desktop] 37 | winget install --id GIMP.GIMP 38 | if %ERRORLEVEL% EQU 0 Echo [GIMP] 39 | winget install --id Microsoft.VisualStudioCode 40 | if %ERRORLEVEL% EQU 0 Echo [Microsoft VS Code] 41 | winget install --id OBSProject.OBSStudio 42 | if %ERRORLEVEL% EQU 0 Echo [OBS Studio] 43 | 44 | :halt 45 | pause 46 | -------------------------------------------------------------------------------- /wea-v1.2/weai/wea_uninstaller_v1.2_RUN-AS-ADMIN.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | title WEAI by PSGitHubUser1 4 | 5 | echo ========================================= 6 | echo WEAI, Made by InfoyTech/PSGitHubUser1 7 | echo ========================================= 8 | echo ***************************************************** 9 | echo -------------------------------------------------------------- 10 | echo * Not to be distributed or published after some modifications 11 | echo -------------------------------------------------------------- 12 | 13 | winget uninstall 9P1J8S7CCWWT 14 | if %ERRORLEVEL% EQU 0 Echo [Clipchamp] 15 | winget uninstall --id Microsoft.PowerToys 16 | if %ERRORLEVEL% EQU 0 Echo [Microsoft PowerToys] 17 | winget uninstall --id JannisX11.Blockbench 18 | if %ERRORLEVEL% EQU 0 Echo [Blockbench] 19 | winget uninstall --id Discord.Discord 20 | if %ERRORLEVEL% EQU 0 Echo [Discord] 21 | winget uninstall --id SomePythonThings.WingetUIStore 22 | if %ERRORLEVEL% EQU 0 Echo [WingetUI] 23 | winget uninstall --id Microsoft.PCManager 24 | if %ERRORLEVEL% EQU 0 Echo [Microsoft PC Manager] 25 | winget uninstall --id Notepad++.Notepad++ 26 | if %ERRORLEVEL% EQU 0 Echo [Notepad++] 27 | winget uninstall --id WhatsApp.WhatsApp 28 | if %ERRORLEVEL% EQU 0 Echo [WhatsApp] 29 | winget uninstall --id 7zip.7zip 30 | if %ERRORLEVEL% EQU 0 Echo [7-Zip] 31 | winget uninstall --id Audacity.Audacity 32 | if %ERRORLEVEL% EQU 0 Echo [Audacity] 33 | winget uninstall --id ShareX.ShareX 34 | if %ERRORLEVEL% EQU 0 Echo [ShareX] 35 | winget uninstall --id GitHub.GitHubDesktop 36 | if %ERRORLEVEL% EQU 0 Echo [GitHub Desktop] 37 | winget uninstall --id GIMP.GIMP 38 | if %ERRORLEVEL% EQU 0 Echo [GIMP] 39 | winget uninstall --id Microsoft.VisualStudioCode 40 | if %ERRORLEVEL% EQU 0 Echo [Microsoft VS Code] 41 | winget uninstall --id OBSProject.OBSStudio 42 | if %ERRORLEVEL% EQU 0 Echo [OBS Studio] 43 | 44 | :halt 45 | pause 46 | -------------------------------------------------------------------------------- /wea-v1.3/weai/Readme.md: -------------------------------------------------------------------------------- 1 | ## This is a .cmd file. It installs/uninstalls: 2 | 3 | * Microsoft PowerToys 4 | * Python 5 | * Twitter 6 | * Facebook 7 | * VS Code 8 | * Clipchamp 9 | * OBS Studio 10 | * Instagram 11 | * Blockbench 12 | * WingetUI 13 | * Phone Link / Your Phone 14 | * Microsoft PC Manager 15 | * Notepad++ 16 | * 7-Zip 17 | * Audacity 18 | * ShareX 19 | * GitHub Desktop 20 | * GIMP 21 | 22 | ## Made by me [@PSGitHubUser1](https://github.com/PSGitHubUser1) 23 | 24 | #### This should not be distributed or published after modifications. 25 | -------------------------------------------------------------------------------- /wea-v1.3/weai/wea_installer_v1.3_RUN-AS-ADMIN.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | title WEAI by PSGitHubUser1 4 | 5 | echo ========================================= 6 | echo WEAI, Made by InfoyTech/PSGitHubUser1 7 | echo ========================================= 8 | echo ***************************************************** 9 | echo -------------------------------------------------------------- 10 | echo * Not to be distributed or published after some modifications 11 | echo -------------------------------------------------------------- 12 | 13 | winget install 9P1J8S7CCWWT 14 | if %ERRORLEVEL% EQU 0 Echo [Clipchamp] 15 | winget install --id Microsoft.PowerToys 16 | if %ERRORLEVEL% EQU 0 Echo [Microsoft PowerToys] 17 | winget install --id JannisX11.Blockbench 18 | if %ERRORLEVEL% EQU 0 Echo [Blockbench] 19 | winget install --id Discord.Discord 20 | if %ERRORLEVEL% EQU 0 Echo [Discord] 21 | winget install --id SomePythonThings.WingetUIStore 22 | if %ERRORLEVEL% EQU 0 Echo [WingetUI] 23 | winget install --id Microsoft.PCManager 24 | if %ERRORLEVEL% EQU 0 Echo [Microsoft PC Manager] 25 | winget install --id Notepad++.Notepad++ 26 | if %ERRORLEVEL% EQU 0 Echo [Notepad++] 27 | winget install --id WhatsApp.WhatsApp 28 | if %ERRORLEVEL% EQU 0 Echo [WhatsApp] 29 | winget install --id 7zip.7zip 30 | if %ERRORLEVEL% EQU 0 Echo [7-Zip] 31 | winget install --id Audacity.Audacity 32 | if %ERRORLEVEL% EQU 0 Echo [Audacity] 33 | winget install --id ShareX.ShareX 34 | if %ERRORLEVEL% EQU 0 Echo [ShareX] 35 | winget install --id GitHub.GitHubDesktop 36 | if %ERRORLEVEL% EQU 0 Echo [GitHub Desktop] 37 | winget install --id GIMP.GIMP 38 | if %ERRORLEVEL% EQU 0 Echo [GIMP] 39 | winget install --id Microsoft.VisualStudioCode 40 | if %ERRORLEVEL% EQU 0 Echo [Microsoft VS Code] 41 | winget install --id OBSProject.OBSStudio 42 | if %ERRORLEVEL% EQU 0 Echo [OBS Studio] 43 | winget install 9PJPW5LDXLZ5 44 | if %ERRORLEVEL% EQU 0 Echo [Python] 45 | winget install 9WZDNCRFJ140 46 | if %ERRORLEVEL% EQU 0 Echo [Twitter] 47 | winget install 9WZDNCRFJ2WL 48 | if %ERRORLEVEL% EQU 0 Echo [Facebook] 49 | winget install 9NBLGGH5L9XT 50 | if %ERRORLEVEL% EQU 0 Echo [Instagram] 51 | winget install 9NMPJ99VJBWV 52 | if %ERRORLEVEL% EQU 0 Echo [Phone Link / Your Phone] 53 | 54 | :halt 55 | pause 56 | -------------------------------------------------------------------------------- /wea-v1.3/weai/wea_uninstaller_v1.3_RUN-AS-ADMIN.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | title WEAI by PSGitHubUser1 4 | 5 | echo ========================================= 6 | echo WEAI, Made by InfoyTech/PSGitHubUser1 7 | echo ========================================= 8 | echo ***************************************************** 9 | echo -------------------------------------------------------------- 10 | echo * Not to be distributed or published after some modifications 11 | echo -------------------------------------------------------------- 12 | 13 | winget uninstall 9P1J8S7CCWWT 14 | if %ERRORLEVEL% EQU 0 Echo [Clipchamp] 15 | winget uninstall --id Microsoft.PowerToys 16 | if %ERRORLEVEL% EQU 0 Echo [Microsoft PowerToys] 17 | winget uninstall --id JannisX11.Blockbench 18 | if %ERRORLEVEL% EQU 0 Echo [Blockbench] 19 | winget uninstall --id Discord.Discord 20 | if %ERRORLEVEL% EQU 0 Echo [Discord] 21 | winget uninstall --id SomePythonThings.WingetUIStore 22 | if %ERRORLEVEL% EQU 0 Echo [WingetUI] 23 | winget uninstall --id Microsoft.PCManager 24 | if %ERRORLEVEL% EQU 0 Echo [Microsoft PC Manager] 25 | winget uninstall --id Notepad++.Notepad++ 26 | if %ERRORLEVEL% EQU 0 Echo [Notepad++] 27 | winget uninstall --id WhatsApp.WhatsApp 28 | if %ERRORLEVEL% EQU 0 Echo [WhatsApp] 29 | winget uninstall --id 7zip.7zip 30 | if %ERRORLEVEL% EQU 0 Echo [7-Zip] 31 | winget uninstall --id Audacity.Audacity 32 | if %ERRORLEVEL% EQU 0 Echo [Audacity] 33 | winget uninstall --id ShareX.ShareX 34 | if %ERRORLEVEL% EQU 0 Echo [ShareX] 35 | winget uninstall --id GitHub.GitHubDesktop 36 | if %ERRORLEVEL% EQU 0 Echo [GitHub Desktop] 37 | winget uninstall --id GIMP.GIMP 38 | if %ERRORLEVEL% EQU 0 Echo [GIMP] 39 | winget uninstall --id Microsoft.VisualStudioCode 40 | if %ERRORLEVEL% EQU 0 Echo [Microsoft VS Code] 41 | winget uninstall --id OBSProject.OBSStudio 42 | if %ERRORLEVEL% EQU 0 Echo [OBS Studio] 43 | winget uninstall 9PJPW5LDXLZ5 44 | if %ERRORLEVEL% EQU 0 Echo [Python] 45 | winget uninstall 9WZDNCRFJ140 46 | if %ERRORLEVEL% EQU 0 Echo [Twitter] 47 | winget uninstall 9WZDNCRFJ2WL 48 | if %ERRORLEVEL% EQU 0 Echo [Facebook] 49 | winget uninstall 9NBLGGH5L9XT 50 | if %ERRORLEVEL% EQU 0 Echo [Instagram] 51 | winget uninstall 9NMPJ99VJBWV 52 | if %ERRORLEVEL% EQU 0 Echo [Phone Link / Your Phone] 53 | 54 | :halt 55 | pause 56 | -------------------------------------------------------------------------------- /weai-v1.0/weai/Readme.md: -------------------------------------------------------------------------------- 1 | ## This is a .cmd file. It installs/uninstalls: 2 | 3 | * Microsoft PowerToys 4 | * Blockbench 5 | * WingetUI 6 | * Microsoft PC Manager 7 | * Notepad++ 8 | * 7-Zip 9 | * Audacity 10 | * ShareX 11 | * GitHub Desktop 12 | * GIMP 13 | 14 | ## Made by me [@PSGitHubUser1](https://github.com/PSGitHubUser1) 15 | 16 | #### This should not be distributed or published after modifications. 17 | -------------------------------------------------------------------------------- /weai-v1.0/weai/weai.cmd: -------------------------------------------------------------------------------- 1 | winget install --id Microsoft.PowerToys 2 | winget install --id JannisX11.Blockbench 3 | winget install --id SomePythonThings.WingetUIStore 4 | winget install --id Microsoft.PCManager 5 | winget install --id Notepad++.Notepad++ 6 | winget install --id WhatsApp.WhatsApp 7 | winget install --id 7zip.7zip 8 | winget install --id Audacity.Audacity 9 | winget install --id ShareX.ShareX 10 | winget install --id GitHub.GitHubDesktop 11 | winget install --id GIMP.GIMP -------------------------------------------------------------------------------- /weai-v1.1/weai/Readme.md: -------------------------------------------------------------------------------- 1 | ## This is a .cmd file. It installs/uninstalls: 2 | 3 | * Microsoft PowerToys 4 | * VS Code 5 | * Blockbench 6 | * WingetUI 7 | * Microsoft PC Manager 8 | * Notepad++ 9 | * 7-Zip 10 | * Audacity 11 | * ShareX 12 | * GitHub Desktop 13 | * GIMP 14 | 15 | ## Made by me [@PSGitHubUser1](https://github.com/PSGitHubUser1) 16 | 17 | #### This should not be distributed or published after modifications. 18 | -------------------------------------------------------------------------------- /weai-v1.1/weai/wea_installer_v1.1_RUN-AS-ADMIN.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | title WEAI by PSGitHubUser1 4 | 5 | echo ================================================= 6 | echo Copyright (c) 2023 by InfoyTech/PSGitHubUser1 7 | echo ================================================= 8 | echo ::::::::::::::::::::::::::::::::::::::::::::::::::: 9 | echo -------------------------------------------------------------- 10 | echo * Not to be distributed or published after some modifications 11 | echo -------------------------------------------------------------- 12 | 13 | winget install --id Microsoft.PowerToys 14 | if %ERRORLEVEL% EQU 0 Echo Microsoft PowerToys installed successfully. 15 | winget install --id JannisX11.Blockbench 16 | if %ERRORLEVEL% EQU 0 Echo Blockbench installed successfully. 17 | winget install --id Discord.Discord 18 | if %ERRORLEVEL% EQU 0 Echo Discord installed successfully. 19 | winget install --id SomePythonThings.WingetUIStore 20 | if %ERRORLEVEL% EQU 0 Echo WingetUI installed successfully. 21 | winget install --id Microsoft.PCManager 22 | if %ERRORLEVEL% EQU 0 Echo Microsoft PC Manager installed successfully. 23 | winget install --id Notepad++.Notepad++ 24 | if %ERRORLEVEL% EQU 0 Echo Notepad++ installed successfully. 25 | winget install --id WhatsApp.WhatsApp 26 | if %ERRORLEVEL% EQU 0 Echo WhatsApp installed successfully. 27 | winget install --id 7zip.7zip 28 | if %ERRORLEVEL% EQU 0 Echo 7-Zip installed successfully. 29 | winget install --id Audacity.Audacity 30 | if %ERRORLEVEL% EQU 0 Echo Audacity installed successfully. 31 | winget install --id ShareX.ShareX 32 | if %ERRORLEVEL% EQU 0 Echo ShareX installed successfully. 33 | winget install --id GitHub.GitHubDesktop 34 | if %ERRORLEVEL% EQU 0 Echo GitHub Desktop installed successfully. 35 | winget install --id GIMP.GIMP 36 | if %ERRORLEVEL% EQU 0 Echo GIMP installed successfully. 37 | winget install --id Microsoft.VisualStudioCode 38 | if %ERRORLEVEL% EQU 0 Echo Microsoft VS Code installed successfully. 39 | 40 | pause 41 | -------------------------------------------------------------------------------- /weai-v1.1/weai/wea_uninstaller_v1.1.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | title WEAI by PSGitHubUser1 4 | 5 | echo ================================================= 6 | echo Copyright (c) 2023 by InfoyTech/PSGitHubUser1 7 | echo ================================================= 8 | echo ::::::::::::::::::::::::::::::::::::::::::::::::::: 9 | echo -------------------------------------------------------------- 10 | echo * Not to be distributed or published after some modifications 11 | echo -------------------------------------------------------------- 12 | 13 | winget uninstall --id Microsoft.PowerToys 14 | if %ERRORLEVEL% EQU 0 Echo Microsoft PowerToys uninstalled successfully. 15 | winget uninstall --id JannisX11.Blockbench 16 | if %ERRORLEVEL% EQU 0 Echo Blockbench uninstalled successfully. 17 | winget uninstall --id Discord.Discord 18 | if %ERRORLEVEL% EQU 0 Echo Discord uninstalled successfully. 19 | winget uninstall --id SomePythonThings.WingetUIStore 20 | if %ERRORLEVEL% EQU 0 Echo WingetUI uninstalled successfully. 21 | winget uninstall --id Microsoft.PCManager 22 | if %ERRORLEVEL% EQU 0 Echo Microsoft PC Manager uninstalled successfully. 23 | winget uninstall --id Notepad++.Notepad++ 24 | if %ERRORLEVEL% EQU 0 Echo Notepad++ uninstalled successfully. 25 | winget uninstall --id WhatsApp.WhatsApp 26 | if %ERRORLEVEL% EQU 0 Echo WhatsApp uninstalled successfully. 27 | winget uninstall --id 7zip.7zip 28 | if %ERRORLEVEL% EQU 0 Echo 7-Zip uninstalled successfully. 29 | winget uninstall --id Audacity.Audacity 30 | if %ERRORLEVEL% EQU 0 Echo Audacity uninstalled successfully. 31 | winget uninstall --id ShareX.ShareX 32 | if %ERRORLEVEL% EQU 0 Echo ShareX uninstalled successfully. 33 | winget uninstall --id GitHub.GitHubDesktop 34 | if %ERRORLEVEL% EQU 0 Echo GitHub Desktop uninstalled successfully. 35 | winget uninstall --id GIMP.GIMP 36 | if %ERRORLEVEL% EQU 0 Echo GIMP uninstalled successfully. 37 | winget uninstall --id Microsoft.VisualStudioCode 38 | if %ERRORLEVEL% EQU 0 Echo Microsoft VS Code uninstalled successfully. 39 | 40 | pause 41 | --------------------------------------------------------------------------------