https://github.com/mrdatawolf/corefixes
checks for issues in core tools we use and attempts to fix them
https://github.com/mrdatawolf/corefixes
Last synced: 2 months ago
JSON representation
checks for issues in core tools we use and attempts to fix them
- Host: GitHub
- URL: https://github.com/mrdatawolf/corefixes
- Owner: mrdatawolf
- License: mit
- Created: 2024-01-31T20:20:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-08T17:32:28.000Z (2 months ago)
- Last Synced: 2025-04-08T18:29:26.029Z (2 months ago)
- Language: PowerShell
- Size: 67.4 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CoreFixes
checks for issues in core tools we use and attempts to fix them
# Script here
[Downlad here](https://github.com/mrdatawolf/CoreFixes/raw/main/coreFixes.ps1)
## 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.
# note you can not run this in the blue powershell console as admin, it will open multiple windows.