Hello ComputerGuy3113,Sorry, but as you stated... KiXtart does not have a built in command for RENAME
Here is some code to perform the task...
code:
BREAK ON
CLS
$MyDrive="c:\"
$OldName="FOLDER001"
$NewName="FOLDER002"
IF (Exist($MyDrive+$NewName)=1) AND (Exist("$MyDrive"+$OldName)=1)
? "Warning... Both folders exist. You will have to manually decide what to do."
GOTO END
ENDIF
IF (Exist($MyDrive+$NewName)=1)
IF GetFileAttr($MyDrive+$NewName) <> 16
? "$NewName is a file, not a directory... You will need to delete or rename this file before creating a folder."
GOTO END
ELSE
IF GetFileAttr($MyDrive+$NewName) & 16
? "The Folder $NewName already exists. Quitting, nothing to do..."
GOTO END
ENDIF
ENDIF
ENDIF
IF (Exist($MyDrive+$OldName) = 1)
IF GetFileAttr($MyDrive+$OldName) & 16
? "Name exists and is a directory. We will now rename the folder..."
Shell '%comspec% /c rename $MyDrive$OldName $NewName'
ELSE
? "$OldName is a file, not a directory... You will need to delete or rename this file before creating a folder."
ENDIF
ELSE
? "File/Directory not found... Making directory $NewName"
Shell '%comspec% /c MD $MyDrive$NewName'
ENDIF
:END
Let the DOS BOX fly... Set it free 
[ 15 December 2001: Message edited by: NTDOC ]