I'm trying to copy a file to a desitnation in an SSIS package that requires a username and password in order to connect. I am doing this in VB Script task and have tried this:
Dim ServerShare, UserName, Password
As
String
Dim NetworkObject, FSO
As
Object
ServerShare = \\someserver\sharename$
View Complete Post