我长期使用cmd.exe脚本来设置新的(虚拟)计算机。我厌倦了使用reg.exe和regedit.exe来设置注册表值 - 两者都很古怪。我怀疑powershell是解决我问题的更好方法。有人可以分享他们的PowerShell脚本,按照他们想要的方式设置注册表项吗?
答案 0 :(得分:2)
这是一个非常简单的问题:
[UInt16]$limit = Read-Host -Prompt "Enter max number of CodeAnalysis " + `
"warnings to display (default is 200)"
if ($limit -eq 0) { $limit = 200 }
$path = 'HKLM:\SOFTWARE\Microsoft\VisualStudio\8.0\Setup\EDev'
Set-ItemProperty -Path $path -Name CodeAnalysisErrorListViolationLimit `
-Value $limit