✓ Copied to clipboard!
Peacock Engineering
Peacock Engineering
peacockengr.com
● SYSTEMS ONLINE — PEACOCKENGR.COM

Expert IT Support & Computer Repair

Fast, reliable tech solutions for homes and businesses. From virus removal to full network design — we keep your systems running at peak performance.

0Devices Repaired
0% Satisfaction
0Years Experience
0Hr Response Time

Comprehensive IT Solutions

From a single laptop to an entire enterprise network — we have the expertise to diagnose, repair, and optimize any technology challenge.

🖥️

Computer Repair

Hardware diagnostics, component replacement, OS reinstalls, data recovery, and performance upgrades for desktops and laptops.

🛡️

Cybersecurity

Virus removal, malware cleanup, firewall configuration, security audits, and employee security training.

🌐

Network Setup

Wired and wireless network design, router/switch configuration, VPN setup, and ongoing network management.

🎨

Design Services

Logo design, brand identity, website development, and digital marketing assets for your business.

☁️

Cloud Solutions

Microsoft 365, Google Workspace, cloud backup, migration services, and remote infrastructure management.

📞

Remote Support

Instant remote diagnostics and fixes without waiting. Most software issues resolved in under an hour.

Built for Speed & Reliability

We don't just fix problems — we prevent them. Our proactive approach means fewer downtime incidents and more uptime for you.

Customer Satisfaction98%
Same-Day Resolution85%
Network Uptime SLA99.9%
Data Recovery Success92%
🏆
Certified Techs
CompTIA A+, Network+, Security+
Express Service
Same-day onsite or remote
🔒
Secure & Private
Your data stays yours — always
💬
No Jargon
Plain-English explanations

Everything Your Tech Needs

Transparent pricing. No surprise fees. Professional work, guaranteed.

💻
Computer Repair
From $49

Full hardware and software diagnostics and repair for desktops, laptops, and all-in-ones. Mac and PC.

  • Hardware diagnostics & component replacement
  • OS reinstall (Windows, macOS, Linux)
  • Screen, keyboard & battery replacement
  • Performance optimization & cleanup
  • Startup & boot issue resolution
  • BIOS/UEFI troubleshooting
⚡ Express same-day service available
🛡️
Virus & Malware Removal
From $79

Complete malware eradication, security hardening, and prevention setup to keep you protected long-term.

  • Full system scan & threat elimination
  • Ransomware assessment & response
  • Antivirus setup & configuration
  • Browser cleanup & extension audit
  • Password manager setup
  • Security posture review
🔒 90-day re-infection guarantee
🌐
Network Setup & Repair
From $99

Home and business network design, installation, troubleshooting, and optimization. Wired & wireless.

  • Router & switch configuration
  • WiFi 6/6E access point deployment
  • VPN setup (site-to-site & remote)
  • Firewall rules & NAT config
  • Network speed & coverage audit
  • VLAN & segmentation design
📡 Structured cabling available
💾
Data Recovery
From $149

Professional data recovery from failed hard drives, SSDs, RAID arrays, and corrupted storage media.

  • HDD & SSD recovery (failed, deleted, formatted)
  • RAID 0/1/5/6 array reconstruction
  • NAS & external drive recovery
  • Corrupted filesystem repair
  • USB & flash drive recovery
  • Backup strategy consultation
💡 No recovery = no charge
☁️
Cloud & Microsoft 365
From $89

Cloud infrastructure setup, Microsoft 365 & Google Workspace deployment, and ongoing cloud management.

  • M365 tenant setup & user management
  • Exchange / Teams / SharePoint config
  • Cloud backup & disaster recovery
  • Azure & AWS basic provisioning
  • Email migration & archiving
  • SSO & MFA implementation
☁️ Monthly managed plans available
🎨
Design & Web Services
From $199

