├── .gitattributes ├── .gitignore ├── LICENSE ├── PXEBoot.sln ├── PXEBoot ├── App.config ├── ConfigWindow.Designer.cs ├── ConfigWindow.cs ├── ConfigWindow.resx ├── Connector.cs ├── DHCPPacket.cs ├── Docs │ ├── URLs.txt │ ├── iPXE.txt │ └── pxespec.pdf ├── Event Log View for Server.xml ├── Event.cs ├── Extensions.cs ├── Fox.ico ├── PXEBoot.csproj ├── PXEService.Designer.cs ├── PXEService.cs ├── PXEService.resx ├── Program.cs ├── ProjectInstaller.Designer.cs ├── ProjectInstaller.cs ├── ProjectInstaller.resx ├── Properties │ └── AssemblyInfo.cs ├── Sessions.cs ├── Settings.cs ├── TFTP.cs └── app.manifest └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/LICENSE -------------------------------------------------------------------------------- /PXEBoot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot.sln -------------------------------------------------------------------------------- /PXEBoot/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/App.config -------------------------------------------------------------------------------- /PXEBoot/ConfigWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/ConfigWindow.Designer.cs -------------------------------------------------------------------------------- /PXEBoot/ConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/ConfigWindow.cs -------------------------------------------------------------------------------- /PXEBoot/ConfigWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/ConfigWindow.resx -------------------------------------------------------------------------------- /PXEBoot/Connector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/Connector.cs -------------------------------------------------------------------------------- /PXEBoot/DHCPPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/DHCPPacket.cs -------------------------------------------------------------------------------- /PXEBoot/Docs/URLs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/Docs/URLs.txt -------------------------------------------------------------------------------- /PXEBoot/Docs/iPXE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/Docs/iPXE.txt -------------------------------------------------------------------------------- /PXEBoot/Docs/pxespec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/Docs/pxespec.pdf -------------------------------------------------------------------------------- /PXEBoot/Event Log View for Server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/Event Log View for Server.xml -------------------------------------------------------------------------------- /PXEBoot/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/Event.cs -------------------------------------------------------------------------------- /PXEBoot/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/Extensions.cs -------------------------------------------------------------------------------- /PXEBoot/Fox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/Fox.ico -------------------------------------------------------------------------------- /PXEBoot/PXEBoot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/PXEBoot.csproj -------------------------------------------------------------------------------- /PXEBoot/PXEService.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/PXEService.Designer.cs -------------------------------------------------------------------------------- /PXEBoot/PXEService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/PXEService.cs -------------------------------------------------------------------------------- /PXEBoot/PXEService.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/PXEService.resx -------------------------------------------------------------------------------- /PXEBoot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/Program.cs -------------------------------------------------------------------------------- /PXEBoot/ProjectInstaller.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/ProjectInstaller.Designer.cs -------------------------------------------------------------------------------- /PXEBoot/ProjectInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/ProjectInstaller.cs -------------------------------------------------------------------------------- /PXEBoot/ProjectInstaller.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/ProjectInstaller.resx -------------------------------------------------------------------------------- /PXEBoot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PXEBoot/Sessions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/Sessions.cs -------------------------------------------------------------------------------- /PXEBoot/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/Settings.cs -------------------------------------------------------------------------------- /PXEBoot/TFTP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/TFTP.cs -------------------------------------------------------------------------------- /PXEBoot/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/PXEBoot/app.manifest -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpesSARL/PXEBoot/HEAD/README.md --------------------------------------------------------------------------------