WPA crash vista???


 
Thread Tools Search this Thread
Special Forums Windows & DOS: Issues & Discussions WPA crash vista???
# 1  
Old 07-01-2008
WPA crash vista???

Okay. I need help since I barely use M$ any more, the last time I used it for something other than school, work, or AIM was back in the days of WIN98. I was just reading the article on this site, Is Microsoft about to release a Windows “kill switch”? | Ed Bott's Microsoft Report | ZDNet.com, and I have a question about it. Does this only apply to XP or to Vista as well? Because my friend just had her first "Blue Screen of Death" attack and is scared that she destroyed her computer. I have yet to know if it happened right after security updates or not, but I know she has auto updates so it would have done it itself.
Any help would be appriciated.
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Linux

Is possible to bridge wlan0 and eth0 using network manager?How to for wpa?

I have created a bridge with nmcli between eth0 and wlan0 I use this procedure sudo nmcli con add ifname br0 type bridge con-name br0 sudo nmcli con add type bridge-slave ifname eth0 master br0 sudo nmcli con add type bridge-slave ifname wlan0 master br0 sudo nmcli con modify br0... (1 Reply)
Discussion started by: Linusolaradm1
1 Replies

2. Solaris

Solaris on Vmware host of vista

Hi I am planning to install solaris as a virtual machine on vista as host os. My requirements are I want to access virtual machine from vista using putty. So how to assign static ip to virtual machine ? In future i might have to virtual machines so i want communication between them as... (3 Replies)
Discussion started by: ankurk
3 Replies

3. Windows & DOS: Issues & Discussions

Can't login to Vista anymore

hello obviously something got messed up and I can't login to my Vista account anymore. the password was automatically disabled hence it was directly booting into vista. then I installed openSSH and created a password for the user. But vista login doesn't recognize this password and now I can't... (6 Replies)
Discussion started by: milhan
6 Replies

4. Solaris

SOLARIS & VISTA

I WANTED TO INSTALL SOLARIS 10 on my HP laptop but I wanted to do it in Dual mode, I mean I don't wanna loose Vista but also wanted to use Solaris 10. I have original Solaris 10 Installation Media kit and If you know how to do it, Please let me know. DUAL OS SETUP HELP NEEDED. (4 Replies)
Discussion started by: santy23
4 Replies

5. UNIX for Dummies Questions & Answers

Ubuntu, emacs, vista help

Folks, I need some help! Please understand that I have searched and read tons of how-to's and other documents in researching this and getting Putty, Cygwin, and emacs running on the Vista machine. I have a Ubuntu headless server i am trying to configure as my gateway system for the house... (3 Replies)
Discussion started by: poundjd
3 Replies

6. BSD

FreeBSD Wireless - Can do WPA but not WEP or even open

Hello, I am using FreeBSD on my laptop (R60) and currently it is working great, however, I am having trouble connecting to open or WEP secured networks. I have read the FreeBSD handbook regarding this many times. That is how I found out how to connect to WPA networks. If anyone could post a... (4 Replies)
Discussion started by: kpedersen
4 Replies

7. Solaris

Exceed on Vista ?

Hi there, I have a copy of Exceed 7.0, which I use on my Win XP pro machine to get access to the Solaris CDE, but this version will not run on my Vista laptop. Do I need to get the very latest version of Exceed to run on Vista ? or is there an interim version which I might find on Ebay ? ... (2 Replies)
Discussion started by: Freddo_21
2 Replies
Login or Register to Ask a Question
cr_read(3)						     Library Functions Manual							cr_read(3)

NAME
cr_read - read from crash dump SYNOPSIS
DESCRIPTION
The function attempts to read the memory area defined by mem_page and num_pages into the buffer pointed to by buf from the crash dump opened using crash_cb. The starts at the position in the crash dump associated with the physical memory offset given by mem_page. If the physical memory page mem_page does not exist in the crash dump, sets *num_pages to 0 and returns 0. No data transfer will occur past a page of memory that does not exist in the crash dump. If the starting position, mem_page, plus the read length, *num_pages, goes past an area of memory that does not exist in the crash dump, sets *num_pages to the number of consecutive pages (starting at mem_page) actually read. RETURN VALUE
Returns zero for success. Other possible return values are described in libcrash(5). EXAMPLES
Assuming a process opened a crash dump, the following call to cr_read(3) reads the first pages from the crash dump into the buffer pointed to by mybuf: WARNINGS
may return fewer pages than requested due to implementation details. Always check the number of pages returned. If they are fewer than requested, issue a new request starting at the first page not returned. Only if that new request reads zero pages (or returns an error) can you be sure that the page was not dumped. AUTHOR
was developed by HP. SEE ALSO
cr_open(3), libcrash(5). cr_read(3)