This utility enables automatic startup of your self-hosted FNLB application when Windows boots. It includes simple PowerShell scripts to register or unregister your app as a startup program.
install-autostart.ps1– Adds the FNLB app to Windows startup.uninstall-autostart.ps1– Removes the app from Windows startup.run-selfhost.ps1– Launches FNLB selfhosting application.
- Make sure you have Node.js installed and available in your system PATH.
- Place
install-autostart.ps1anduninstall-autostart.ps1in the same folder as yourindex.jsFNLB app. - Right-click
install-autostart.ps1and select Run with PowerShell.
🛡️ If you see an execution policy warning, run the following once in PowerShell:
Set-ExecutionPolicy -Scope CurrentUser RemoteSigned
- Right-click
uninstall-autostart.ps1→ Run with PowerShell - The FNLB app will no longer launch automatically with Windows.
- Official FNLB Self-Hosted GitHub:
github.com/Fortnite-LobbyBot/Self-Hosted
- Website: https://fnlb.net
- Status Page: https://status.fnlb.net
- Discord: https://discord.fnlb.net
- These scripts require no hardcoded paths — they automatically detect their current directory.
- The scripts launch
node index.jsusing the standardcmdshell in the same directory.
Perfect for self-hosters who want FNLB to run on boot without modifying startup folders or system config manually.