Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main (void){
  4. system ("@echo off");
  5. system ("mode 1000");
  6. system ("color 1F");
  7. system ("cls");
  8. getchar();
  9. printf ("A problem has been detected and Windows has been shut down to prevent damage\n");
  10. printf ("to your computer.\n\n");
  11. printf ("PFN_LIST_CORRUPT\n\n");
  12. printf ("If this is the frist time you've seen this Stop error screen,\n");
  13. printf ("restart your computer.");
  14. printf (" If this screen appears again, follow\n");
  15. printf ("these steps:\n\n");
  16. printf ("Check to make sure any new hardware or software is properly installed.\n");
  17. printf ("If this is a new installation, ask your software manufacturer\n");
  18. printf ("for any Windows updates you might need.\n\n");
  19. printf ("If problems continue, disable or remove any newly installed hardware\n");
  20. printf ("or software. Disable BIOS memory options such as caching or shadowing.\n");
  21. printf ("If you need to use Safe Mode to remove or disable components, restart\n");
  22. printf ("your computer, press F8 to select Advanced Startup Options, and then\n");
  23. printf ("select Safe Mode.\n\n");
  24. printf ("Technical information:\n");
  25. printf ("*** STOP: 0x0000004e (0x00000099, 0x00900009, 0x00000900, 0x00000900)\n\n\n");
  26. printf ("Beginning dump of physical memory\n");
  27. printf ("Physical memory dump complete.\n");
  28. printf ("Contact your system administrator or technical support group for further\n");
  29. printf ("assistance.");
  30. printf ("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
  31. getchar();
  32. return 0;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement