Windows 中有哪些用于设置自动化的工具?
我正在寻找某种类型的解决方案来快速启动并运行窗口开发环境。
目前,我们有一个大型安装文档(50 多页)用于进行安装,我希望尽可能自动化此过程。该文档包括更新环境变量、安装程序、下载源代码等内容。
我知道这些任务中的大多数可以通过批处理脚本完成,但这有点丑陋且需要大量工作。虽然虚拟化很好,但它不是我们的选择。
我想知道 Windows 上是否有任何东西可以让这个过程变得不那么乏味。像 Ruby's Chef 这样的东西会很棒。 Windows 上有类似的东西吗?
I'm looking for some type of solution for getting a window dev environment up and running quickly.
Currently we have a large setup document (50+ pages) for doing an install, and I'd like to automate this process as much as possible. The doc includes things like updating environment variables, installing programs, downloading source code, etc.
I know that the majority of these tasks can be done with a batch script, but that's kind of ugly and a lot of work. And while virtualization would be nice, it is not an option for us.
I'm wondering if anything exists for Windows that would make this less tedious. Something like Ruby's Chef would be great. Does anything like this exist for windows?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
好吧,有 Pkgmgr.exe 用于无人值守安装 Windows 组件,如果将其与 powershell 脚本混合使用,您应该能够获得所需的内容,但它不会像使用 Chef 那样容易。请查看此处的示例,了解如何使用 Pkgmgr.exe http://learn.iis.net/page.aspx/133/using-unattended-setup-to-install-iis-70/
Well there is Pkgmgr.exe for unattended installation of windows components if you mix it with a powershell script you should be able to get what you want but it wont be as easy as using Chef. Check here for an example of what you can do with Pkgmgr.exe http://learn.iis.net/page.aspx/133/using-unattended-setup-to-install-iis-70/
System Center 是 Microsoft 推出标准桌面的方式。请注意,这是相当重量级的。
System Center is the Microsoft way of pushing out standard desktops. It's quite heavyweight mind you.
您可以使用 VMWare 来实现此目的。只需创建一个基本机器映像,安装必要的东西,然后将人们指向虚拟机。
You could use VMWare for this. Just create a base machine image, with the necessary stuff installed, and point people at the VM.