Hi people, my doubt is it: How I do to a file if "auto-start" with the "Windows" ?
I have this it done already:
aReg = ConnectRegistry(None,HKEY_LOCAL_MACHINE)
aKey = OpenKey(aReg, r"SOFTWARE\Microsoft\Windows\CurrentVersion\Run")
aKey = OpenKey(aReg, r"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", 0, KEY_WRITE)
SetValueEx(aKey,"name",0, REG_SZ, r"C:\name.extension")
CloseKey(aKey)
CloseKey(aReg)
Thank you patience :icon_wink: