Click here to Skip to main content
15,886,664 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
So I Made A vb.net application A little bit like windows but it is A windows application and I want to make It bootable

What I have tried:

I need help I have tried with an ms-dos cd and power iso
Posted
Updated 17-Jul-21 8:50am

You cannot make a VB application bootable, and even if you could, a MSDOS CD would not help in the slightest.
VB depends on the .NET Framework, which in turn depends on the operating system - i.e. Windows - to provide "lower level" support for you actual devices.

Why would you think that you could do that? About the closest you could get is Kiosk mode: What is kiosk mode (Windows assigned access)? - Definition from WhatIs.com[^]
 
Share this answer
 
If you can live with the limitations (no GUI or Forms), you could create a Windows Service and set the startup type to automatic.
See: Tutorial: Create a Windows service app | Microsoft Docs[^]
Windows Services can be dangerous for beginners, so it is best to write a Console application first, test that thoroughly and then use the tested code for a service.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900