import subprocessimport timeimport sysdef enable_remote_desktop(): try: # 원격 데스크톱 활성화 (레지스트리 설정) subprocess.run( 'powershell -Command "Set-ItemProperty -Path \'HKLM:\\System\\CurrentControlSet\\Control\\Terminal Server\' -Name fDenyTSConnections -Value 0"', shell=True, check=True ) print("원격 데스크톱 기능이 성공적으로 활성화되었습니다.") exc..