# Set up the parameters for Set-ItemProperty
$sipParams = @{
Path = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced'
Name = 'LaunchTo'
Value = 1 # Set the LaunchTo value for "This PC"
}
# Run Set-ItemProperty with the parameters we set above
Set-ItemProperty @sipParams
2条答案
按热度按时间t98cgbkg1#
您需要在注册表项
HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
下设置LaunchTo
属性。为此,我们可以使用Set-ItemProperty cmdlet:
有三个可能的值,所以如果您想打开快速访问或下载,请将值设置为以下任一数字:
1.此PC
1.快速访问
1.下载
Downloads的值似乎没有文档记录,但它确实有效。其他值打开文件资源管理器时会出现文件关联错误。
6yt4nkrj2#
我测试此代码,它是工作和nuber 4打开onedrive