Lua

python

[파이썬] 레지스트리 변경 방법 (UAC 끄기, Profile 경로 변경)

import winreg # UAC를 끄는 설정 EnableLUA = winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, "Software\Microsoft\Windows\CurrentVersion\Policies\System", 0, winreg.KEY_WRITE) winreg.SetValueEx(EnableLUA, "EnableLUA", 0, winreg.REG_DWORD, 0) winreg.CloseKey(EnableLUA) # USERS 프로파일 폴더를 D:\ USERS로 변경 profile = winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, "SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList",..

p@ssw0rd
'Lua' 태그의 글 목록