Question : Allowing users have admin permission to only designated server from Domain server farm

Hi Folks,

My specific question is,

I have 120 servers that has different roles,

some users such as web programmers must have administrator access to their web server.

which I had to give them "Domain Admin" access since they need to implement new components to the server and such other tasks,

but I don't want them to get an access to my Domain Controllers. because it is risking security breach of all the servers that is interconnected.

So i wanna restrict them to only having access to their server access (this will prevent the hackers hopping into servers such as billing servers and database servers)


is theres any procedures that i can perform this scenario?

(basically I disabled Local admins and using the domain admin with domain login)

Thanks

Answer : Allowing users have admin permission to only designated server from Domain server farm


1) In VS View -> Output Window (may be it is already open, but for safe side)
2) rewrite you code like this:

replace:

       catch (Exception ex)
        {

        }

with:

           catch (Exception ex)
           {
               System.Diagnostics.Debug.WriteLine(ex.StackTrace);
           }


and then see output window. you will see many lines but the last few lines will be referring the error causing.
Random Solutions  
 
programming4us programming4us