*/
private void setupAuthTokenFile(List<String> cmd, List<String> stdin) throws WindowsException {
WindowsRemoteFileSystem wrfs = new WindowsRemoteFileSystem(dcomInfo.getCredentials());
authTokenFilePath = dcomInfo.getAsadminParentPath() + "\\token_" + System.nanoTime() + new Random().nextInt(1000);
authTokenFilePath = createUniqueFilename(dcomInfo.getAsadminParentPath());
authTokenFile = new WindowsRemoteFile(wrfs, authTokenFilePath);
authTokenFile.copyFrom(stdin);
cmd.add(AsadminInput.CLI_INPUT_OPTION);
cmd.add(authTokenFilePath);
}