Search results

  1. J

    What are the valid subnets?

    Are you making a reference to the hosts per subnet?
  2. J

    SSD Drive going bad?

    Have you got the very latest drivers and software?
  3. J

    Machine keeps turning itself off

    Might be worth checking to see if there is a new BIOS flash out for your MoBo also try turning of the power saving settings in the BIOS and Windows/Linux. Does the Event Viewer give any common event prior to each crash?
  4. J

    Help me eliminate all possibilites with a sloooow network problem

    Hi - looking at this in simple terms: its either your system or theirs (ISP) so unless you have a hub/switch/network locally thats not correct configured or is faulty the chances of multi system all having a network fault at the same time is not high so I guess its the ISP. I suggest that when...
  5. J

    Restart loop?!

    Get a free copy of Ubuntu and boot from and run the live CD (does not install or touch Win) try that see if you get a reboot might help test some hardware. Also get to safe mode if possible and run Microsoft Boot Vis, it will log every step of you system booting so good to help trouble shoot...
  6. J

    BSOD and self reboot - need tips

    Hi, on the BSOD you should recieve a STOP code (something line 0x00000007e) find this and Google it - will really help point you in the direction (I expect memory, might be cos its mixed timings or something - try running with just 1GB then switch over to other if still BSOD) Also go to Control...
  7. J

    Help with 'CreateProcess & wait' in Borland C++

    STARTUPINFO StartInfo; // name structure PROCESS_INFORMATION ProcInfo; // name structure memset(&ProcInfo, 0, sizeof(ProcInfo)); // Set up memory block memset(&StartInfo, 0 , sizeof(StartInfo)); // Set up memory block StartInfo.cb = sizeof(StartInfo); // Set structure size int res =...
  8. J

    Help with 'CreateProcess & wait' in Borland C++

    Hi all, I am getting stuck with a piece of code to execute a process and wait for it to close, so found this example: //-------------Code Start------------- STARTUPINFO StartInfo; // name structure PROCESS_INFORMATION ProcInfo; // name structure memset(&ProcInfo, 0, sizeof(ProcInfo))...
  9. J

    C++ parsing command line arguments & IF statement

    Ok thanks to Cogman's help I have now got it all working - For others here is the code: //////////////////////////////Code Start////////////////////////////// #include <iostream> using namespace std; int main( int argc, // Number of strings in array argv char *argv[], //...
  10. J

    C++ parsing command line arguments & IF statement

    Hi would the code to check that argc => 2 be this:? if (argc >= 2 ) { blahblah; } I am so hating Borland now!
  11. J

    C++ parsing command line arguments & IF statement

    Hi Cogman, Tried that and get this error for Option 1: [BCC32 Error] File1.cpp(18): E2093 'operator==' not implemented in type 'string' for arguments of the same type Full parser context File1.cpp(8): parsing: int main(int,char * *,char * *) Option 2 does compile fine and...
  12. J

    C++ parsing command line arguments & IF statement

    Thanks Cogman for your suggestions but getting an error. Using suggestion 1 I get this error message on line 'if (Val == argv[1])': [BCC32 Error] File1.cpp(16): E2094 'operator==' not implemented in type 'string' for arguments of type 'char *' Full parser context File1.cpp(8)...
  13. J

    C++ parsing command line arguments & IF statement

    Hi all, I am very new to C++ but have been asked by work too figure this out, having tried for a few hours I am turning to you guys hopefully for some help. I want to execute the appplication with a command line e.g. 'program.exe -FS' and this will change the options displayed in the...
  14. J

    Resizing hard drive Windows 7

    Have you tried another partition tool like partintion magic (£/$) or EASEUS Partition Master Home Edition (free) I would expect these to have more control.
  15. J

    Creating Boot Disk in Windows Vista 64 to Update Bios

    This should sort you out: http://www.bootdisk.com/pendrive.htm
  16. J

    Windows 7 Problem...

    Ok, so it sounds like a software/OS issue not hardware. Are you able to open things like notepad and MS paint? Are you running Win 7 64 bit? If 64bit are these apps 32 bit? What does the event log say is going on, anything standing out? Cheers, J
  17. J

    Install Linux on an old laptop

    Ubuntu would be fine on the kit and a good OS you could dual boot with a MS OS if you wanted also.
  18. J

    Who is going to keep using XP because they can't afford to upgrade to Win7

    If I was going to buy then it would be OEM Win 7 as I play PC games. If it was not for the games I would just use something like Ubunutu or MINT for free
  19. J

    Missing "New txt file" on win explorer context menu

    http://www.dougknox.com/xp/file_assoc.htm
  20. J

    VBS - How do I hide a dos window when running a command

    Thanks WannaFly thats great I have to alter the code a little to get it to work: set ws = wscript.createobject("WScript.shell") ws.run("notepad.exe"), 0, true FYI: 0 = Hidden 1 = displayed True = Waits till command has completed before moving to next False = Does not wait for...
  21. J

    VBS - How do I hide a dos window when running a command

    Hi guys, I am using a little bit of code to launch a command and then via a loop wait for it to complete: ------------------------Code Start----------------------- Dim oWsc, oExec Set oWsc = CreateObject("WScript.Shell") Set oExec = oWsc.Exec(""".\AeXAgentUtil.exe"" /Clean") ' wait...
  22. J

    GPO to lauch a VBS

    Thanks KB some great information. You mention Altiris it is the Altiris service that we are wanting to check is running and if not restart. Our users are local admins to their machines to they often stop/uninstall Altiris. I think that I will host the small VBS to check and restart each start up...
  23. J

    GPO to lauch a VBS

    We want to have a local vbs which checks for a windows service is running and if not to start it backup. We want to run this via a GPO from the network. 1. Is this the best approach when using a GPO? 2. Should the file be hosted in %netlogon% or other remote location? 2. What type of GPO...
  24. J

    VB.net best loop to check every 10 seconds

    Ok I have started to play with the timer. I added the timer from toolbox and code: Dim sec As Integer Timer1.Enabled = True Timer1.Interval = 60000 Do Until sec = 10 MessageBox.Show("Timer test") sec = sec + 1 Loop...
  25. J

    VB.net best loop to check every 10 seconds

    Is anyone able to provide the code around the timer method?
  26. J

    VB.net best loop to check every 10 seconds

    I have a snippet of code that needs to check every 10 seconds to see if a program is running. This is the code I currently have: Dim loopcounter As String loopcounter = "0" Do Until loopcounter = "1" Sleep(10000) If...
  27. J

    To detext when a program is NOT running (VB.NET)

    I just changed it a little bit as if you include '.exe' it does not detect it correctly and added >=, so: If Diagnostics.Process.GetProcessesByName("notepad").Length >= 1 Then 'it is running MessageBox.Show("notepad IS running") Else 'it is not...
  28. J

    To detext when a program is NOT running (VB.NET)

    Hi, I am looking for a snippet of VB.net code that will search for a running program i.e. notepad.exe and keep checking to see when it is no longer is running. When it detects that it is no longer running continue the code. Example: ---------------------- loop start is notepad.exe...
  29. J

    wait for shell command

    I was unable to get this working but I am sure it is just me. I got this working however: --------------------Code Start----------------------------------- Dim sCommand As String sCommand = "c:\dir.bat" Dim p As Process = Process.Start(sCommand)...
  30. J

    wait for shell command

    Guys, I am looking for a small bit of code that will launch a batch file and wait for that to complete then continue with the code. Sudo code to try to better explain myself: Run batch.bat wait for batch.bat to stop running (loop maybe?) If batch.bat not running/finished then Run...
  31. J

    VBS list users and pass details to a text file

    Thanks KB, Glad that I know it is not worth the effort trying to make this work. I will take a stab at VB6 but its been a few years! Thanks...
  32. J

    VBS list users and pass details to a text file

    I have been tasked with writing effectively a user selection GUI in VBS that writes out to a text file that the migration application can use to select the users to be migrated. It needs to be written in VBS. To display all users local and network (domain) with a checkbox option next to each...
  33. J

    More trees less carbon?

    Can we solve global warming by planting more trees? Is it this simple....?
  34. J

    Video card for Blu Ray playback on a 1080p 40" LCD

    What about an ATI 2600 Pro 256mb PCIE?
  35. J

    Video card for Blu Ray playback on a 1080p 40" LCD

    Hi I currently have a HTPC that I use mainly for DVD playback which is fine. I now have a new Samsung 40" 1080P screen and want to upgrade my HTPC to allow Blu Ray play back. I have the sound, speakers etc sorted out so it just leaves the Video Card... I understand that it has to support HDCP...
  36. J

    RealTek HD onboard to Logitech Z-5500

    I currently have a HTPC but only has stereo through the TV and I use it for DVD play back. I am now interested in updating the system to support Blu Ray. The system is Vista and has a onboard RealTek HD sound card. For the speakers I was wanting to buy the Logitech Z-5500 speakers and connect...
  37. J

    Name of the mesh to tidy cables

    As always perfect! Thanks
  38. J

    Name of the mesh to tidy cables

    Hi there, What is the name for the mesh that is like a netting tunnel that cables go in and helps tidy the case and helps air flow. I see it in all the OC powerful systems and want to buy some for myself but not know the name :( TIA, J
  39. J

    Raptor v Samsung for slot 0?

    Hi, I built my system with a Raptor SATA v1 75gb as the only HDD on Slot0. I installed Vista and the few games that I was playing at that time never a problem. I have just bought a new Samsung Spintop SATA v2 500gb which I installed as the 2nd drive Slot1. I installed Crysis to what I thought...
sale-70-410-exam    | Exam-200-125-pdf    | we-sale-70-410-exam    | hot-sale-70-410-exam    | Latest-exam-700-603-Dumps    | Dumps-98-363-exams-date    | Certs-200-125-date    | Dumps-300-075-exams-date    | hot-sale-book-C8010-726-book    | Hot-Sale-200-310-Exam    | Exam-Description-200-310-dumps?    | hot-sale-book-200-125-book    | Latest-Updated-300-209-Exam    | Dumps-210-260-exams-date    | Download-200-125-Exam-PDF    | Exam-Description-300-101-dumps    | Certs-300-101-date    | Hot-Sale-300-075-Exam    | Latest-exam-200-125-Dumps    | Exam-Description-200-125-dumps    | Latest-Updated-300-075-Exam    | hot-sale-book-210-260-book    | Dumps-200-901-exams-date    | Certs-200-901-date    | Latest-exam-1Z0-062-Dumps    | Hot-Sale-1Z0-062-Exam    | Certs-CSSLP-date    | 100%-Pass-70-383-Exams    | Latest-JN0-360-real-exam-questions    | 100%-Pass-4A0-100-Real-Exam-Questions    | Dumps-300-135-exams-date    | Passed-200-105-Tech-Exams    | Latest-Updated-200-310-Exam    | Download-300-070-Exam-PDF    | Hot-Sale-JN0-360-Exam    | 100%-Pass-JN0-360-Exams    | 100%-Pass-JN0-360-Real-Exam-Questions    | Dumps-JN0-360-exams-date    | Exam-Description-1Z0-876-dumps    | Latest-exam-1Z0-876-Dumps    | Dumps-HPE0-Y53-exams-date    | 2017-Latest-HPE0-Y53-Exam    | 100%-Pass-HPE0-Y53-Real-Exam-Questions    | Pass-4A0-100-Exam    | Latest-4A0-100-Questions    | Dumps-98-365-exams-date    | 2017-Latest-98-365-Exam    | 100%-Pass-VCS-254-Exams    | 2017-Latest-VCS-273-Exam    | Dumps-200-355-exams-date    | 2017-Latest-300-320-Exam    | Pass-300-101-Exam    | 100%-Pass-300-115-Exams    |
http://www.portvapes.co.uk/    | http://www.portvapes.co.uk/    |