-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit caf3705
Showing
4 changed files
with
444 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# CUCO Installer & Fixer | ||
> This script allows the correction of the CUCO blocked machines by (re)installing the CUCO Agent according to the manufacturer/model of the equipment. | ||
> It is based on the official .bat installation script with some corrections for some machines where CUCO isn't preloaded on Windows and minor bugs | ||
|
||
## Instructions | ||
Make sure you are in a PC with at least Windows 10 and in this list | ||
https://cuco.inforlandia.com/bios-and-firmware-compatibility/ | ||
|
||
### Running from executable file | ||
1. Disable your antivirus temporarly if it is not Windows Defender since it can cause problems with CUCO | ||
2. Execute the "Cuco Installer & Fixer.exe" | ||
3. Accept the UAC Prompt | ||
4. Wait for the conclusion of the script and you are good to go | ||
|
||
### Running from source (if method 1 fails or you want to run from source) | ||
1. Install Python 3.11.1. During the installation make sure you check the "Add to Path" option to simplify your life | ||
2. Open a Command Prompt and execute the following commands to install all the dependencies | ||
python -m pip install -U setuptools pip | ||
python -m pip install -U wheel wmi httpx | ||
3. Disable your antivirus temporarly if it is not Windows Defender since it can cause problems with CUCO | ||
4. Execute the script by one of this ways: | ||
- Right Click it two times if you installed Python Launcher | ||
- Opening a Command Prompt and executing: | ||
python source.py | ||
5. Accept the UAC Prompt | ||
6. Wait for the conclusion of the script and you are good to go | ||
|
||
|
||
|
||
|
||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[tool.poetry] | ||
name = "cuco-installer-fix" | ||
version = "0.1.0" | ||
description = "CUCO Agent installer and fixer for Windows" | ||
authors = ["Miguel Lopes <[email protected]>"] | ||
readme = "README.md" | ||
packages = [{include = "cuco_inforlandia_installer_fix"}] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.11" | ||
WMI = "^1.5.1" | ||
httpx = "^0.23.1" | ||
|
||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" |
Oops, something went wrong.