Jump to content

laxer

Member
  • Posts

    683
  • Joined

  • Last visited

Awards

This user doesn't have any awards

3 Followers

Contact Methods

Profile Information

  • Gender
    Male
  • Location
    Oregon
  • Interests
    Lacrosse
    Programming
    Video Games
  • Biography
    Currently working towards a Masters in Computer Science.
  • Occupation
    Owner and Administrator of Sysnative.com, CIM Software Engineer
  • Member title
     
  1. That was my estimate as well. Full loop for CPU/GPU with good quality parts is probably ~$500
  2. Did you try /F to forcefully close it? C:\Users\Geoff>taskkill /?TASKKILL [/S system [/U username [/P [password]]]] { [/FI filter] [/PID processid | /IM imagename] } [/T] [/F]Description: This tool is used to terminate tasks by process id (PID) or image name.Parameter List: /S system Specifies the remote system to connect to. /U [domain\]user Specifies the user context under which the command should execute. /P [password] Specifies the password for the given user context. Prompts for input if omitted. /FI filter Applies a filter to select a set of tasks. Allows "*" to be used. ex. imagename eq acme* /PID processid Specifies the PID of the process to be terminated. Use TaskList to get the PID. /IM imagename Specifies the image name of the process to be terminated. Wildcard '*' can be used to specify all tasks or image names. /T Terminates the specified process and any child processes which were started by it. /F Specifies to forcefully terminate the process(es). /? Displays this help message.Filters: Filter Name Valid Operators Valid Value(s) ----------- --------------- ------------------------- STATUS eq, ne RUNNING | NOT RESPONDING | UNKNOWN IMAGENAME eq, ne Image name PID eq, ne, gt, lt, ge, le PID value SESSION eq, ne, gt, lt, ge, le Session number. CPUTIME eq, ne, gt, lt, ge, le CPU time in the format of hh:mm:ss. hh - hours, mm - minutes, ss - seconds MEMUSAGE eq, ne, gt, lt, ge, le Memory usage in KB USERNAME eq, ne User name in [domain\]user format MODULES eq, ne DLL name SERVICES eq, ne Service name WINDOWTITLE eq, ne Window title NOTE ---- 1) Wildcard '*' for /IM switch is accepted only when a filter is applied. 2) Termination of remote processes will always be done forcefully (/F). 3) "WINDOWTITLE" and "STATUS" filters are not considered when a remote machine is specified.Examples: TASKKILL /IM notepad.exe TASKKILL /PID 1230 /PID 1241 /PID 1253 /T TASKKILL /F /IM cmd.exe /T TASKKILL /F /FI "PID ge 1000" /FI "WINDOWTITLE ne untitle*" TASKKILL /F /FI "USERNAME eq NT AUTHORITY\SYSTEM" /IM notepad.exe TASKKILL /S system /U domain\username /FI "USERNAME ne NT*" /IM * TASKKILL /S system /U username /P password /FI "IMAGENAME eq note*" If no luck a simple restart will do the trick as well.
  3. The display drivers crashing is probably only somewhat related. As @TDaytona645 said it is likely your PSU. Even the best 500W powersupply would barely support that system under load.
  4. Completely filled, you would be very lucky to find a game without someone modding. If you join it it may be some fun but, if you are playing seriously you will just get frustrated.
  5. It's plagued with people modding and isn't worth your time until they get a decent anti-cheat.
  6. You can mix and match just make sure they have similar clock and memory speeds.
  7. I would use water crystals... They absorb water and expand. You would need much less than 60 pounds of them I would think to fill a swimming pool. They wouldn't be as colorful but would get the job done. You could always add food coloring to the mix to get some color I guess.... Here is the closest to bulk I could find: http://www.amazon.com/Soil-Vigor-Retention-Granules_Crystals-Absorbent/dp/B00BZZHKGG/ref=sr_1_7?ie=UTF8&qid=1435531212&sr=8-7&keywords=water+crystals
  8. I would get a new single card.... Coming from someone running 2x 7970s considering upgrading to a single card...
  9. You could probably get around it if you really wanted to. Something like: Take ownership of all of the files under C:\Windows\System32 Then force delete the whole folder... ------ I used to have a similar script for XP for trolling people at school(the machines were ghosted and booted off the network so it was fine after reboot) W7 step up a lot of security so it may no longer work... ----- A fun thought for you: If you replace the windows help program that is run on startup from the login page it automatically runs as admin, doing this may allow you to delete the folder. ----- Remember, I'm not responsible for anything you do
  10. I do not have enough time to give you a full response but, The method you are doing right now should work fine. If you haven't invested too much time into the project I would suggest switching to the HTML Agility Pack. It was designed specifically to work and extract information from pages and gets rid of a lot of the awkward string manipulations. You can grab the packaged using Nuget assuming you are running a newer copy of visual studios. If not you may need to install the Nuget Plugin
  11. Unless you are also creating all of the 3d models 16gb will be more than enough...
  12. You have to nest it correctly <?xml version="1.0" encoding="UTF-8"?><configuration><system.webServer><rewrite> <rules> <rule name="html rewrite"> <!--Removes the .html extension for all pages.--> <match url="(.*)" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="{R:1}.html" /> </rule> </rules></rewrite></system.webServer></configuration> I think that is pretty close to correct, I am at work and cannot test it.
  13. Something like: <rule name="html rewrite"> <!--Removes the .html extension for all pages.--> <match url="(.*)" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="{R:1}.html" /></rule> Just create a web.config file in the same folder as your html file and add that to it. IIS should look at the file before processing the request and adjust the url
  14. For IIS you typically set it up in the web.config file (rewrite) For apache you can set it up in the .htaccess file (mod rewrite) http://www.iis.net/learn/extensions/url-rewrite-module/creating-rewrite-rules-for-the-url-rewrite-module Cheers. ----------------------- Edit, unless you are talking about your root page(index.html, Default.html, etc) in which case you can just leave it out of the link
×