有一个关键
HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Channels\Microsoft-Windows-Application-Experience/Program-Compatibility-Assistant
其路径中包含Microsoft-Windows-Application-Experience / Program-Compatibility-Assistant。 我必须设置0值
New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Channels\Microsoft-Windows-Application-Experience/Program-Compatibility-Assistant -Name Enabled -Value 0 -Force
但设置退格值的唯一方法是
[Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey("LocalMachine", $COMPUTERNAME).OpenSubKey("SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Channels\Microsoft-Windows-Application-Experience/Steps-Recorder", $true).SetValue("Enabled", 0)
是否有任何解决方案可以避免使用.NET Framework?
答案 0 :(得分:0)
New-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Channels\Microsoft-Windows-Application-Experience\Program-Compatibility-Assistant -Name Enabled -Value 0 -Force
windows '/'
& '\'
,很少有东西可以在这里和那里打破,但你可以平等地打开c:\ windows和c:/ Windows。
请尝试使用\
。