我正在运行一个安装 sharepoint 先决条件的 powershell 脚本。在安装服务器需要重新启动并且必须运行另一个脚本之后
有没有办法在powershell中自动化这个过程?
重启和恢复??
我正在运行一个安装 sharepoint 先决条件的 powershell 脚本。在安装服务器需要重新启动并且必须运行另一个脚本之后
有没有办法在powershell中自动化这个过程?
重启和恢复??
在重新启动之前,将第二个脚本添加到HKLM 下的 RunOnce 键。
New-ItemProperty -Path HKLM:\Software\Microsoft\Windows\CurrentVersion\RunOnce `
-Name "SPPreReq" -PropertyType String -Value "powershell -File C:\foo.ps1"
Restart-Computer