As the error message says, KiXtart cannot find the file on the server
code:
$Source = @lserver+'\netlogon\shortcuts\Psynet(New Server).lnk' 

$w2kDesktop = 'C:\'

$w9xDesktop = 'C:\'

if exist($source)
select
case exist($w2kDesktop)
copy $source $w2kDesktop
? "Windows 2000"
? $source+' '+$w2kDesktop
? 'Error '+@ERROR+' - '+@SERROR
case exist($w9xDesktop)
? "Windows 9x"
copy $Source $w9xDesktop
? 'Error '+@ERROR+' - '+@SERROR
case 1
endselect
else
? 'Cannot find source file '+$source
endif

_________________________
There are two types of vessels, submarines and targets.