creating an array is simple as:
$array = element1,element2,element3

then simply do for each:
for each $element in $array
? $element
next

above, you could have array of shortcuts and another one of their targets.
then remove all if-wshShortcut-endif pieces and add just single:
Code:

for $index=0 to ubound($a_shortcuts) ;increase $index value until it reaches the limit of array elements
If Exist ($a_shortcuts[$index]) = 0
$=wshShortcut($a_shortcuts[$index],$a_targets[$index])
EndIf
next
Code: