You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 11, 2024. It is now read-only.
print("You are running a stable build of Windows 11, that means you can run Windows Subsystem for Android.")
write_config.add_section("System")
write_config.set("System","supported","true")
cfgfile = open("WSAU_user.ini",'w')
write_config.write(cfgfile)
print("Redirecting to launcher in 5 seconds...")
time.sleep(5)
exec(open("CliLauncher.py").read())
if str(userVersion) > str(currentBuild):
print("You are running an insider build of Windows 11, that means your computer can run Windows Subsystem for Android and it can also be downloaded on Windows Store without using InstallWSA.")
write_config.add_section("System")
write_config.set("System","supported","true")
cfgfile = open("WSAU_user.ini",'w')
write_config.write(cfgfile)
print("Redirecting to launcher in 5 seconds...")
time.sleep(5)
exec(open("CliLauncher.py").read())
else:
print("Device not supported for Windows Subsystem for Android. Make sure you installed a stable version of Windows 11 or Windows 11 Insider Builds.")