for (String host : hosts) {
String remotePassword = getWindowsPassword(host);
WindowsRemoteFileSystem wrfs = new WindowsRemoteFileSystem(host, getRemoteUser(), remotePassword);
WindowsRemoteFile remoteInstallDir = new WindowsRemoteFile(wrfs, windowsInstallDir);
remoteInstallDir.mkdirs(getForce());
WindowsRemoteFile remoteZip = new WindowsRemoteFile(remoteInstallDir, zipFileName);
WindowsRemoteFile unpackScript = new WindowsRemoteFile(remoteInstallDir, unpackScriptName);
//createUnpackScript
System.out.printf("Copying %d bytes", zipFile.length());
remoteZip.copyFrom(zipFile, new WindowsRemoteFileCopyProgress() {