Thanks for Your Donations

Total 0 Donators
Donate to us!
Page 1 of 3 123 LastLast
Results 1 to 10 of 25

Thread: Ps3 CFW Folder Check + Source Code Included

  1. #1
    Uncharted's Avatar
    Uncharted is offline Novice Moderator Athanatos
    Join Date
    Aug 2011
    Location
    USUALLY I LIVE ON SUN
    Posts
    2,633
    Rep Power
    16

    Default Ps3 CFW Folder Check + Source Code Included

    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.

    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 <Windows.h>
    #include <direct.h>
    #include <iostream>
    #include <fstream>
    #include <string>
    
    #pragma comment(lib, "shlwapi.lib")
    #include <shlwapi.h>
    
    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() << "\r\nPress any key to continue...";
    	cin.get();
    	exit(0);
    }
    
    /*******************************************************************************
     * Entry Point
     ******************************************************************************/
    int main(int argc, char* argv[])
    {
    	// - Show banner
    	cout << "*****************************************************\r\n";
    	cout << "**\r\n";
    	cout << "** \tCFW Checker\r\n";
    	cout << "**\tFollow me on twitter @ RealPsDev\r\n";
    	cout << "**\tI was bored made in 5min\r\n";
    	cout << "**\r\n";
    	cout << "*****************************************************\r\n\r\n";
    
    	// - 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 + ")\r\n");
    
    	
    	Quit("\r\nYou are now ready to the USB into the ps3!\r\n");
    	return 0;
    DOWNLOAD HERE
    Last edited by Uncharted; 3rd December 2011 at 01:54 PM.


    + REP ME IF I WAS HELPFUL:rock:

  2. #2
    brianluche is offline Member Starting To Post
    Join Date
    May 2011
    Posts
    25
    Rep Power
    2

    Default

    What does this exactly do? :S

    EDIT: OH I UNDERSTAND, TY.

  3. #3
    allanrma's Avatar
    allanrma is offline Senior Member PS3ISO Supporter
    Join Date
    Dec 2010
    Location
    Siguatepeque, Honduras
    Posts
    107
    Rep Power
    3

    Default

    man, CFW is so easy to install. I just cant believe people actually mess it up, and devs have to make an app to check you are doing things right.
    http://www.yourgamercards.net/trophy/733/allanrma.png

  4. #4
    cocoman is offline Junior Member Starting To Post
    Join Date
    Dec 2009
    Posts
    17
    Rep Power
    5

    Default

    theshiddledy****? the noobiest noob tool ever... i really apreciate that the devs even help the noobs, though. we all were noobs at some stage

  5. #5
    Alucardov's Avatar
    Alucardov is offline Member PS3ISO Member
    Join Date
    Nov 2011
    Posts
    61
    Rep Power
    1

    Default

    what boredom do to people omg and lol

  6. #6
    thegreatSalu's Avatar
    thegreatSalu is offline Senior Member PS3ISO Supporter
    Join Date
    Feb 2011
    Location
    Lahore,Pakistan
    Posts
    109
    Rep Power
    3

    Default

    Oh God!!! Some people

  7. #7
    wissmar454's Avatar
    wissmar454 is offline Regional Moderator High Lander
    Join Date
    Aug 2010
    Location
    The Garden State
    Posts
    1,997
    Rep Power
    11

    Default

    I never say that anything the dev's do for us is useless, but come one if you can make 2 folders on your usb drive, you don't need a ps3, sell it because your 2 dumb to use it. This is a stupid app.



  8. #8
    metatrongrhm is offline Senior Member PS3ISO Supporter
    Join Date
    Aug 2011
    Posts
    96
    Rep Power
    2

    Default

    i would say that this is patronising, but... well... ive seen some comments that make me wonder
    in the rare chance that i said something of use... would you consider a +rep?

  9. #9
    monarcasmorelia's Avatar
    monarcasmorelia is offline Contributor High Lander
    Join Date
    Jan 2011
    Location
    Minnesota usa
    Posts
    2,173
    Rep Power
    13

    Default

    Believe it or not people have trouble installing cfw

    thanks VenomusX for the cool signature :D
    +Rep if I was useful/helpful
    [PS3 Homebrew Collection click here
    Ultimate Playstation 3 Repair/Upgrade Guide click here
    ps3 boot logo collection click here

    FREE SPACE ON YOUR PS3 INTERNAL HDD!! by VenomusX
    click here

  10. #10
    willywanka is offline Member Starting To Post
    Join Date
    Nov 2011
    Posts
    39
    Rep Power
    1

    Default

    Wow what an amazing release.How did we ever manage without it. More development into things like this please

Page 1 of 3 123 LastLast

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •