Jump to content

Predator77

Members
  • Content Count

    69
  • Donations

    $0.00 
  • Joined

  • Last visited

Posts posted by Predator77


  1. why don't you get windows 7 from the many links on here and get the workaround for it here as well?? i know you probably prefer vista as your used to it, but windows 7 to me is far more stabler and better in my opinion!!!

     

    anyway thats my advice to you , but thats coming from me!!! :cwrocks:

     

    if you need any help with a link for an iso for windows 7 just give us a shout ;)


  2. when you get your system up and running again you can create your own from within windows

     

    go to control panel > back up your computer > create a system repair disk. then follow the prompts

     

    and if you cannot get this disk i will up it for you ;)

    • Like 1

  3. just right click on image and copy image url to new tab, hit enter and you will see them as i just tried that and it worked o.k and as for resizing your images, you can do that in photoshop or any image resizing program i have done this for you in photoshop but did not know the image size you needed.

     

    MVMo_Ma.png

     

     

    7i6k_Fa.png


  4. try this

     

    • Run Registry Editor (regedit.exe), and check the following registry key:
       
      [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetBT\Parameters]
    • Please find if the "TransportBindName" value exists. If either of them does not exist, create it. If either one is incorrect, change the data. The values should be like this:
       
      Name: TransportBindName
      Type: REGSZ
      Value: \Device\
    • Under the same registry key ([HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetBT\Parameters]), if you find the "SMBDeviceEnabled" value exists and is 0, it means Direct Hosting is disabled. You may change it to 1 to turn on it unless there are requirements that this should be disabled.
       
      Name: SMBDeviceEnabled
      Type: REG_DWORD
      Value: 1
    • Go to Start--> Run--> Type Services.msc and make sure that " Computer Browser " and " Workstation " services are running.

     

     

    this should hopefully resolve it for you


  5. Get the OS version on your PC in C++

     

    #include <windows.h>

    #include <iostream>

    #include <dos.h>

    #include <string.h>

    int main(void)

     

    {

    OSVERSIONINFO osver;

    osver.dwOSVersionInfoSize = sizeof(osver);

    if (GetVersionEx(&osver))

     

    {

    if (osver.dwPlatformId == VER_PLATFORM_WIN32s)

    cout <<"Win32 ";

    else if (osver.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS)

     

    {

    if (osver.dwMinorVersion == 0 && (strchr(osver.szCSDVersion,'B') == NULL)

    && (strchr(osver.szCSDVersion,'C') == NULL))

    cout <<"Windows 95 ";

    else if (osver.dwMinorVersion == 0 && (strchr(osver.szCSDVersion,'B') != NULL))

    cout <<"Windows 95 OSR 2 ";

    else if (osver.dwMinorVersion == 0 && (strchr(osver.szCSDVersion,'C') != NULL))

    cout <<"Windows 95 OSR 2.5 ";

    else if (osver.dwMinorVersion == 10 && (strchr(osver.szCSDVersion,'A') == NULL))

    cout <<"Windows 98 ";

    else if (osver.dwMinorVersion == 10 && (strchr(osver.szCSDVersion,'A') != NULL))

    cout <<"Windows 98 Second Edition ";

    else if (osver.dwMinorVersion == 90)

    cout <<"Windows Millenium Edition ";

    else

    cout<<"Unknown Windows ";

    }

    else if (osver.dwPlatformId == VER_PLATFORM_WIN32_NT)

    cout <<"Windows NT ";

    cout <<osver.dwMajorVersion<<"."<<osver.dwMinorVersion<<"."

    <<(osver.dwBuildNumber & 0xffff)<<osver.szCSDVersion<<endl;

    }

    else

     

     

    {

    cout <<"Cannot gain version information."<<endl;

    }

    system("pause");

    return 0;

    }

×