Total Addressable Market analysis, real sales tracking, growth rate modeling, and 12-month revenue forecasting — powered by your pitch deck data.
Enter total units sold for each month. Leave blank to skip.
Set monthly price and included usage limits for each service. Cortex calculates your margin.
Copy-paste these into PowerShell (Windows) or Terminal (Mac/Linux) to install, manage, and uninstall VP3 Cortex.
# Download and install VP3 Cortex (Windows) cd $env:USERPROFILE\Desktop mkdir VP3 -Force | cd Invoke-WebRequest -Uri "https://vp3.me/vp3-runtime-v101.zip" -OutFile "vp3-runtime-v101.zip" Expand-Archive -Path "vp3-runtime-v101.zip" -Destination "." -Force .\VP3.bat
# Download and install VP3 Cortex (Mac/Linux) cd ~/Desktop mkdir -p VP3 && cd VP3 curl -L "https://vp3.me/vp3-runtime-v101.zip" -o vp3-runtime-v101.zip unzip -o vp3-runtime-v101.zip chmod +x vp3.sh && ./vp3.sh
# Windows .\VP3.bat # Mac/Linux ./vp3.sh
# Windows (PowerShell) Get-Process chrome -ErrorAction SilentlyContinue | Stop-Process -Force Get-Process node -ErrorAction SilentlyContinue | Stop-Process -Force # Mac/Linux pkill -f "vp3-home" pkill -f "chrome.*vp3"
# Kill Chrome + Node processes first Get-Process chrome -ErrorAction SilentlyContinue | Stop-Process -Force Start-Sleep -Seconds 2 Get-Process node -ErrorAction SilentlyContinue | Stop-Process -Force Start-Sleep -Seconds 1 # Remove VP3 data folder (Cortex profile, config, icon) Remove-Item -Recurse -Force "$env:USERPROFILE\.vp3" -ErrorAction SilentlyContinue # Remove desktop & start menu shortcuts Remove-Item -Force "$env:USERPROFILE\Desktop\VP3 Cortex.lnk" -ErrorAction SilentlyContinue Remove-Item -Force "$env:APPDATA\Microsoft\Windows\Start Menu\Programs\VP3 Cortex.lnk" -ErrorAction SilentlyContinue # Verify if (Test-Path "$env:USERPROFILE\.vp3") { Write-Host "Some files still locked. Reboot and re-run." -ForegroundColor Yellow } else { Write-Host "[VP3] Clean complete. Run VP3.bat to reinstall." -ForegroundColor Green }
# Kill processes pkill -f "vp3-home" 2>/dev/null pkill -f "chrome.*vp3" 2>/dev/null sleep 2 # Remove VP3 data rm -rf ~/.vp3 rm -f ~/Desktop/VP3\ Cortex.desktop echo "[VP3] Clean complete. Run ./vp3.sh to reinstall."
# Windows (PowerShell) Get-Process node -ErrorAction SilentlyContinue | Select-Object Id, ProcessName Test-NetConnection localhost -Port 3077 | Select-Object TcpTestSucceeded # Mac/Linux lsof -i :3077 curl -s http://localhost:3077/health
# Navigate to your VP3 folder and download latest cd "$env:USERPROFILE\Desktop\VP3" Invoke-WebRequest -Uri "https://vp3.me/vp3-runtime-v101.zip" -OutFile "vp3-runtime-v101.zip" Expand-Archive -Path "vp3-runtime-v101.zip" -Destination "." -Force Write-Host "[VP3] Updated. Run VP3.bat to launch." -ForegroundColor Green