Bagaimana cara menambahkan "lokasi desktop saat ini" ke menu konteks desktop [windows 8 x64]

0

Di Windows 7 saya menggunakan "klik kanan extender" dari Windows Club

itu menggunakan kode ini:

'Open Desktop Wallpaper File Location

Set WshShell = WScript.CreateObject("WScript.Shell")
Set fso = CreateObject("Scripting.FileSystemObject")
strCurWP =""

On Error Resume Next
strCurWP = WshShell.RegRead("HKCU\Software\Microsoft\Internet Explorer\Desktop\General\WallpaperSource")
On Error Goto 0

If Trim(strCurWP) = "" Then
    MsgBox "No Wallpaper selected for Desktop Slideshow"
Else
    If fso.FileExists(strCurWP) Then
        WshShell.run "explorer.exe" & " /select," & strCurWP
    Else
        MsgBox "Cannot find target for " & strCurWP
    End If
End If

'RIGHT-CLICK EXTENDER V2
'Created by: Lee Whittington (UntameDKreationZ) for The Windows Club

Pertanyaan saya "apa jalur registri baru wallpaper desktop di windows 8?"

Mohamed Gabr
sumber
Apa yang membuat Anda berpikir kunci registri berubah?
Ramhound
"lokasi desktop saat ini" ... Apakah desktop tidak selalu di tempat yang sama?
Dave