New-Item New-ItemProperty New-PSDrive New-Service Pop-Location Push-Location Remove-Item Remove-ItemProperty Remove-PSDrive Remove-Service Rename-Computer Rename-Item Rename-ItemProperty Resolve-Path Restart-Computer Restart-Service Resume-Service
使用Get-ItemProperty擷取Path專案的目前值。 加入新的值,並將它與 區隔開;。 搭配Set-ItemProperty指定的機碼、專案名稱和值來修改登錄專案。 PowerShell $value=Get-ItemProperty-PathHKCU:\Environment-NamePath$newpath=$value.Path +=";C:\src\bin\"Set-ItemProperty-PathHKCU:\Environment-NamePath-Value$new...
# 在远程计算机上获取注册表项Invoke-Command-ComputerName"RemoteComputer"-ScriptBlock{Get-ItemProperty-Path"HKLM:\Software\MyApp"}# 在远程计算机上设置注册表值Invoke-Command-ComputerName"RemoteComputer"-ScriptBlock{Set-ItemProperty-Path"HKLM:\Software\MyApp"-Name"Setting"-Value"NewValue"} 29. 安全性和权...
New-ItemProperty$testKey-name"Entry2"-value"123"-propertyTypedword New-ItemProperty$testKeyEntry3-value"Windows is in %windir%"-propertyTypestring New-ItemProperty$testKeyEntry4-value"Windows is in %windir%"-propertyTypeexpandstring New-ItemProperty$testKeyEntry5-value"One","Two","Three"-property...
functiondisable-ssl-2.0{New-Item'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0\Server'-ForceNew-ItemProperty-Path'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0\Server'-name'Enabled'-value'0'–PropertyType'DWORD'New-ItemProperty-Path...
New-Item -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0\Server' New-Item -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0\Server' New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Pr...
Name ='LocalAccountTokenFilterPolicy'Path ='HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System'PropertyType ='DWord'Value =1}New-ItemProperty@newItemPropertySplat 如何在远程命令中使用 IP 地址 对于错误: 错误:WinRM 客户端无法处理该请求。 如果身份验证方案不同于 Kerberos,或者客户端计算机未加...
Set-ItemProperty:修改 RDP 端口号。这将改变远程桌面的端口设置。 New-NetFirewallRule:创建新的防火墙规则,允许指定端口的 TCP 和 UDP 流量通过。 重要提示: 更改RDP 端口之后,需要重新启动计算机或远程桌面服务,以使更改生效。 修改注册表和防火墙设置可能会影响系统的安全性和可访问性,请确保了解这些操作的影响。
Set-ItemProperty-Path'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server'-Name'Enabled'-Value'1'-Type DWord 代码语言:javascript 复制 functiondisable-ssl-2.0{New-Item'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0\Server'-Force ...
New-Item-itemType StringHKLM:\SOFTWARE\OpenSSH\DefaultShell-value"C:\Windows\system32\WindowsPowerShell\v1.0\powershell.exe"# 设置ssh登录的默认shell为powershell 给windows安装一个命令行的编辑器vim 运程操控windows服务器免不了要修改某些配置文件,个人还是比较适应vim,这里在windows里安装好vim。