Quick Start Guide
Get started with LabSync in 5 minutes.
1. Access the Dashboard
After starting the server, open your browser:
http://your-server-address:3000
If you are running the server locally, you can also use:
http://localhost:3000
2. Create Administrator Account
On first access, you'll see the setup wizard:
- Enter username (e.g.,
admin) - Enter password (at least 8 characters recommended)
- Click "Create Account"
- You'll be redirected to login page
3. Log In
Enter your credentials and click "Log In"
4. Install Agent
Option A: Windows Device
On the Windows machine:
# As Administrator
.\install-agent.ps1 -ServerUrl "http://your-server-address:5000"
Option B: Linux Device
On the Linux machine:
sudo ./install-linux.sh --server-url "http://your-server-address:5000"
5. Approve Device
Back in the dashboard:
- Navigate to "Devices"
- Find your newly registered device (status: "Pending")
- Click the device
- Click "Approve"
The device will appear as "Online" within 10 seconds.
6. Execute Your First Command
Test System Metrics
- Go to Dashboard
- Select your device
- Click "Collect Metrics"
- View the returned system information (CPU, RAM, Disk, etc.)
Run a Script
-
Go to "Scripts" page
-
Click "Create Script"
-
Enter title: "Test Script"
-
Select interpreter: PowerShell (Windows) or Bash (Linux)
-
Enter content:
# Windows example
Get-Date
Get-ComputerInfo# Linux example
date
uptime -
Click "Save"
-
Go to "Devices", select device
-
Click "Deploy Script", choose your script
-
Click "Execute"
-
View the output
7. Remote Desktop
- Go to Devices → Select device
- Click "Remote Desktop"
- Browser will stream the device screen
- Control with mouse and keyboard
Common Tasks
Create Device Group
- Go to "Devices" → "Groups"
- Click "New Group"
- Enter name: "Lab Computers"
- Add devices to the group
- Can now execute commands on entire group
Schedule Script Execution
- Create or select a script
- Go to "Scripts" → "Schedules"
- Click "New Schedule"
- Set cron expression:
0 9 * * MON(every Monday at 9 AM) - Select target group
- Enable
SSH Terminal
- Go to "Devices" → select device
- Click "SSH Terminal"
- Browser opens interactive shell
- Type commands as if you were SSH'd in
What's Next?
- Explore Features
- Read Architecture Overview
- Check Troubleshooting if issues arise