Powershell 更改高级系统属性
Posted
技术标签:
【中文标题】Powershell 更改高级系统属性【英文标题】:Powershell to change Advance System Properties 【发布时间】:2019-02-12 22:14:54 【问题描述】:powershell 有没有办法在远程选项卡中更改高级系统设置?附上图片供参考。
【问题讨论】:
【参考方案1】:试试这个
[uint32]$atsc = 1
[uint32]$mfe = 1
$ts = Get-CimInstance -Namespace Root\CIMv2\TerminalServices -ClassName Win32_TerminalServiceSetting
Invoke-CimMethod -InputObject $ts -MethodName SetAllowTSConnections -Arguments @AllowTSConnections = $atsc; ModifyFirewallException = $mfe
【讨论】:
执行此操作时出错:Invoke-CimMethod : Invalid operation At line:4 char:1 + Invoke-CimMethod -InputObject $ts -MethodName SetAllowTSConnections -Arguments @ ... + ~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (Win32_TerminalS...= "CMPNAME"):CimInstance) [Invoke-CimMethod], CimException + FullyQualifiedErrorId : HRESULT 0x80041016,Microsoft.Management.Infrastructure.CimCmdlets.InvokeCimMethodCommand 您在哪个版本的 Windows 上运行?你能显示你正在使用的确切代码吗以上是关于Powershell 更改高级系统属性的主要内容,如果未能解决你的问题,请参考以下文章
出现“需要提供管理员权限来更改这些属性”时,该如何处理?怎样才能获得管理员权限呢?我的系统是win7
Microsoft Office setup找不到powershell
如何使用 powershell 从 Win32_DCOMApplicationSetting 类更改 AuthenticationLevel 属性?