Author Topic: Interesting Windows Vista Issue  (Read 2923 times)

0 Members and 1 Guest are viewing this topic.

Offline CalebHansberry

  • LV4 Regular (Next: 200)
  • ****
  • Posts: 135
  • Rating: +14/-0
  • This is my personal text
    • View Profile
    • Skylites Computers
Interesting Windows Vista Issue
« on: July 08, 2014, 05:43:02 pm »
I have Windows Vista Home Basic 32-bit (on a certain different computer), and it's problem is, it doesn't BSOD, freeze, or crash. I have a need for it to do one of those in some way, intermittently (preferably the timing being settable), under my control and entirely covertly. Any suggestions?
You should know, I am a Christian.

Offline Eeems

  • Mr. Dictator
  • Administrator
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 6265
  • Rating: +318/-36
  • little oof
    • View Profile
    • Eeems
Re: Interesting Windows Vista Issue
« Reply #1 on: July 08, 2014, 05:47:30 pm »
Quickly googling shows this: http://www.wikihow.com/Force-a-Blue-Screen-in-Windows
I'd then suggest writing some sort of listener that does that in the background whenever you send it a command. If you are on the same network as it then just write a quick server on an obscure port that runs as an administrator in the background and then forces the BSOD whenever it receives a command from you.

EDIT: Looks the same as the first method, but I didn't look too closely: http://www.instructables.com/id/Display-the-BSoD-with-3-keystrokes/

EDIT2: If you don't want to force a BSOD, this is good for shutting it off. Same stuff from before applies https://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/shutdown.mspx?mfr=true
« Last Edit: July 08, 2014, 05:50:26 pm by Eeems »
/e

Offline CalebHansberry

  • LV4 Regular (Next: 200)
  • ****
  • Posts: 135
  • Rating: +14/-0
  • This is my personal text
    • View Profile
    • Skylites Computers
Re: Interesting Windows Vista Issue
« Reply #2 on: July 08, 2014, 06:00:08 pm »
First of all, can I then command it without the user noticing? Second, I'm confused by talk of servers, ports, and writing - I'd need a lot of walking through that.

Sidenote, can anyone help me write a special hard-reset or BSOD Windows Vista x86 driver? That might work well.
You should know, I am a Christian.

Offline Eeems

  • Mr. Dictator
  • Administrator
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 6265
  • Rating: +318/-36
  • little oof
    • View Profile
    • Eeems
Re: Interesting Windows Vista Issue
« Reply #3 on: July 08, 2014, 09:09:11 pm »
First of all, can I then command it without the user noticing? Second, I'm confused by talk of servers, ports, and writing - I'd need a lot of walking through that.

Sidenote, can anyone help me write a special hard-reset or BSOD Windows Vista x86 driver? That might work well.
If you set up the listener right, then yes you could do it in a way that the user wouldn't notice.

If you wrote a simple server application that all it does is listen on a port, so something like this would work (node.js)
Code: [Select]
require('http').createServer(function (req, res){
  require('child_process').exec('<command to run>');
}).listen(9615);
All you would have to do is figure out what the IP is on the network and then just load http://<machines_ip>:9615 in your web browser (as long as the machine you are on is on the same network) to cause the BSOD or shutdown.


EDIT: So, as it was pointed out to me on IRC. I really shouldn't be helping with this kind of thing. The topic is locked because, well the reasons you want to know this are kinda nefarious.
Sorry about that!
« Last Edit: July 08, 2014, 09:21:05 pm by Eeems »
/e