Azure Emulator Error

AdamDerzo

New Member
Jan 18, 2016
18
1
I'm trying to use Azure Emulator.. but I got problem/error...

Can anybody help me fast?

OBi2rKD.png
 

Joe

Well-Known Member
Jun 10, 2012
4,090
1,918
Personally I wouldn't recommend you use Azure. PlusEMU has been released and it's a lot more secure than Azure, people are also still developing it further as I think Azure died a while ago.
 

Muff

Member
Aug 5, 2015
252
129
Didn't take me that long to find this on within ***** this is basically a fix
that was released by (maritnmine god himself) for the blacklist i believe?
Under the project Azure.Emulator in the Solution Explorer, open the file named Program.cs
then you're going to probably want to look for "public static void Main(string[] args)"
under the line you'd want to replace this
Console.BackgroundColor = ConsoleColor.White;


Console.Clear();
StartConsoleWindow();
CheckHosts();


Out.WriteLine("Hello Please Provide your AzureNET Account to Continue..", "Azure.Authentication");
#if (DEBUG)
StartEverything();
#else
StartAuthentication();
#endif

with this

Console.BackgroundColor = ConsoleColor.White;


Console.Clear();
StartConsoleWindow();
StartEverything();
then you'd want to search "public static void StartConsoleWindow()"
and at the buttom of that fuction you want to remove this
System.Net.WebClient wc = new System.Net.WebClient();
string webData = wc.DownloadString(" ");
Console.WriteLine(@" " + @"azureweb.org : " + webData);

I HOPE IT HELPED!
 

Users who are viewing this thread

Top