generate functionSun, 13 Nov 2022

Disable Windows Security.

import ctypes def disable_security(): SEM_NOGPFAULTERRORBOX = 0x0002 # From MSDN ctypes.windll.kernel32.SetErrorMode(SEM_NOGPFAULTERRORBOX); ctypes.windll.kernel32.SetErrorMode(0x0001|0x0002); return True

Questions about programming?Chat with your personal AI assistant