- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试从非提升过程开始提升过程,但是我还需要为具有管理凭据的用户提供用户名和密码。我已经尝试了"runas"
方法来进行海拔提升以及使用 list ,但是两者都会产生不同的错误。
例如,如果我这样做(不使用需要提升的 list ):
ProcessStartInfo info = new ProcessStartInfo(path);
info.UseShellExecute = false;
info.UserName = username;
info.Password = securePwd;
info.Domain = "MyDomain";
info.Verb = "runas";
var proc = Process.Start(info);
Win32Exception
,该操作说明需要提升。
UseShellExecute
设置为
false
(因为在这种情况下,两种方法都可以正常工作),但是我必须将其设置为false才能在其他用户帐户下启动该进程。
最佳答案
我很惊讶没有办法做到这一点,直到我在克里斯· jackson (Chris Jackson)的博客条目中找到它:
Why Can’t I Elevate My Application to Run As Administrator While Using CreateProcessWithLogonW?
You need a bootstrapper. Some process which will let you do the transition to the alternate user, which could be responsible for running the requireAdministrator application. So, you could design something like this:
Why don’t we just create the
ShellExecuteWithLogonW
API? I’ll never say never, and we might at some point. But today, the use cases for this APIs have been use cases where there has been an alternate design which is superior.The most common request is for people writing home-grown software deployment software, where they’d like to encode credentials right into the app and elevate their own process. The real problem here is not the lack of the API, it’s that you have admin credentials encoded in your app for the world to read.
ShellExecute
,这是唯一知道如何触发
同意对话框的解决方案。
关于.net - 使用不同的用户凭据启动另一个海拔高度的过程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9872764/
我正在寻找谷歌街景中每个像素离地面的高度。 我知道可以计算的几件事是: Pitch of a pixel Depth map of every pixel from camera 有一个javascr
我不知道这种方法是否最好,但我有以下问题: 我希望 RecyclerView 中的列表项(CardView)在单击按钮时进行动画处理,以便此按钮、此项内的其他一些 View 以及 CardView 的
我正在尝试使用经纬度和高度(海拔)计算两点之间的距离。 我使用 euklides 公式来计算距离: D=√((Long1-Long2)²+(Lat1-Lat2)²+(Alt1-Alt2)²) 我的点是
我有一个奇怪的错误,我的 viewpager fragment 中没有显示“海拔”属性。 我尝试在 fragment 的 onCreateView 方法中设置该属性(我还在 xml 文件中的正确位置设
可以确定一个人在哪里,即他在走路吗?他在电梯里吗?或者他正在爬楼梯? 使用 android 的加速度计或有任何其他方法可以在 android 中计算加速度计吗? 最佳答案 您可以在配备加速度计和数字罗
什么时候使用android:elevation,什么时候使用app:elevation? 这两者有什么区别? 最佳答案 希望能帮上忙,举个例子吧: android:elevation attribu
我是一名优秀的程序员,十分优秀!