I always found this popup showing up when I open Unity6
so what happen?
Or it just about permission of my PC?
I was used to open it with Administrator or Not
But the warning popup still show!
I don’t know what heppen, or how to disable it…
Or it just about permission of my PC?
I was used to open it with Administrator or Not
But the warning popup still show!
I don’t know what heppen, or how to disable it…
Didn’t you already make a thread about this? Warning dialog of Unity 6
Oh! I forgot it,
so how to fix, did you know?
Stop running it as administrator, run it as yourself.
You DO NOT run Unity as Administrator. I’m pretty sure we already tried to tell you how dangerous this can be. A simple script mistake, for instance when working with the file system, could easily corrupt your system, destroy your work, because running Unity as administrator means every single script runs as administrator.
This will happily run for instance, until Windows crashes for good:
var di = new DirectoryInfo("C:/Windows");
foreach (var file in di.GetFiles())
file.Delete();
You can give it a try if you don’t believe me. But don’t complain afterwards.
The issues go even deeper than just destroying your system though. Unity runs a host of developer tools, any of which could have a bug causing destructive behaviour or allowing a third party access to your computer - full administrative access! That’s just the kind of holy grail hackers scan for, as rare as these are to find, they’ll jump on it whenever they can.
And by hackers I mean those who take your system hostage, encrypt your work, and ask you to send them bitcoins.