Professional branding and digital presence for your business. From logo to full website launch.

  • Logo & brand identity design
  • Website design & development
  • Business card & print design
  • Social media graphics
  • UI/UX mockups & prototypes
  • WordPress & CMS setup
🎨 Free initial consultation
🖨️
Printer & Peripherals
From $59

Printer setup, driver installation, network printing configuration, and peripheral troubleshooting.

  • Network & wireless printer setup
  • Driver conflicts & spooler issues
  • Multi-function printer config
  • Scanner, webcam & headset setup
  • Monitor calibration & setup
🖨️ Remote support available
📊
Managed IT Services
Monthly

Proactive IT management for small businesses. Ongoing monitoring, maintenance, and support — no surprises.

  • Remote monitoring & management (RMM)
  • Patch management & updates
  • Helpdesk support (unlimited tickets)
  • Monthly security reports
  • Asset & license tracking
  • Priority onsite response
📋 Custom quotes — contact us

Scripts, References & Troubleshooting

Handy IT resources, quick-reference commands, scripts, and troubleshooting guides for common issues.

🪟 System Info & Diagnostics
# System information
systeminfo
msinfo32
# Check Windows version
winver
ver
# Hardware details via WMI
wmic cpu get name,currentclockspeed
wmic memorychip get capacity,speed
wmic diskdrive get model,size,status
# Battery report (laptops)
powercfg /batteryreport
🔧 Repair & Maintenance
# Run as Administrator!
# System File Checker
sfc /scannow
# DISM repair (online)
DISM /Online /Cleanup-Image /RestoreHealth
# Check disk (schedule)
chkdsk C: /f /r
# Fix boot record
bootrec /fixmbr
bootrec /rebuildbcd
# Reset TCP/IP stack
netsh int ip reset
netsh winsock reset
Performance & Process
# List running processes
tasklist
tasklist /fi "imagename eq chrome.exe"
# Kill a process
taskkill /f /im notepad.exe
# Disk cleanup
cleanmgr
# Startup programs (PowerShell)
Get-CimInstance Win32_StartupCommand
# CPU/Memory top processes
Get-Process | Sort CPU -desc | Select -First 10
👤 User & Security Mgmt
# List local users
net user
# Add/modify user
net user username password /add
net localgroup administrators username /add
# Enable hidden Admin account
net user administrator /active:yes
# Flush DNS & renew IP
ipconfig /flushdns
ipconfig /release && /renew
# Windows Firewall status
netsh advfirewall show allprofiles
📋 PowerShell Quick Scripts
# Get all installed software
Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select DisplayName, DisplayVersion | Sort DisplayName
# Find large files (>100MB)
Get-ChildItem C:\ -Recurse -ErrorAction SilentlyContinue | Where Length -gt 100MB | Sort Length -desc | Select FullName,@{n='MB';e={[int]($_.Length/1MB)}} | Select -First 20
# Pending Windows Updates
Get-WindowsUpdate
# Export Wi-Fi passwords
netsh wlan show profiles
netsh wlan show profile name="WiFiName" key=clear
📁 File & Registry Ops
# Robocopy (backup/mirror)
robocopy C:\Source D:\Backup /MIR /LOG:backup.log
# Take ownership of folder
takeown /f C:\folder /r /d y
icacls C:\folder /grant administrators:F /t
# Backup registry key
reg export HKLM\Software\key backup.reg
# Search registry
reg query HKLM /f "searchterm" /s
# Environment variable
setx MY_VAR "value" /m
🔍 Network Diagnostics
# Ping with TTL
ping -t 8.8.8.8 # Win continuous
ping -c 4 8.8.8.8 # Linux
# Traceroute
tracert google.com # Windows
traceroute google.com # Linux
# DNS lookup
nslookup google.com
nslookup google.com 8.8.8.8 # Specific DNS
# Check open ports (local)
netstat -ano # Windows
ss -tulpn # Linux
🌍 IP Subnet Reference
CIDRSubnet MaskHostsUsage
/8255.0.0.016,777,214Class A
/16255.255.0.065,534Class B
/24255.255.255.0254Class C
/25255.255.255.128126Half C
/26255.255.255.19262Quarter C
/27255.255.255.22430Small
/28255.255.255.24014Very Small
/30255.255.255.2522P2P Link
/32255.255.255.2551Host
🔌 Common Ports Reference
PortProtocolService
20/21TCPFTP
22TCPSSH / SFTP
23TCPTelnet insecure
25TCPSMTP
53TCP/UDPDNS
67/68UDPDHCP
80TCPHTTP
110TCPPOP3
143TCPIMAP
443TCPHTTPS secure
445TCPSMB / Windows Shares
3389TCPRDP
3306TCPMySQL
5432TCPPostgreSQL
📡 Wireless Standards
StandardNameMax SpeedBand
802.11bWiFi 111 Mbps2.4 GHz
802.11gWiFi 354 Mbps2.4 GHz
802.11nWiFi 4600 Mbps2.4/5 GHz
802.11acWiFi 53.5 Gbps5 GHz
802.11axWiFi 6/6E9.6 Gbps2.4/5/6 GHz
802.11beWiFi 746 GbpsMulti-link
🧮 IP Subnet Calculator
🐧 System Commands
# System info
uname -a # kernel info
lsb_release -a # distro info
cat /etc/os-release
# Hardware
lscpu # CPU info
lsmem # Memory blocks
lspci # PCI devices
lsusb # USB devices
df -h # Disk space
free -h # RAM usage
uptime
📦 Package Management
# APT (Debian/Ubuntu)
sudo apt update && sudo apt upgrade -y
sudo apt install package
sudo apt remove package
apt list --installed
# YUM/DNF (RHEL/CentOS/Fedora)
sudo dnf update -y
sudo dnf install package
rpm -qa # List installed
# Snap / Flatpak
snap install package
flatpak install flathub com.app.name
👑 Users & Permissions
# Users
id # Current user info
whoami
cat /etc/passwd
sudo adduser username
sudo usermod -aG sudo username
# chmod permissions
chmod 755 file # rwxr-xr-x
chmod 644 file # rw-r--r--
chmod +x script.sh
chown -R user:group /dir
# sudo logs
grep sudo /var/log/auth.log
🔍 Process & Service Mgmt
# Process monitoring
top # or htop for better UI
ps aux | grep process
kill -9 PID
pkill -f processname
# Systemd services
sudo systemctl status nginx
sudo systemctl start|stop|restart nginx
sudo systemctl enable nginx # autostart
sudo systemctl list-units --type=service
# Logs
sudo journalctl -u nginx -f # follow logs
sudo journalctl -p err -b # errors this boot

