Recent content by ralfs_k

  1. R

    Broken pin in cpu socket - MB ASUS H81I-PLUS (LGA1150) +CPU G3420

    Hi. I have motherboard ASUS H81I-PLUS and cpu Intel Pentium G3420. There is one pin missing from cpu socket on motherboard... judging from intel socket specification http:// it's VDDQ pin AJ13... motherboard WORK! but the problem is that it can't be turned off! doing shutdown in windows- pc...
  2. R

    How to activate ipsec policy using netsh?

    Hi. I have ipsec policy that I need to activate/deactivate using batch! So is there a way to activate policy using netsh?
  3. R

    Chasis fan and power fan connectors on motherboard?

    Hi. I have Asus P8Z68-v PRO motherboard and was wondering there are 2 chasis fan connectors and 2 power fan connectors. If i have 4x120fans with 2pin connectors can I connect two of them to power fan connectors? Is there real difference between them?
  4. R

    Remote desktop tab missing

    hi Chainzsaw just now checked services for one of those computers as for services: workstation was started there was no such a service as terminal device driver started all services that contained remote also started termservice but still no effect also tried starting all services and still...
  5. R

    Removing windows from a HDD

    hmmm i had previously problems deleting windows files from other windows my suggestion is do what JDFan told about boot options then boot pc using some linux live cd like ubuntu and delete all files and folders.
  6. R

    Remote desktop tab missing

    Hi. I'm using windows 7 enterprise at work and recently on several computers remote desktop tab under system properties > remote is gone. was searching forums for this problem but found only answers that after removing service pack 1 remote tab was back, but then i have a question how come 95%...
  7. R

    Confusion with i7-2600k

    Hi. I was searching for new cpu and found at local retailer two i7-2600k cpus with different codes: BX80623I72600K BX623I72600KSR00C whats the difference? ok the "SR00C" is for Spec code but then what the hell is BX623I72600K? cuz intel only lists "BX80623I72600K" as Boxed Intel® Core™...
  8. R

    Should I go crossfire or just get new graphic card?

    hmmmm well good idea to wait a little bit... 11.11.11 is the date when i'll be needing powerful rig for skyrim =]
  9. R

    Should I go crossfire or just get new graphic card?

    Hi question: was playing crysis 2 on high everything runs fine so installed high texture and directx 11 pach and now I see that with tessalation crysis 2 lags so question is should I get another same video card and go crossfire or should I ditch that card and get a new one selling I assume...
  10. R

    Batch file to unite txt file row into one?

    yeah batch files are great to solve annoying everyday issues this batch was meant to unite reports for web site... =]
  11. R

    Batch file to unite txt file row into one?

    Thanks PhilFrisbie all talk no help! =[ this did the trick: @echo off set f1=1.txt set f2=2.txt ( for /f "delims=" %%a in (%f1%) do ( setlocal enabledelayedexpansion set /p line= echo(%%a!line! endlocal ) >> 3.txt...
  12. R

    Batch file to unite txt file row into one?

    another version this unites all text lines from 1.txt and 2.txt in one large line: @echo off setlocal enabledelayedexpansion set filecontent= set filecontent2= for /f "delims=" %%a in (1.txt) do ( set currentline=%%a set filecontent=!filecontent!!currentline! ) for /f "delims=" %%a in...
  13. R

    Batch file to unite txt file row into one?

    @echo off setlocal enabledelayedexpansion set filecontent= for /f "delims=" %%a in (1.txt) do ( set currentline1=%%a ) for /f "delims=" %%a in (2.txt) do ( set currentline2=%%a set filecontent=!currentline1!!currentline2! ) echo %filecontent% >> 3.txt ok I tried! =] but this only...
  14. R

    Batch file to unite txt file row into one?

    Hi. Can someone give me any idea how to create batch file to unite txt file rows? txt1: big small large txt2: apple cookie mouse txt3: big apple small cookie large mouse txt1 and txt2 contains exactly the same amount of rows. tnx.