This file contains hidden or 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
| $ErrorActionPreference = "SilentlyContinue" | |
| $Host.UI.RawUI.WindowTitle = "Lemustech Company S.A. - Infinity Edition v16.0" | |
| if (-not ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { | |
| Clear-Host | |
| Write-Host "`n >>> SOLICITANDO PERMISOS DE SUPERUSUARIO... <<<" -ForegroundColor Cyan | |
| Start-Process powershell.exe "-NoProfile -ExecutionPolicy Bypass -File `"$PSCommandPath`"" -Verb RunAs | |
| Exit | |
| } |
This file contains hidden or 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
| #!/bin/bash | |
| BOLD='\033[1m' | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' | |
| CYAN='\033[0;36m' | |
| MAGENTA='\033[0;35m' | |
| YELLOW='\033[1;33m' | |
| BLUE='\033[0;34m' | |
| GRAY='\033[0;37m' |