Sorry kind of new to this.... I have a simple script to create a home directory and I need a shortcut automatically added to the users desktop. Any ideas?

 Code:
:start

$user = @USERID ? "$user"
$userDir = "\\byte\Home\$user" 


if EXIST ("$userDir") and INGROUP("MCCCD-ORG\PVC-All-Employees")
	
	USE H: ("\\byte\Home\$user") 
	
	
else 
	md ("$userDir")
ENDIF



:end


Edited by Mart (2011-11-02 09:40 PM)
Edit Reason: Please use code tags when posting code.