Skip to main content

Codes & Standrds for Piping

Comments

Popular posts from this blog

Create A Huge File

Create A Huge File You can create a file of any size using nothing more than what's supplied with Windows.  Start by converting the desired file size into hexadecimal notation. You can use the Windows Calculator in Scientific mode do to this.   Suppose you want a file of 1 million bytes. Enter 1000000 in the calculator and click on the Hex option to convert it (1 million in hex is F4240.) Pad the result with zeroes at the left until the file size reaches eight digits—000F4240. Now open a command prompt window.   In Windows vista  or windows 7 , you can do this by entering COMMAND in the Start menu's Run dialog; in Windows NT 4.0, 2000, or XP enter CMD instead.  Enter the command DEBUG BIGFILE.DAT and ignore the File not found message.  Type RCX and press Enter.  Debug will display a colon prompt.  Enter the last four digits of the hexadecimal number you calculated (4240, in our example).  Type RBX and press Enter, then...

Delete An "undeletable" File

Delete  A "undeletable" File Open a Command Prompt window and leave it open. Close all open programs. Click Start, Run and enter TASKMGR.EXE Go to the Processes tab and End Process on Explorer.exe. Leave Task Manager open. Go back to the Command Prompt window and change to the directory the AVI (or other undeletable file) is located in. At the command prompt type DEL <filename> where <filename> is the file you wish to delete. Go back to Task Manager, click File, New Task and enter EXPLORER.EXE to restart the GUI shell. Close Task Manager. Or you can try this Open Notepad.exe Click File>Save As..> locate the folder where ur undeletable file is Choose 'All files' from the file type box click once on the file u wanna delete so its name appears in the 'filename' box put a " at the start and end of the filename (the filename should have the extension of the undeletable file so it will overwrite it) click save, It should ask u to overwri...