I forgot to revert my code back from hardcoding it. Lets try this again:

When I perform this script the Target DIR gets filled with the contents from the users Windows DIR???

If InGroup("SYSTEMS")
$Target='C:\Target Folder\'
$Source='\\file\data\SAPB\SAPB.MDB'
Copy $Source $Target

However when I hard code the Target and Source DIRs it works fine:

If InGroup("SYSTEMS")
$Target='C:\Target Folder\'
$Source='\\file\data\SAPB\SAPB.MDB'
Copy '\\file\data\SAPB\SAPB.MDB' 'C:\Target Folder\'

Thanks