Debugging
It to continue after inserting password
It just gets stuck on the debugger connection
I was on VMware after building COSMOS and then it gave me a warning saying that my USB devices could be used
Then COSMOS just crashed and VMware said you could restart it or shut it down so I restarted it and now COSMOS is stuck on 'Waiting for debugger connection.'
After restarting COSMOS Visual Studio crashed.
UserKit
You mention inserting a password do you mean a Windows user account control (UAC) prompt? Are you an administrator on your own machine or is it locked down?
My OS is password protected; meaning that you have to type a password and it will then allow it to run.
I have a feeling this is an issue with security. Can you try running visual studio as administrator?
Are you running within the VS debugger? Or manually in VM or physical
machine?
Op wo 5 jun. 2019 om 18:16 schreef Christopher Schaefer <
[email protected]>:
I have a feeling this is an issue with security. Can you try running
visual studio as administrator?—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
https://github.com/CosmosOS/Cosmos/issues/1182?email_source=notifications&email_token=AAA33XZZWIUIDUPZXUBRIWLPY7RHRA5CNFSM4HSIWMX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODXAHQXA#issuecomment-499152988,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AAA33X7ECARVUPYOJBNDKA3PY7RHRANCNFSM4HSIWMXQ
.

Look at the image.
If you want to stop your os showing " Waiting for debugger " message, follow these steps:
That's it!
It will not show waiting for debugger again.
I'll hope this works for you!
For more tips and tricks, visit hypercreeck.cf
*This is the solution for this!**
Look at the image.
If you want to stop your os showing " Waiting for debugger " message, follow these steps:
- First, open your project.
- Next, right-click the solution name/root of the solution tree.
- Then, click unload project.
- When the project is unloaded, right-click it and Edit .cosmos
- Then, find Element and set it to false!
That's it!
It will not show waiting for debugger again.
I'll hope this works for you!
For more tips and tricks, visit codebasha.cf
Thanks, dude.
@kilickerem066 Thanks! And why are you making an OS with C#? Try making an OS with C or C++. Cosmos converts the compiled IL code to x86 Assembly, which is _HUGE! When you make an OS with C or C++, it will be very small._
_The result of the following C# code is a massive 50.3 MB Assembly file._
```c#
namespace MyOS{
class Main {
public void main(){
// Nothing.
}
}
}
Whereas the result of the following C code is a small 935 Bytes!
```c
#include <kernel.S>
void main(){
// Nothing.
}
I hope this reply won't hurt you, I only said this for knowledge. And if you are making an OS for timepass or as a hobby project, COSMOS is best for you!
Also, visit my forum and blog. If you have time, you can also view some projects made by me at my Organisation at Github
@kilickerem066 Thanks! And why are you making an OS with C#? Try making an OS with C or C++. Cosmos converts the compiled IL code to x86 Assembly, which is _HUGE! When you make an OS with C or C++, it will be very small._
_The result of the following C# code is a massive 50.3 MB Assembly file._namespace MyOS{ class Main { public void main(){ // Nothing. } } }Whereas the result of the following C code is a small 935 Bytes!
#include <kernel.S> void main(){ // Nothing. }I hope this reply won't hurt you, I only said this for knowledge. And if you are making an OS for timepass or as a hobby project, COSMOS is best for you!
Also, visit my forum and blog. If you have time, you can also view some projects made by me at my Organisation at Github
Good idea, but how? I have 3 options in COSMOS: C#, F# and VB.NET.
@kilickerem066
Creating an operating system in C++ or C requires a lot of manual work, and you do not use COSMOS. A good place to start would be the OSDev Wiki.
Yeah! I also started from there! I have some tutorial videos on how to nake OS from scratch on my YouTube channel. Check out my channel! -> https://www.youtube.com/channel/UCKWKXQOMdb6xEJ1Gx7-340g?view_as=subscriber
@asiawin Thanks, and I also subscribed your channel
@asiawin But which video? There are 18 videos containing Windows 10 installation
@kilickerem066 Videos coming on the way! Keep subscribed to receive a notification when I post the OS tutorial series. I will first post a Simple Pyramid program in C++ then the OS tutorial series. Stay tuned.!
@asiawin Okay
Don't you forget to put "False" on
@fy1vo51 I did that. I'm not a c# os developer anymore. I am now making an OS with C and C++, its more easy than C#