Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrdatawolf/coresetup
Set of processes for a new system setup
https://github.com/mrdatawolf/coresetup
powershell windows winget
Last synced: 14 days ago
JSON representation
Set of processes for a new system setup
- Host: GitHub
- URL: https://github.com/mrdatawolf/coresetup
- Owner: mrdatawolf
- License: mit
- Created: 2023-11-27T20:18:08.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-11T23:31:14.000Z (about 1 month ago)
- Last Synced: 2024-12-12T00:26:06.960Z (about 1 month ago)
- Topics: powershell, windows, winget
- Language: PowerShell
- Homepage:
- Size: 159 KB
- Stars: 3
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CoreSetup
**Right-click here and select "Save link as..." to download the script.**[Download coreSetup PS1 version here](https://github.com/mrdatawolf/CoreSetup/raw/main/coreSetup.ps1)
[Download coreUpdate PS1 here](https://github.com/mrdatawolf/CoreSetup/raw/main/coreUpdate.ps1)
Uses winget to uninstall apps we don't want on systems.
Also uses winget to installs various apps we want.
Also updates applications if we want.
Also allows us to set default power options.
Get the latest version at https://github.com/mrdatawolf/CoreSetup**Because it's a powershell script you need to allow it to run on your system. If you don't know what this means then DO NOT USE this script.**
**Fully run the Windows and Dell updates before this!!!!!**
**Why? Because it needs the updates from windows update for winget and other sub-systems and the Dell apps will be removed.**
**To minimize issues - Open a powershell prompt first and type winget list. Answer yes.**## Common solutions for first runs
### If it fails saying scripts can't be run:
set-executionpolicy remotesigned
then Y when it asks how to change it.
### If it is just sitting on the winget update task
press y and enter. It is actually asking if you agree to the souce agreement terms. if you want to actually see the original prompt open a powershell window and do winget list instead.
### If it closes right away or you see a ExecutionPolicy error
1. Win10 Pro
* Set-ExecutionPolicy Unrestricted
2. Win11 Pro
* Set-ExecutionPolicy -Scope CurrentUser Unrestricted## You can also try
From (https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_signing?view=powershell-7.4):
To run an unsigned script, use the Unblock-File cmdlet or use the following procedure.
1. Save the script file on your computer.
2. Click Start, click My Computer, and locate the saved script file.
3. Right-click the script file, and then click Properties.
4. Click Unblock.