使用 .net 以编程方式安装 Windows Media Player
如何使用 .net 以编程方式安装 Windows Media Player。
Windows 媒体播放器不是产品,它是 Windows 操作系统的功能。如果 .net 程序已关闭,如何使用它打开它。如有必要,还可以安装更高版本(即,如果 Windows Media Player 9 存在并打开。应升级到 Windows Media Player 11)。所有这些都可以通过编程来完成。
有哪些方法可以做到这一点......在 Windows 版本中 - 例如:xp、Vista、Windows 7 等。
How to programmatically install Windows Media player using .net.
Windows media player is not a Product, It is Feature of Windows operating system. How to Turn On using .net program if it already off. and also Installing Higher version if necessary (ie., if Windows media player 9 is Exists and Turn On.. It should be Upgraded to Windows media player 11). Can all these done by programmatically.
What are all the ways for doing so.. In Versions of Windows - eg : xp,Vista,Windows 7, etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过
Process.Start
执行 DISM 实用程序,如果您打开 cmd 提示符并运行此命令,这至少可以在 Windows 7 中运行:
请参阅此处查看完整文章:< a href="http://oxle.com/topic.asp?tid=6159" rel="nofollow">如何从命令行禁用/启用 Windows 7 功能
you could execute the
DISM
utility byProcess.Start
this works at least in windows 7, if you open a cmd prompt and run this:
see here for the full article: How to disable / enable Windows 7 features from a command line