Click any issue to expand troubleshooting steps:

🐌 Computer Running Slow
1
Open Task Manager (Ctrl+Shift+Esc) and check the Performance tab. Look for CPU, RAM, or Disk at 90–100% usage.
2
In Task Manager → Startup tab, disable unnecessary startup programs. High-impact items are the biggest offenders.
3
Run cleanmgr (Disk Cleanup) and clean up Windows Update files. Also check for junk in %temp% folder.
4
Check for malware: run a full scan with Windows Defender or Malwarebytes Free.
5
Check drive health: run chkdsk C: /f and check SMART status. A failing HDD causes extreme slowness — consider upgrading to an SSD.
6
Check RAM: if below 8GB for modern Windows 11, upgrading RAM is the single best performance improvement.
🌐 No Internet Connection
1
Check if other devices on the same network have internet. If yes, the issue is isolated to this device. If no, the router/modem or ISP is the problem.
2
Run the Windows network troubleshooter: Settings → System → Troubleshoot → Other troubleshooters → Internet Connections.
3
Open Command Prompt as Admin and run: ipconfig /flushdns, netsh int ip reset, netsh winsock reset, then restart.
4
Check that the correct DNS servers are set. Try Google (8.8.8.8 / 8.8.4.4) or Cloudflare (1.1.1.1 / 1.0.0.1).
5
Disable VPN or proxy. Check that no malware has altered the hosts file at C:\Windows\System32\drivers\etc\hosts.
6
Update or reinstall network adapter drivers. Check Device Manager for yellow exclamation marks on network devices.
🔵 Blue Screen of Death (BSOD)
1
Note the error code (e.g., IRQL_NOT_LESS_OR_EQUAL, MEMORY_MANAGEMENT). Search it for specific guidance.
2
Check Event Viewer: Windows Logs → System. Look for Critical errors around the time of the crash.
3
Run Memory Diagnostic: type mdsched in Run dialog. Schedule a test on next reboot to check for RAM faults.
4
Run sfc /scannow and DISM /Online /Cleanup-Image /RestoreHealth as Administrator to repair system files.
5
Check if a recent driver update caused the issue. Roll back the driver in Device Manager or use System Restore.
6
Check temperatures with HWiNFO64 or SpeedFan. Overheating CPU/GPU causes BSODs. Clean dust from vents and heatsinks.
🔒 Forgotten Windows Password
1
If using a Microsoft account, reset at account.microsoft.com using a phone number or alternate email.
2
For local accounts: boot to Windows Recovery (hold Shift + Restart). Go to Troubleshoot → Advanced → Startup Repair.
3
If you have another admin account: run net user [username] [newpassword] in an elevated Command Prompt.
4
Enable the hidden Administrator account from WinRE command prompt: net user administrator /active:yes, then reset your password from within Windows.
5
As a last resort, use a bootable tool like Hiren's BootCD PE or Offline NT Password & Registry Editor.
🖨️ Printer Not Working
1
Restart the Print Spooler service: open Services (services.msc), find "Print Spooler," and click Restart.
2
Clear the print queue: stop Print Spooler, delete all files in C:\Windows\System32\spool\PRINTERS, then restart the service.
3
Check that the printer is set as Default Printer and is Online (not showing as paused or offline).
4
Remove and reinstall the printer. Download the latest drivers directly from the manufacturer's website.
5
For network printers, verify the IP address hasn't changed. Set a static IP on the printer or create a static DHCP reservation on the router.
♻️ PC Won't Boot / Stuck on Logo
1
Hard reset: hold power button 10 seconds, unplug power, remove battery (laptops), wait 30 seconds, then power back on.
2
Boot into Safe Mode: interrupt startup 3 times to trigger WinRE, then Troubleshoot → Advanced → Startup Settings → Enable Safe Mode.
3
Run Startup Repair: WinRE → Troubleshoot → Advanced Options → Startup Repair.
4
In WinRE command prompt: bootrec /fixmbr, bootrec /fixboot, bootrec /rebuildbcd.
5
Check if a recent Windows Update caused the issue. Use System Restore from WinRE to roll back.
6
Test RAM by removing one stick at a time. Test storage with a bootable diagnostic tool (e.g., Memtest86, SeaTools).
🧠 CPU Reference
GenerationIntelAMDNode
2024 LatestCore Ultra 200 (Arrow Lake)Ryzen 9000 (Zen 5)3nm/4nm
2023Core Ultra 100 (Meteor Lake)Ryzen 7000 (Zen 4)7nm/10nm
202213th Gen (Raptor Lake)Ryzen 6000 (Zen 3+)10nm/6nm
202112th Gen (Alder Lake)Ryzen 5000 (Zen 3)10nm/7nm
202011th Gen (Tiger Lake)Ryzen 4000 (Zen 2)10nm/7nm
💾 RAM & Storage Types
TypeSpeedNotes
DDR42133–4800 MT/sMost common 2016–2023
DDR54800–8000+ MT/sCurrent gen, 2x bandwidth
LPDDR5X8533 MT/sMobile/ultrabook
SATA SSD~550 MB/sBudget upgrade from HDD
NVMe Gen 33,500 MB/sCommon high-perf
NVMe Gen 47,000 MB/sCurrent standard
NVMe Gen 514,000 MB/sLatest high-end
🔌 Connector & Cable Guide
ConnectorMax SpeedUse Case
USB 2.0480 MbpsKeyboards, mice
USB 3.2 Gen 15 GbpsDrives, hubs
USB 3.2 Gen 210 GbpsFast drives
USB4 / TB340 GbpsDocks, eGPU
Thunderbolt 440 GbpsPro peripherals
HDMI 2.148 Gbps4K/8K display
DisplayPort 2.180 GbpsHigh refresh displays
PCIe 4.0 x1632 GB/sGPU slot
PCIe 5.0 x1664 GB/sLatest GPUs
🌡️ Safe Temperature Ranges
ComponentIdleLoadMax
CPU (Desktop)30–45°C65–80°C95°C
CPU (Laptop)35–50°C75–90°C100°C
GPU30–45°C65–85°C90°C
NVMe SSD30–45°C55–70°C80°C
HDD25–35°C40–50°C60°C
Motherboard25–40°C40–60°C75°C
RAM30–40°C40–55°C70°C
🛡️ Security Hardening Checklist
🔐 Password Strength Guide
Type a password above to analyze it...
Best Practices:
✓ Minimum 16 characters for critical accounts
✓ Mix uppercase, lowercase, numbers, symbols
✓ Use a passphrase: Coffee!Rainy5Tuesday
✓ Never reuse passwords across sites
✓ Use a password manager (Bitwarden, 1Password)
🦠 Malware Types Reference
TypeBehaviorRisk
RansomwareEncrypts files, demands paymentCritical
TrojanDisguised malware, remote accessHigh
RootkitHides itself, kernel-levelHigh
KeyloggerRecords keystrokes / passwordsHigh
SpywareMonitors activity, exfil dataMedium
AdwareInjects ads, browser hijackMedium
WormSelf-replicates across networksHigh
BotnetRemote-controlled zombie PCMedium
PUPUnwanted bundled softwareLow
🔍 Windows Security Commands
# Quick malware scan (PS)
Start-MpScan -ScanType QuickScan
# Check Defender status
Get-MpComputerStatus
# List active connections
netstat -b # Shows app per connection
# Audit policy settings
auditpol /get /category:*
# Check AutoRun entries
reg query HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
# List open shares
net share

