我将WS2012作为工作站操作系统运行。我想使用Windows备份将我的内部硬盘驱动器上的所有内容备份到我的外部硬盘驱动器。
Windows Server备份在本地备份面板中显示如下消息:
此计算机上未安装Windows备份。若要安装Windows备份,请从“服务器管理器”中选择“添加角色和功能”,然后按照向导选择Windows备份功能。
我已经使用这样的PowerShell脚本安装了这个特性:
Install-WindowsFeature Windows-Server-Backup你必须以管理员的身份运行它。作为用户,您将收到如下权限错误:
Install-WindowsFeature : You do not have adequate user rights to make changes to the target computer. If you are
already a member of the Administrators group on the target computer, the changes might have failed because of security
restrictions imposed by User Account Control. Try running Install-WindowsFeature in a Windows PowerShell session that
has been opened with elevated rights (Run as administrator).
At line:1 char:1
+ Install-WindowsFeature Windows-Server-Backup
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : PermissionDenied: (@{Vhd=; Credent...Name=localhost}:PSObject) [Install-WindowsFeature],
Exception
+ FullyQualifiedErrorId : Provider_UserIsNotAdmininistrator,Microsoft.Windows.ServerManager.Commands.AddWindowsFea
tureCommand作为管理员,您将收到如下输出:
Success Restart Needed Exit Code Feature Result
------- -------------- --------- --------------
True No Success {Windows Server Backup}输出指示不需要重新启动,但我已经重新启动以确定。
我是不是错过了巫师会帮我处理的东西?
发布于 2012-11-03 21:26:56
身份运行Windows备份
要使用该程序,只需安装Windows备份功能。
您必须以管理员身份运行Windows备份,否则会收到误导性消息。
备份计算机的所有数据通常是一项管理任务,因此程序应该要求管理权限是合理的。
这种备份方法对于工作站的设置非常方便。如果您在多用户环境中工作,或者没有管理权限,则可能需要使用用户级别的备份工具。
微软可以改进消息传递以避免混淆。例如,设备管理器在消息运行前向用户显示消息。消息如下:
您是作为标准用户登录的。可以在设备管理器中查看设备设置,但必须以管理员身份登录才能进行更改。
此消息表明设备管理器将其某些功能限制于用户。
https://serverfault.com/questions/445144
复制相似问题