Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelallopes committed Dec 13, 2022
0 parents commit caf3705
Show file tree
Hide file tree
Showing 4 changed files with 444 additions and 0 deletions.
33 changes: 33 additions & 0 deletions README.md
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






185 changes: 185 additions & 0 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions pyproject.toml
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"
Loading

0 comments on commit caf3705

Please sign in to comment.