我想自动化设置新电脑的过程,这包括下载和安装最新的 Windows 和 Office 更新; 从网络共享安装软件(某些软件需要重新启动,因此脚本需要能够登录并继续)将 PC 添加到域并设置本地用户帐户。
这可能吗?实现这一目标的最佳脚本语言是什么?
I would like to automate the process of setting up a new PC, this would include downloading and installing the latest windows and office updates; installing software from a network share (some software will require a restart so the script would need to be able to login and continue) adding PC to a domain and setting up local user accounts.
Is this possible and what would be the best scripting language to achieve this?
发布评论
评论(2)
查看 nLite。 允许您预先配置许多选项、更新和服务包等。
Check out nLite. Allows you to pre-configure many options, slipstream updates and service packs, etc.
企业 IT 中的标准方法是 Microsoft 部署工具包 (MDT)。 即使使用另一种操作系统部署技术(SCCM、BigFix、SpecOps...),Windows 映像通常也是在 MDT 中开发的。
没有比 Johan Arwidmark 的系列图书"部署基础知识"。 Windows Noob 上也有资料。
您可以集成 Chocolatey、BoxStarter 或 Ninite 用于在部署操作系统后进行应用程序管理。
The standard method in enterprise IT is the Microsoft Deployment Toolkit (MDT). Even if another OS deployment technique (SCCM, BigFix, SpecOps...) is used, the Windows images are often developed in MDT.
There is no better guide to getting started than Johan Arwidmark's book series "Deployment Fundamentals". There is also material at Windows Noob.
You could integrate Chocolatey, BoxStarter or Ninite for app management after the OS is deployed.