
批處理更改注冊表值為何無效我從注冊表中導出了[HKEY_CLASSES_ROOTPython.FileShelleditwithidleshelledit37-32command]@=C:UserssAppDataLocalProgramsPythonPython37-32pythonw.exe -m idlelib %L %*,為了便于操作,我在批處理中使用了reg add HKEY_CLASSES_ROOTPython.FileShelleditwithidleshelledit37-32command /ve /t REG_SZ /d C:UserssAppDataLocalProgramsPythonPython37-32pythonw.exe -m idlelib %L %* /f這一語句想把值C:UserssAppDataLocalProgramsPythonPython37-32pythonw.exe -m idlelib %L %*寫入注冊表,但是我遇到一個問題,如果像我這樣寫,導入的鍵值是C:UserssAppDataLocalProgramsPythonPython37-32pythonw.exe -m idlelib *,請問這個問題該怎樣解決?

