My search fu is weak and I was not able to find an existing answer to this question. Apologies if I missed it.
I am trying to use the following cli command to copy a file to a windows network location on my NAS. My NAS requires user/pass authentication, however, and I get the below error in the log. Is there a way to include user/pass information on the command line?
Code: Select all
filebot.exe -script fn:amc --output \\SOLACENAS\MediaNAS\Videos --log-file amc.log --action copy -non-strict D:\Encode\ATTACK_OF_THE_CLONES --conflict skip --def plex=127.0.0.1:zXcjJBpdopp8ykTW25Po --def reportError=y --def "seriesFormat=TV Shows/{n}/{n} - {s00e00} - {t}" "animeFormat=TV Shows/{n}/{n} - {s00e00} - {t}" "movieFormat=Movies/{n} ({y})"
Code: Select all
Run script [fn:amc] at [Mon Oct 05 15:37:03 PDT 2015]
Parameter: plex = 127.0.0.1:zXcjJBpdopp8ykTW25Po
Parameter: reportError = y
Parameter: seriesFormat = TV Shows/{n}/{n} - {s00e00} - {t}
Parameter: animeFormat = TV Shows/{n}/{n} - {s00e00} - {t}
Parameter: movieFormat = Movies/{n} ({y})
Argument: D:\Encode\ATTACK_OF_THE_CLONES
Input: D:\Encode\ATTACK_OF_THE_CLONES\ATTACK_OF_THE_CLONES.mkv
ATTACK_OF_THE_CLONES.mkv [series: null, movie: Star Wars: Episode II - Attack of the Clones (2002)]
Group: [tvs:null, mov:star wars episode ii attack of the clones 2002, anime:null] => [ATTACK_OF_THE_CLONES.mkv]
Rename movies using [TheMovieDB]
Auto-detect movie from context: [D:\Encode\ATTACK_OF_THE_CLONES\ATTACK_OF_THE_CLONES.mkv]
Stripping invalid characters from new path: Movies/Star Wars: Episode II - Attack of the Clones (2002)
[COPY] Rename [D:\Encode\ATTACK_OF_THE_CLONES\ATTACK_OF_THE_CLONES.mkv] to [\\SOLACENAS\MediaNAS\Videos\Movies\Star Wars Episode II - Attack of the Clones (2002).mkv]
[COPY] Failed to rename [D:\Encode\ATTACK_OF_THE_CLONES\ATTACK_OF_THE_CLONES.mkv]
FileSystemException: \\SOLACENAS\MediaNAS\Videos: Logon failure: unknown user name or bad password.
Finished without processing any files
Failure (°_°)