Keep a spare exe from the previous version, copy the new exe out of the Skyrimfolder, copy the old one in until Alexander found the time to update like I do and you have got no problems!
Or do what I said above.




// ========================================// ExecuteBatch// ========================================void ZBatchFile::Execute(){ // Open batch file stream std::ifstream file (sBatch); if (file.is_open()) { std::string line; while ( file.good() ) { // Read line from text file into string getline (file,line); // Convert std::string to char array. Extra step for safety to avoid overflow. char * command = new char [line.size()+1]; strcpy (command, line.c_str() ); // Execute the command through the console. ExecuteConsoleCommand( command, 0 ); // Free dynamic memory to avoid leak delete[] command; } // Close batch file file.close(); }}
.
Skyrim is much more fun with Script Dragon mods.