justa_dude Grandmaster Cheater
Reputation: 23
Joined: 29 Jun 2010 Posts: 891
|
Posted: Sun Oct 27, 2013 3:33 pm Post subject: Re: How do i find the cheat engine command line commands ? |
|
|
Chocolade wrote: | I have this code in c#
Code: | public void GenerateKeyFile(string path)
{
string commandLine = " \"C:\\Program Files\\Microsoft Visual Studio 8\\SDK\\v2.0\\Bin\\sn.exe\" -k ";
ProcessStartInfo PSI = new ProcessStartInfo("cmd.exe");
PSI.RedirectStandardInput = true;
PSI.RedirectStandardOutput = true;
PSI.RedirectStandardError = true;
PSI.UseShellExecute = false;
Process p = Process.Start(PSI);
System.IO.StreamWriter SW = p.StandardInput;
System.IO.StreamReader SR = p.StandardOutput;
SW.WriteLine(commandLine + path);
SW.Close();
} |
What does -k do ?
And where can i see a list of all the commands line of cheat engine and descripation of each of the command line and how to use it ?
[/code] |
You're asking about CE, but I believe the -k argument is being passed to the Strong Name tool from Microsoft. The -k, as I recall, asks the tool to generate a new key.
For CE docs, the help file is a good place to start. If you can't find it there and it's something easy, like command-line arguments, you could probably check the source.
|
|