与 Youtube 一起运行 Firefox 会导致 Flash 播放器出现 UAC

发布于 2024-10-08 20:51:45 字数 465 浏览 1 评论 0原文

我正在尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人间不值得 2024-10-15 20:51:45

尝试以管理员身份运行您的应用程序。

另外,我喜欢这个视频,谢谢你的+1

Try running your application as administrator.

also, i love the video thanks for that +1

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文