Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,3 +206,4 @@ The Custom EDR Solution is a powerful tool designed to provide comprehensive pro
---

Feel free to contribute and collaborate! If you have any questions about the modules or code, or if you'd like to understand what's going on, please contact me on [X.com](https://x.com/Havox03).

24 changes: 24 additions & 0 deletions scripts/Start-PlanqxServer.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# -------------------------------
# PlanqX Server PowerShell Launch Script
# -------------------------------

$installDir = "C:\Program Files\PlanqX\Server"
$exe = Join-Path $installDir "PlanqxServer.exe"

if (-not (Test-Path $exe)) {
Write-Host "ERROR: PlanqxServer.exe not found in $installDir" -ForegroundColor Red
exit 1
}

Write-Host "Starting PlanqX Server..."
Start-Process -FilePath $exe -WorkingDirectory $installDir

# Tail the latest log file for monitoring
$logDir = Join-Path $installDir "logs"
if (Test-Path $logDir) {
$latestLog = Get-ChildItem $logDir -File | Sort-Object LastWriteTime -Descending | Select-Object -First 1
if ($latestLog) {
Write-Host "Tailing latest log file: $($latestLog.Name)"
Get-Content $latestLog.FullName -Wait -Tail 20
}
}
16 changes: 16 additions & 0 deletions scripts/run-server.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
@echo off
REM -------------------------------
REM PlanqX Server Launch Script
REM -------------------------------

SET "INSTALL_DIR=C:\Program Files\PlanqX\Server"
cd /d "%INSTALL_DIR%"

IF EXIST PlanqxServer.exe (
echo Starting PlanqX Server...
start "PlanqX Server" "PlanqxServer.exe"
echo Server launched successfully.
) ELSE (
echo ERROR: PlanqxServer.exe not found in "%INSTALL_DIR%"
pause
)
323 changes: 0 additions & 323 deletions wesng/missingkbs.vbs

This file was deleted.