与 Youtube 一起运行 Firefox 会导致 Flash 播放器出现 UAC
我正在尝试在 Firefox(便携式)中播放 YouTube 视频,但是当我按如下方式运行它时, Flash 播放器会出现 UAC,询问您是否希望该程序对计算机进行更改。当我从命令行运行它时,它不会执行此操作。我怎样才能防止这种情况发生?我可能应该把这个问题作为一个单独的问题来问,但是有人能告诉我为什么它永远不会最小化吗?
Process proc = new Process();
ProcessStartInfo startInfo = new ProcessStartInfo(@"C:\FirefoxPortable\FirefoxPortable.exe", @"http://www.youtube.com/watch?v=1pSyYhRYeIM");
startInfo.WindowStyle = ProcessWindowStyle.Minimized;
proc.StartInfo = startInfo;
proc.Start();
I am trying to play a YouTube video in Firefox (portable), but when I run it as follows,
the UAC appears for the flash player asking if you want this program to make changes to the computer. When I run it from the commandline, it does not do this. How can I prevent this from happening? I probably should ask this as separate question, but can somebody tell why it never minimizes.
Process proc = new Process();
ProcessStartInfo startInfo = new ProcessStartInfo(@"C:\FirefoxPortable\FirefoxPortable.exe", @"http://www.youtube.com/watch?v=1pSyYhRYeIM");
startInfo.WindowStyle = ProcessWindowStyle.Minimized;
proc.StartInfo = startInfo;
proc.Start();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试以管理员身份运行您的应用程序。
另外,我喜欢这个视频,谢谢你的+1
Try running your application as administrator.
also, i love the video thanks for that +1