Blue Screen In Script (Sorry for along time wthout coding)

@echo off
cd /
cls
color 17
echo A problem has been detected and Windows has been shut down to prevent damage
echo to your computer.
echo.
echo The problem seems to be caused by the following file: SPCMDCON.SYS
echo.
echo PAGE_FAULT_IN_NONPAGED_AREA
echo.
echo If this is the first time you’ve seen this stop error screen,
echo restart your computer. If this screen appears again, follow
echo these steps:
echo.
echo Check to make sure any new hardware or software is properly installed.
echo If this is a new installation, ask your hardware or software manufacturer
echo for any Windows updates you might need.
echo.
echo If problems continue, disable or remove any newly installed hardware
echo or software. Disable BIOS memory options such as caching or shadowing.
echo If you need to use Safe Mode to remove or disable components, restart
echo your computer, press F8 to select Advanced Startup Options, and then
echo select Safe Mode.
echo.
echo Technical information:
echo.
echo *** STOP: 0x00000050 (0xFD3094C2,0x00000001,0xFBFE7617,0x0000 0000)
echo.
echo.
echo *** SPCMDCON.SYS - Address FBFE7617 base at FBFE5000, DateStamp 3d6dd67c
pause :nul
cls
echo Downloading viruses …
ping localhost -n 5 :nul
dir
pause :nul

save it as bsod.bat

More Blogging comming soon.

Hello to all,

I have lost a few data on my computer so i will come back when i will find them.

Thanks,

George

I am using tumblweed!

Hello to all, This is SmallBasicz And I am saying on this post I will use for my posts a desktop tumblr client called “tumblweed” If you want it go to this link.

Small Basic - Temperature Converter

TextWindow.Write(“Enter temperature in Fahrenheit: “)
fahr = TextWindow.ReadNumber()
celsius = 5 * (fahr - 32) / 9
TextWindow.WriteLine(“Temperature in Celsius is ” + celsius)

GW-BASIC - Multiplication Table

10 for i = 1 to 10
20 for j = 1 to 10
30 print i;”x”;j;”=”;i*j
40 next j
50 next i

Calculator in BATCH Decompiler or Notepad

Open your Notepad or your BATCH decompiler and type this:

@echo off
color 0e
cls
set /p first=First number:
echo.
echo Mark ( + - * / )
set /p mark=Mark:
echo.
set /p second=Second number:
set /a final=%first%%mark%%second%
echo.
echo %final%
pause
cls

Visual C# Calculator

Make a new console applicaton and type the following code:

using System;
using System.Collections.Generic;

using System.Text;

namespace Calculator
{
class Program
{
static void Main(string[] args)
{

int num1;

int num2;

string operand;

float answer;





Console.Write(“Please enter the first integer: “);

num1 = Convert.ToInt32(Console.ReadLine());





Console.Write(“Please enter an operand (+, -, /, *): “);

operand = Console.ReadLine();





Console.Write(“Please enter the second integer: “);

num2 = Convert.ToInt32(Console.ReadLine());



switch (operand)
{

case “-“:

answer = num1 - num2;

break;

case “+”:

answer = num1 + num2;

break;

case “/”:

answer = num1 / num2;

break;

case “*”:

answer = num1 * num2;

break;

default:

answer = 0;

break;

}



Console.WriteLine(num1.ToString() + ” ” + operand + ” ” + num2.ToString() + ” = ” + answer.ToString());



Console.ReadLine();

}

}
}

How to make a DOS

Here you will learn how to make a small dos like MS-DOS in Notepad (Script)

1:Open Notepad.exe

2:Type this code you will find there:

@echo off
color 0e
title SmallBasicz DOS
echo SmallBasicz (www.smallBasicz.tumblr.com) 2009 (c)
:A
Set INPUT -
Set /p input=input:
if %input%==SmallBasicz goto b
if %input%==Video goto c
if %input%==Calculator goto d
if %input%==Paint goto e
if %input%==SystemRestore goto f
if %input%==Name? goto g

:b
start www.smallbasicz.tumblr.com
cls
goto a

:c
start www.youtube.com
cls
goto a

:d
cls
set /p first=First number:
echo.
echo Mark ( + - * / )
set /p mark=Mark:
echo.
set /p second=Second number:
set /a final=%first%%mark%%second%
echo.
echo %final%
pause
cls
goto A

:e
cls
echo off
echo 
start mspaint.exe
cls
goto a

:f   
start rstrui.exe
cls
goto a

:g
cls
echo Your Name Is SmallBasicz
pause
cls
goto a


3:Save you Text file as DOS.bat

4:Open it

Note:

You can change the color of this dos file. There says “Color 0e” replace it with a code you will find here: http://www.codeproject.com/KB/recipes/BatchFileColors.aspx

Welcome to SBz

Hello,

Welcome to SBz. Here you will find VC#,VB,Gw-Basic,Small Basic (SB) and more. If you have a tumblr account kust follow us at www.smallbasicz.tumblr.com