Is there a way to determine which functions in a Visual Studio C# solution require Administrator Privileges -
i have been tasked figuring out way remove elevated privileges requirement c# application.
i'm not super familiar c# have access source code (multiple projects in 1 solution) , i'm using vs 2013 professional.
so far i've been going through code hand , referencing documentation online try determine elevated privilege requirements coming from.
is there way use visual studio (or piece of software) determine function calls forcing administrator privileges requirement?
not automatically, there may ways narrow things down quickly.
first if have test suites run these user without admin access , see ones if fail or prompt uac. should allow narrow down sections of code (i big fan of repurposing test suites btw). fail can corrected.
another option manual testing, again user without admin access. code can reviewed there problems , issues removed,
without automatic way of finding problems, should prepared post-sign-off bug fixes (so maybe having experimental phase) may good.
Comments
Post a Comment