#include <iostream>
#include <Windows.h>
#include <conio.h>
using namespace std;
void start_program(string filename)
{
ShellExecute(NULL, "open", filename.c_str(), NULL, NULL, SW_SHOWNORMAL);
}
int main()
{
start_program("ps3tm");
getch();
return 0;
}
Copyright © 2026, NextGenUpdate.
All Rights Reserved.