We're Ready to Help

Fast response guaranteed. Most issues resolved same day — remote or onsite.

Contact Peacock Engineering

Reach out any way that's convenient. We respond to all inquiries within 2 hours during business hours.

📞

Phone / Text

312-436-1620

📧

Email

info@peacockengr.com

📍

Location

Chicago, IL Metro Area

🕐

Business Hours

Mon–Fri 8am–7pm · Sat 9am–5pm

⚡ Emergency Support

Critical business system down? Call our emergency line. After-hours support available with a $49 emergency fee.

Submit a Support Request

Service Status Dashboard

Real-time uptime monitoring powered by Better Stack. All services tracked 24/7.

🔗 peacockengr.betteruptime.com ↗
All Services Operational
Last checked: Loading...
View Full Report ↗
// Monitored Services
home.inwood.cloud
Operational
90-day uptime99.97%
inwood.peacock.computer
Recovering
90-day uptime58.94%
RBYA.org
Operational
90-day uptime99.99%
benstef.com
Operational
90-day uptime99.99%
peacockengr.com
Operational
90-day uptime100%
kenb2b.com
Operational
90-day uptime100%
kingdomenterprisenetwork.org
Operational
90-day uptime99.73%
magnumauto.net
Operational
90-day uptime100%
Zoom Meeting (AWS Amplify)
Operational
90-day uptime96.21%
// Live Status Page
peacockengr.betteruptime.com
open ↗
Monitoring by Better Stack