(adsbygoogle = window.adsbygoogle || []).push({});
The developer behind the Ps3Wizard, as well as several other works, PsDev brings us a new application to use on our PCs that checks to see if you have everything setup correctly on your USB to install CFW. Now no one should have any problems not being able to put the CFW onto their USB drive.
As my first contest entry-
I was bored, so I whipped up an application that checks to see if the folders that you have to setup for you to be able to install the CFW on the ps3 are named and correct so you never have to wonder why the ps3 could not find the update. Source code is included
Took me 5 min to develop
How to: Just place the .exe file in your flash drive where you have your folders and cfw setup run it and it will tell you if there is a typo, the foldername correct, the pup name correct and then if so it tell you your ready to go. THE PROGRAM HAS TO BE RIGHT WHERE THE FOLDERS ARE REMEMBER
Pictures:
With everything correct-
it should look like that ^^^^^
WITH A ERROR like wrong spelled folder
Source code:
Code:
#include
#include
#include
#include
#include
#pragma comment(lib, "shlwapi.lib")
#include
using namespace std;
typedef unsigned int u32;
/*******************************************************************************
* Check if a file or a folder exists
******************************************************************************/
bool Exists(string Path)
{
return GetFileAttributes(Path.c_str()) != INVALID_FILE_ATTRIBUTES;
}
/*******************************************************************************
* Quit the application with a message
******************************************************************************/
void Quit(string Message)
{
cout << Message.c_str() << "
Press any key to continue...";
cin.get();
exit(0);
}
/*******************************************************************************
* Entry Point
******************************************************************************/
int main(int argc, char* argv[])
{
// - Show banner
cout << "*****************************************************
";
cout << "**
";
cout << "** \tCFW Checker
";
cout << "**\tFollow me on twitter @ RealPsDev
";
cout << "**\tI was bored made in 5min
";
cout << "**
";
cout << "*****************************************************
";
// - Get CFW Path
char ExePath[MAX_PATH];
GetModuleFileName(NULL, ExePath, MAX_PATH);
string SourcePath = string(ExePath);
SourcePath.erase(SourcePath.rfind("\\"));
// - Verify 'Cfw' folder
SourcePath += "\\PS3\\UPDATE\\PS3UPDAT.PUP";
cout << "- Checking see if Folders For CFW are correct" << endl;
if (!Exists(SourcePath))
Quit("Error: Folders are not correct(" + SourcePath + ")
");
Quit("
You are now ready to the USB into the ps3!
");
return 0;
}
Download: Ps3 CFW Folder checker.rar
You must login or register to view this content.
Source Code:
You must login or register to view this content.
GooD LuCKC:puke: