Program running in administrator and guest account

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello!

Someone knows how I can solve it: I've installed my program in administrator
account for all users. But i've tried to run in guest account, my program
returned fatal error, and it didn't open... In the administrator account
works very well!

Someone know what's wrongs?!!

Thanks!
PS: My program runs on windows startup, it's registrated on msconfig.
 
I'm guessing the guest account does not have enough permissions to do
something your program is trying to do.

Since you didn't tell us what your program does or what the error is, it's
really anybody's guess.
 
Hello.

So, this is what is happening: My program is registrated in msconfig and
starts with windows...Ok... So, it stays waiting for a request UDP:

UdpClient listener = new UdpClient(DEFAULT_PORT);
IPEndPoint groupEP = new IPEndPoint(IPAddress.Any,
DEFAULT_PORT);
//Wait until receive something
byte[] bytes = listener.Receive(ref groupEP);

But, when my server calls the client, it crash!.. It doesn't get receive the
request.

The windows firewall is disabled and my application is in windows firewall's
exception list .

Do you know what is happening?


Thanks!!
 
Back
Top