| -t | Pings the specified computer until interrupted. |
| -a | Resolve addresses to computer names. |
| -n count | Sends the number of ECHO packets specified by count. The default is 4. |
| -l length | Sends ECHO packets containing the amount of data specified by length. The defualt is 64 bytes; the maximum is 8192. |
| -f | Sends a Do not Fragment flag in the packet. The packet will not be fragmented by gateways on the route. |
| -i ttl | Sets the Time To Live field to the value specifed by ttl. |
| -v tos | Sets the Type Of Service field to the value specifed by tos. |
| -r count | Records the route of the outgoing packet and the returning packet in the Record Route field. A minimum of 1 and a maximum of 9 computers may be specified by count. |
| -s count | Specifies the timestamp for the number of hops specified by count. |
| -j computer-list | Routes packets via the list of computers specified by computer-list. Consecutive computers may be separated by intermediate gateways (loose source routed). The maximum number allowed by IP is 9. |
| -k computer-list | Routes packets via the list of computers specified by computer-list. Consecutive computers may not be separated by intermediate gateways (strict source routed). The maximum number allowed by IP is 9. |
| -w timeout | Specifies a timeout interval in milliseconds. |
@echo off if exist c:\PCWorld\*.* goto message if not exist c:\PCWorld goto create goto end :create md c:\PCWorld echo Folder created goto end :message echo Folder exists :endAfter you enter the code, choose File, Save As and name the file whatever you want as long as it has a .bat xtension--Test.bat will do. To run the file at the Command Prompt, just type
test and press Enter.If you want to type a folder name when you run the file (this is probably more useful), change the code to that shown here.
@echo off if exist %1 goto message if not exist %1 goto create goto end :create md %1 echo Folder %1 created goto end :message echo Folder %1 exists :endNow, let's say you want to create a folder named New on drive C. Type
test c:\Newat the Command Prompt and press Enter. If the folder doesn't already exist, this creates it.
[Boot Loader]
Timeout=10
Default=C:\
[Operating Systems]
C:\="Microsoft Windows"
multi(0)disk(0)rdisk(0)partition(1)\WINNT="Windows NT Workstation Version 4.00"
Navigate to the end of the quoted part of the WINNT line and add /MAXMEM=16 as shown below. (Anything below 16 is way too slow).
[Boot Loader]
Timeout=10
Default=C:\
[Operating Systems]
C:\="Microsoft Windows"
multi(0)disk(0)rdisk(0)partition(1)\WINNT="Windows NT Workstation Version 4.00" /MAXMEM=16