Error Decrypting file: common error I can't get past

Hi,
How can I properly pad this code? I really have no idea how to do this, and after searching the forums for a while I cannot seem to find a clear answer.
If anyone could provide a link to an example of how to pad a value I would really appreciate it. I cannot seem to find this information anywhere...
Here is my code:
import java.io.*;
import java.util.*;
import java.math.BigInteger;
import java.security.*;
import java.security.spec.*;
import java.security.interfaces.*;
import javax.crypto.*;
import javax.crypto.spec.*;
import javax.crypto.interfaces.*;
import com.sun.crypto.provider.SunJCE;
public class encrypt {
    public static void main(String[] args) {
       try {
           BufferedReader input = new BufferedReader (new InputStreamReader(System.in));
           String src;
           String dest;
           char password[];
           char check[];
           boolean mustMatch;
           System.out.print ("Enter the full path to the source file> ");
           src = input.readLine();
           System.out.print ("Enter the full path for filename to use for encrypted file> ");
           dest = input.readLine();
           do {
              mustMatch = false;
              System.out.flush();
              System.out.print ("Enter password: ");
              password = readPasswd (System.in);
              System.out.print ("Confirm password: " );
              check = readPasswd (System.in);
              for (int i = 0; i < password.length; i++) {
                 if (password[i] != check) {
mustMatch = true;
} while (mustMatch);
encrypt.jarble (src, dest, password);
encrypt.dejarble (dest, password);
catch (IOException e) {
System.err.println("I/O Exception caught");
private static boolean dejarble (String file, char pass[]) {
try {
System.out.println ("encrypt.dejarble(): input file: " + file);
PBEKeySpec pbeKeySpec;
PBEParameterSpec pbeParamSpec;
SecretKeyFactory keyFac;
// Salt
byte[] salt = {
(byte)0xc7, (byte)0x73, (byte)0x21, (byte)0x8c,
(byte)0x7e, (byte)0xc8, (byte)0xee, (byte)0x99
// Iteration count
int count = 20;
// Create PBE parameter set
pbeParamSpec = new PBEParameterSpec(salt, count);
pbeKeySpec = new PBEKeySpec(pass);
keyFac = SecretKeyFactory.getInstance("PBEWithMD5AndDES");
SecretKey pbeKey = keyFac.generateSecret(pbeKeySpec);
// Create PBE Cipher
Cipher pbeCipher = Cipher.getInstance("PBEWithMD5AndDES");
// Initialize PBE Cipher with key and parameters
pbeCipher.init(Cipher.DECRYPT_MODE, pbeKey, pbeParamSpec);
// pad our data
long fileLength = (new File(file)).length();
double padding = (Math.ceil(fileLength / 8)+1)*8;
System.out.println ("complete size: " + padding);
int blah = (new Double(padding)).intValue();
System.out.println("proposed array size: " + blah);
byte[] fileData = new byte[blah];
byte[] buffer_test;
// javax.crypto.BadPaddingException: Given final block not properly padded
// pad our data with zero
for (int i = (int) fileLength; i < fileData.length; i++)
fileData[i] = (new Byte("0")).byteValue();
System.out.println ("size of fileData: " + fileData.length);
buffer_test = encrypt.getBytesFromFile (file);
for (int i = 0; i < buffer_test.length; i++) {
fileData[i] = buffer_test[i];
byte[] cleartext = pbeCipher.doFinal(fileData);
String asdf = new String (cleartext);
System.out.println("Decrypted text:");
System.out.println (asdf);
return true;
catch (Exception e) {
System.out.println ("encrypt(): exception caught: " + e.toString());
System.out.println ("encrypt(): exception message: " + e.getMessage());
return false;
// This function started from an example provided at the following web page:
// http://java.sun.com/j2se/1.4.2/docs/guide/security/jce/JCERefGuide.html
private static boolean jarble (String file, String output, char pass[]) {
try {
PBEKeySpec pbeKeySpec;
PBEParameterSpec pbeParamSpec;
SecretKeyFactory keyFac;
// Salt
byte[] salt = {
(byte)0xc7, (byte)0x73, (byte)0x21, (byte)0x8c,
(byte)0x7e, (byte)0xc8, (byte)0xee, (byte)0x99
// Iteration count
int count = 20;
// Create PBE parameter set
pbeParamSpec = new PBEParameterSpec(salt, count);
pbeKeySpec = new PBEKeySpec(pass);
keyFac = SecretKeyFactory.getInstance("PBEWithMD5AndDES");
SecretKey pbeKey = keyFac.generateSecret(pbeKeySpec);
// Create PBE Cipher
Cipher pbeCipher = Cipher.getInstance("PBEWithMD5AndDES");
// Initialize PBE Cipher with key and parameters
pbeCipher.init(Cipher.ENCRYPT_MODE, pbeKey, pbeParamSpec);
byte[] cleartext = encrypt.getBytesFromFile (file);
String asdf = new String (cleartext, "UTF-8");
System.out.println("encrypt(): original text");
System.out.println (asdf);
// Encrypt the cleartext
byte[] ciphertext = pbeCipher.doFinal(cleartext);
asdf = new String (ciphertext, "UTF-8");
System.out.println ("encrypt(): encrypted text");
System.out.println (asdf);
// write the file
FileOutputStream out;
PrintStream p;
out = new FileOutputStream (output);
p = new PrintStream (out);
p.println(asdf);
p.close();
return true;
catch (Exception e) {
System.out.println ("jarble(): exception caught: " + e.toString());
System.out.println ("jarble(): exception message: " + e.getMessage());
return false;
// Returns the contents of the file in a byte array.
private static byte[] getBytesFromFile(String str) throws IOException {
File file = new File (str);
InputStream is = new FileInputStream(file);
// Get the size of the file
long length = file.length();
// You cannot create an array using a long type.
// It needs to be an int type.
// Before converting to an int type, check
// to ensure that file is not larger than Integer.MAX_VALUE.
if (length > Integer.MAX_VALUE) {
// File is too large
return null;
// Create the byte array to hold the data
byte[] bytes = new byte[(int)length];
// Read in the bytes
int offset = 0;
int numRead = 0;
while (offset < bytes.length
&& (numRead=is.read(bytes, offset, bytes.length-offset)) >= 0) {
offset += numRead;
// Ensure all the bytes have been read in
if (offset < bytes.length) {
throw new IOException("Could not completely read file "+file.getName());
// Close the input stream and return bytes
is.close();
return bytes;
* Reads user password from given input stream.
private static char[] readPasswd(InputStream in) throws IOException {
char[] lineBuffer;
char[] buf;
int i;
buf = lineBuffer = new char[128];
int room = buf.length;
int offset = 0;
int c;
loop: while (true) {
switch (c = in.read()) {
case -1:
case '\n':
break loop;
case '\r':
int c2 = in.read();
if ((c2 != '\n') && (c2 != -1)) {
if (!(in instanceof PushbackInputStream)) {
in = new PushbackInputStream(in);
((PushbackInputStream)in).unread(c2);
} else
break loop;
default:
if (--room < 0) {
buf = new char[offset + 128];
room = buf.length - offset - 1;
System.arraycopy(lineBuffer, 0, buf, 0, offset);
Arrays.fill(lineBuffer, ' ');
lineBuffer = buf;
buf[offset++] = (char) c;
break;
if (offset == 0) {
return null;
char[] ret = new char[offset];
System.arraycopy(buf, 0, ret, 0, offset);
Arrays.fill(buf, ' ');
return ret;

Hey Thanks man! You're awesome!!!
Here is the code that works for anyone that searches through this thread looking for help:
import java.io.*;
import java.util.*;
import java.math.BigInteger;
import java.security.*;
import java.security.spec.*;
import java.security.interfaces.*;
import javax.crypto.*;
import javax.crypto.spec.*;
import javax.crypto.interfaces.*;
import com.sun.crypto.provider.SunJCE;
public class encrypt {
    public static void main(String[] args) {
       try {
           BufferedReader input = new BufferedReader (new InputStreamReader(System.in));
           String src;
           String dest;
           char password[];
           char check[];
           boolean mustMatch;
           System.out.print ("Enter the full path to the source file> ");
           src = input.readLine();
           System.out.print ("Enter the full path for filename to use for encrypted file> ");
           dest = input.readLine();
           do {
              mustMatch = false;
              System.out.flush();
              System.out.print ("Enter password: ");
              password = readPasswd (System.in);
              System.out.print ("Confirm password: " );
              check = readPasswd (System.in);
              for (int i = 0; i < password.length; i++) {
                 if (password[i] != check) {
mustMatch = true;
} while (mustMatch);
encrypt.jarble (src, dest, password);
encrypt.dejarble (dest, password);
catch (IOException e) {
System.err.println("I/O Exception caught");
private static boolean dejarble (String file, char pass[]) {
try {
System.out.println ("encrypt.dejarble(): input file: " + file);
PBEKeySpec pbeKeySpec;
PBEParameterSpec pbeParamSpec;
SecretKeyFactory keyFac;
// Salt
byte[] salt = {
(byte)0xc7, (byte)0x73, (byte)0x21, (byte)0x8c,
(byte)0x7e, (byte)0xc8, (byte)0xee, (byte)0x99
// Iteration count
int count = 20;
// Create PBE parameter set
pbeParamSpec = new PBEParameterSpec(salt, count);
pbeKeySpec = new PBEKeySpec(pass);
keyFac = SecretKeyFactory.getInstance("PBEWithMD5AndDES");
SecretKey pbeKey = keyFac.generateSecret(pbeKeySpec);
// Create PBE Cipher
Cipher pbeCipher = Cipher.getInstance("PBEWithMD5AndDES");
// Initialize PBE Cipher with key and parameters
pbeCipher.init(Cipher.DECRYPT_MODE, pbeKey, pbeParamSpec);
byte fileData[] = encrypt.getBytesFromFile (file);
byte[] cleartext = pbeCipher.doFinal(fileData);
String asdf = new String (cleartext, "UTF-8");
System.out.println("Decrypted text:");
System.out.println (asdf);
return true;
catch (Exception e) {
System.out.println ("encrypt(): exception caught: " + e.toString());
System.out.println ("encrypt(): exception message: " + e.getMessage());
return false;
// This function started from an example provided at the following web page:
// http://java.sun.com/j2se/1.4.2/docs/guide/security/jce/JCERefGuide.html
private static boolean jarble (String file, String output, char pass[]) {
try {
PBEKeySpec pbeKeySpec;
PBEParameterSpec pbeParamSpec;
SecretKeyFactory keyFac;
// Salt
byte[] salt = {
(byte)0xc7, (byte)0x73, (byte)0x21, (byte)0x8c,
(byte)0x7e, (byte)0xc8, (byte)0xee, (byte)0x99
// Iteration count
int count = 20;
// Create PBE parameter set
pbeParamSpec = new PBEParameterSpec(salt, count);
pbeKeySpec = new PBEKeySpec(pass);
keyFac = SecretKeyFactory.getInstance("PBEWithMD5AndDES");
SecretKey pbeKey = keyFac.generateSecret(pbeKeySpec);
// Create PBE Cipher
Cipher pbeCipher = Cipher.getInstance("PBEWithMD5AndDES");
// Initialize PBE Cipher with key and parameters
pbeCipher.init(Cipher.ENCRYPT_MODE, pbeKey, pbeParamSpec);
byte[] cleartext = encrypt.getBytesFromFile (file);
String asdf = new String (cleartext, "UTF-8");
System.out.println("encrypt(): original text");
System.out.println (asdf);
// Encrypt the cleartext
byte[] ciphertext = pbeCipher.doFinal(cleartext);
asdf = new String (ciphertext, "UTF-8");
System.out.println ("encrypt(): encrypted text");
System.out.println (asdf);
// write the file
DataOutputStream out = new DataOutputStream (new FileOutputStream (output));
out.write (ciphertext, 0, ciphertext.length);
System.err.println (ciphertext.length);
out.close();
return true;
catch (Exception e) {
System.out.println ("jarble(): exception caught: " + e.toString());
System.out.println ("jarble(): exception message: " + e.getMessage());
return false;
// Returns the contents of the file in a byte array.
private static byte[] getBytesFromFile(String str) throws IOException {
File file = new File (str);
InputStream is = new FileInputStream(file);
// Get the size of the file
long length = file.length();
// You cannot create an array using a long type.
// It needs to be an int type.
// Before converting to an int type, check
// to ensure that file is not larger than Integer.MAX_VALUE.
if (length > Integer.MAX_VALUE) {
// File is too large
return null;
// Create the byte array to hold the data
byte[] bytes = new byte[(int)length];
// Read in the bytes
int offset = 0;
int numRead = 0;
while (offset < bytes.length
&& (numRead=is.read(bytes, offset, bytes.length-offset)) >= 0) {
offset += numRead;
// Ensure all the bytes have been read in
if (offset < bytes.length) {
throw new IOException("Could not completely read file "+file.getName());
// Close the input stream and return bytes
is.close();
return bytes;
* Reads user password from given input stream.
private static char[] readPasswd(InputStream in) throws IOException {
char[] lineBuffer;
char[] buf;
int i;
buf = lineBuffer = new char[128];
int room = buf.length;
int offset = 0;
int c;
loop: while (true) {
switch (c = in.read()) {
case -1:
case '\n':
break loop;
case '\r':
int c2 = in.read();
if ((c2 != '\n') && (c2 != -1)) {
if (!(in instanceof PushbackInputStream)) {
in = new PushbackInputStream(in);
((PushbackInputStream)in).unread(c2);
} else
break loop;
default:
if (--room < 0) {
buf = new char[offset + 128];
room = buf.length - offset - 1;
System.arraycopy(lineBuffer, 0, buf, 0, offset);
Arrays.fill(lineBuffer, ' ');
lineBuffer = buf;
buf[offset++] = (char) c;
break;
if (offset == 0) {
return null;
char[] ret = new char[offset];
System.arraycopy(buf, 0, ret, 0, offset);
Arrays.fill(buf, ' ');
return ret;

Similar Messages

  • TS5376 I did as this article described.  The download was going smoothly until I got this error message "Click OK or enter alternate path to folder in installation package containing the file itunes.msi"   Where can I get "itunes.msi"  ??

    I did as this article described.  The download was going smoothly until I got this error message "Click OK or enter alternate path to folder in installation package containing the file itunes.msi"   Where can I get "itunes.msi"  ??

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Please help.. I have just tried to install lion on my iMac and it can't complete because of 'disk error'.. can i delete lion and go back to leopard as there was no problem there?? can't get past grey screen

    Please help.. I have just tried to install lion on my iMac and it can't complete because of 'disk error'.. can i delete lion and go back to leopard as there was no problem there?? can't get past grey screen

    Just restore your bootable backup/clone or Time Machine backup.

  • TS5376 I just attempted to update my apple iTunes to 11.1.4 which resulted in the msvcr80.dll error message. I followed all of the instructions above and now I can't get past the Service 'Apple Mobile Divice failed to start. Help!!!

    I just attempted to update my apple iTunes to 11.1.4 which resulted in the msvcr80.dll error message. I followed all of the instructions to move the .dll's to the desktop, I removed iTunes via the control panel, and now I can't get past the Service 'Apple Mobile Divice failed to start. Verify that you have sufficent privilidges to start systems services. I now have no iTunes on my laptop, can't reinstall iTunes, and I am pulling my hair out because I can not figure out how to send an e-mail to Apple because I bought my iPad just over a year ago. PLEASE HELP!!!
    V/r "TRACER"
    CDR Harold W. "TRACER" Valentine, SC, USN

    Solving the iTunes Installation Problems in Windows
    1. Apple has posted their solution here: iTunes 11.1.4 for Windows- Unable to install or open - MSVCR80 issue.
    2. If the Apple article does not fully resolve the problem for you, then try Troubleshooting issues with iTunes for Windows updates - MSVCR80.

  • Hi, Im trying to install the CC installer on my new MacPro. When the installer loads it says there's a "Download Error" and can't get beyond that. Everything work fine on my old Mac. Any Ideas?

    Im trying to install the CC installer on my new MacPro. When the installer loads it says there's a "Download Error" and can't get beyond that. Everything work fine on my old Mac. Any Ideas?

    Chasel please see Error downloading Creative Cloud applications - http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html for information on how to resolve download errors.

  • Can't get past OCX error when installing ODAC 11g on Windows Server 2003

    I have been trying to install ODAC 11g on Windows Server 2003 and can't get past the OCX error when registering oravsdbgeng11w.dll. I've read every message on this forum even remotely related to this problem and tried every solution offered. I have done a clean install into a new Oracle home, and made sure Instant Client is always included. All service packs and automatic updates have been installed. For what it's worth I have successfully installed ODAC 11g on Windows XP Pro.
    If anyone out there has been able to get this up and running and would care to share the wisdom that would be greatly appreciated.
    Thanks!
    Michael Young
    Latitude Geographics
    Victoria, BC

    Michael, as you already noticed, every time I have seen this issue it has been because ODT was being installed into an Oracle home where no client exists, or perhaps installed into an old oracle home where the client was an old version (eg Oracle10), or the client was broken. Usually though, the user unchecked the instant client checkbox during the ODAC install.
    So you say you checked instant client and you still got the error? That doesn't add up...
    Are you using 32-bit windows? If you are using 64 bit windows be sure to tell us.
    Why don't you try avoiding using instant client at all, in case it is somehow not getting installed properly.
    You can do this as follows:
    1) Under the download links on OTN, go to the database download page.
    2) Download the Oracle Database client 11g for Microsoft Windows
    3) Run this installer and Install ODP.NET 1.x and 2.x into a new Oracle home from this client install, but nothing else. If ODP.NET is not listed there (it has been a long time since I looked at that) than just install a minimal Oracle client install.
    4) Close the installer
    5) Go back and install ODAC and this time choose "Oracle Server" radio button during the install (rather than the client install)
    6) Install ODT and ODP.NET at least and be sure they are being installed into the Oracle home created in the first steps above.
    This will avoid use of Instant Client and will hopefully avoid the OCX error. Let me know if this solves your problem.
    Christian

  • I've spent 6 hours trying to update my iPad, and it doesn't work. It can't get past trying to back up, and just stops and gives an error code. I've deleted the backup, re-synced, and tried again and still no luck. What do I do now?

    I've spent 6 hours trying to update my iPad, and it doesn't work. It can't get past trying to back up, and just stops and gives an error code. I've deleted the backup, re-synced, and tried again and still no luck. What do I do now?

    I am not running any antivirus software on my Mac, and I have the firewall shut off. Any other ideas? I have not problem downloading all other Apple software updates. I downloaded the latest iTunes software before starting the iPad update process.

  • Changed my exchange email on work computer (req. every 3 months), now I can't get past incorrect password error on iPad.

    I'm required to change my exchange email password every 3 months on my work computer.  Now I can't get past the incorrect email error on my iPad.  It won't accept my new or old exchange password and won't let me get past the error to do anything else on my iPad.  Hitting cancel doesn't help, the error just comes back a second later, so my iPad is useless for anything else and I can't get to Settings to either enter the new password for the account or delete and re-enter the account. Is there some kind of soft reset I can do? Any other suggestions?

    I saw some other posts on the web and completely powered off of the iPad.  Then turned it on again and was able to quickly go to Settings and update the password.  So this is no longer an issue for me.  Just a pain that this is what I'll have to do every three months when I have to change my exchange password again.

  • HT1926 Trying to repair a botched ITunes update, following dicrections, keep getting "fatal error" when removing Apple Mobile Device Support. Can't get past this step to reinstall. Any advice? Thanks!

    Trying to repair a botched ITunes update, following dicrections, keep getting "fatal error" when removing Apple Mobile Device Support. Can't get past this step to reinstall. Any advice? Thanks!

    Hey there!
    I've spent the best part of the day unpicking this huge mess from the upgrade I completed last night - what a nightmare. I followed a tonne of advice - [actaully, this link was really helpful to me]: http://pcsupport.about.com/od/findbyerrormessage/a/msvcr80-dll-not-found-missing -error.htm however, I still could not fix the **** thing - and that was following basically a day of uninstalling, installing etc.
    In the end - I completed a system restore taking my computer back about five days, and just ignoring the new upgrade with itunes until they can get this fixed.
    I hope that this might work for you and anyone else reading this. It nearly drove me to drink [!]. I seemed to get past one error message and have it replaced by another - so the system restore was basically the last resort.
    Good luck - !

  • How can I get past the error messages that keep popping up when I try to download Flash player?

    How can I get past the error messages that keep popping up every time I try to download anything?

    Hi
    Could you please let us know more about the error messages that you got?
    The following page has information on the error messages: http://helpx.adobe.com/content/help/en/flash-player/kb/installation-problems-flash-player- windows.html
    Thanks,
    Sunil

  • I forgot my hidden file manager password,How can i get back my files

    I forgot Hidden file manager password,how can i get back my my data

    If you are able to Get Info on the folder of interest go the the very bottom section Sharing and Permissions.
    You can gain access to this area by clicking on the lock in the lower right corner of the Get Info window.
    Once you have input the admin password for the computer you should be able to edit the permissions on that file/directory. 

  • When making a photo book, my iPhoto freezes during uploading the book to the store after assembly.  I have attempted this 4 times now and I don't know what to do! I know the file size is massive due quantity of large images. How can I get past this?

    When making a photo book, my iPhoto freezes during uploading the book to the storey.  I have attempted this 4 times now and I don't know what to do! I know the file size is massive due quantity of large image files, but I don't want to reduce the image file size and compromise quality in the book. How can I get past this?
    My macbook air is os x 10.9, using iPhoto 11 9.5 (902.7).

    Try Old Toad's solution here:   See   Re: iphoto : upload impossible to print a book
    Try to boot into Safe Mode and order this way, or sign into a different user account and try to order as a different user.
    Léonie

  • I try to log in to password protected sites and nothing happens but works fine on Internet Explorer. Can't get past login page. I even had to use Internet Explorer to login to ask this question!

    I try to log in to password protected sites and nothing happens but works fine on Internet Explorer. Can't get past log in page. I even had to use Internet Explorer to login to ask this question!
    On the page where you enter username and password after entering and pressing "Log in" the page just stays in place. If you look at the error log you see
    "Warning: Unknown property 'border-radius'. Declaration dropped.
    Source File: https://support.mozilla.com/media/css/common-min.css?build=3fabbc0
    Line: 1"

    Make sure that you do not block the referrer.
    * http://kb.mozillazine.org/network.http.sendRefererHeader
    Also make sure that you do not block cookies in Firefox or the firewall.
    * [[Cookies]]
    * [[Enabling and disabling cookies]]

  • How can I get past "close IE" to continue the install even though IE is closed?

    I keep trying to install flash for win7 pro 64 bit and it stops half way through and even though I've closed IE, it will not get past 50%.  The other thing that concerns me is that flash 32 bit is installed but I can't uninstall it even using adobe's uninstall.  I get the same error message that I have to close IE even though it is not open.  I've been through all of the troubleshooting steps.  I have adobe in my accepted list with https:
    Anyone know the answer to this?  I can't watch anything online without it.  If not, can someone tell me how to contact adobe for this problem because I have no other options.

    Here's the log.  Thanks again.
    =O====== M/11.5.502.135 2012-12-15+20-32-06.034 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001113 C:\Windows\SysWOW64\Macromed\Flash
    * 3
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\ProgramData\Adobe\AIH.be8c985f293b5564c726f5adc6bdb778d77c90d1\install_flash_player_ax .exe"
    -install -iv 8 -au 0
    0002 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001036 Software\Macromedia\FlashPlayer\SafeVersions/11.0 2
    0003 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0005 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000011 1
    0007 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe
    Flash Player ActiveX/ 2
    0008 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000013
    C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_5_502_135.ocx
    0009 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_5_502_135_ActiveX.exe
    0010 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000016
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_5_502_135_ActiveX.dll
    0011 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000023 C:\Windows\SysWOW64\Macromed\Flash\activex.vch
    0012 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0013 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000021
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0014 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000012
    =X====== M/11.5.502.135 2012-12-15+20-32-11.265 ========
    2013-3-28+21-33-6.771 Re: How can I get past "close IE" to continue the install even though IE is closed? 1226 1062
    =O====== M/11.6.602.180 2013-03-28+21-32-59.642 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010 FlashPlayerInstaller.exe -install -iv 9
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000011 1
    0002 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0003 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000013
    C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_6_602_180.ocx
    0004 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_6_602_180_ActiveX.exe
    0005 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000016
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_6_602_180_ActiveX.dll
    0006 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000023 C:\Windows\SysWOW64\Macromed\Flash\activex.vch
    0007 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    0009 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024 C:\Windows\SysWOW64\FlashPlayerApp.exe 183
    0010 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000021
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0011 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001106
    0012 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001106
    0013 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0014 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000012
    =X====== M/11.6.602.180 2013-03-28+21-33-08.331 ========
    =O====== M/11.2.202.228 2013-04-06+01-32-58.373 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010 "C:\Program Files (x86)\Flash Player
    Pro\FlashActivex.exe" -install
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001013
    =X====== M/11.2.202.228 2013-04-06+01-32-58.838 ========
    2013-4-6+2-50-39.64 Re: How can I get past "close IE" to continue the install even though IE is closed? 1226 1062
    =O====== M/11.6.602.180 2013-04-06+02-50-35.367 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_6_602_180_ActiveX.exe"
    -maintain activex
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_6_602_180_ActiveX.exe 5
    0002 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000018
    0003 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_6_602_180_ActiveX.exe 5
    0004 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_6_602_180_ActiveX.dll 5
    0005 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000018
    0006 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_6_602_180_ActiveX.dll 5
    0007 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001037
    Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0008 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0009 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0010 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0011 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001037 Software\Microsoft\Code Store Database\Distribution
    Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0012 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001021
    0013 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0014 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0015 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0016 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0017 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001037 Software\Microsoft\Windows\CurrentVersion\Control
    Panel\Extended
    Properties\System.ControlPanel.Category/C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    2
    0018 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0019 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0020 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_6_602_180_ActiveX.dll 5
    0021 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_6_602_180_ActiveX.exe 5
    0022 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000011 1
    0023 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000012
    =X====== M/11.6.602.180 2013-04-06+02-50-41.731 ========
    =O====== M/11.6.602.180 2013-04-06+03-03-39.682 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\Users\Owner\AppData\Local\Temp\{1C7DA24F-9A85-4354-B01B-0E400C687BD0}\InstallFlashPlay er.exe"
    -iv 6
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0002 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0005 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000011 1
    0006 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe
    Flash Player ActiveX/ 2
    0008 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File
    Execution Options
    FlashUtil32_11_6_602_180_ActiveX.exe/ 2
    0009 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000013
    C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_6_602_180.ocx
    0010 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_6_602_180_ActiveX.exe
    0011 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000016
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_6_602_180_ActiveX.dll
    0012 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000023 C:\Windows\SysWOW64\Macromed\Flash\activex.vch
    0013 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0014 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000021
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0015 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000012
    =X====== M/11.6.602.180 2013-04-06+03-04-05.768 ========
    =O====== M/11.6.602.180 2013-04-06+03-03-34.471 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    C:\Users\Owner\AppData\Local\Temp\IDC2.tmp\FP_AX_CAB_INSTALLER64.exe
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000011 1
    =X====== M/11.6.602.180 2013-04-06+03-04-05.799 ========
    =O====== M/11.7.700.169 2013-04-15+22-20-37.668 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\ProgramData\Adobe\AIH.541299abd1ae43ee4cdc1e1bae6baa3d92d8c911\install_flash_player_ax .exe"
    -install -iv 8
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000011 1
    0002 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0003 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_6_602_180.ocx 5
    0004 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000018
    0005 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_6_602_180.ocx 5
    0006 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000013
    C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_7_700_169.ocx
    0007 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_169_ActiveX.exe
    0008 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000016
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_169_ActiveX.dll
    0009 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000023 C:\Windows\SysWOW64\Macromed\Flash\activex.vch
    0010 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0011 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    0012 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024 C:\Windows\SysWOW64\FlashPlayerApp.exe 183
    0013 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000021
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0014 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001106
    0015 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001106
    0016 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0017 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000012
    =X====== M/11.7.700.169 2013-04-15+22-20-44.397 ========
    =O====== M/11.7.700.169 2013-04-17+21-04-19.667 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\ProgramData\Adobe\AIH.541299abd1ae43ee4cdc1e1bae6baa3d92d8c911\install_flash_player_ax .exe"
    -install -iv 8
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001041
    =X====== M/11.7.700.169 2013-04-17+21-04-20.111 ========
    =O====== M/11.7.700.169 2013-04-17+21-04-34.544 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\ProgramData\Adobe\AIH.541299abd1ae43ee4cdc1e1bae6baa3d92d8c911\install_flash_player_ax .exe"
    -install -iv 8
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000011 1
    0002 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0003 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000013
    C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_7_700_169.ocx
    0004 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_169_ActiveX.exe
    0005 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000016
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_169_ActiveX.dll
    0006 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000023 C:\Windows\SysWOW64\Macromed\Flash\activex.vch
    0007 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    0009 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024 C:\Windows\SysWOW64\FlashPlayerApp.exe 183
    0010 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000021
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0011 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001106
    0012 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001106
    0013 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0014 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000012
    =X====== M/11.7.700.169 2013-04-17+21-04-40.864 ========
    =O====== M/11.7.700.169 2013-04-18+20-54-08.606 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\ProgramData\Adobe\AIH.541299abd1ae43ee4cdc1e1bae6baa3d92d8c911\install_flash_player_ax .exe"
    -install -iv 8
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001041
    =X====== M/11.7.700.169 2013-04-18+20-54-09.001 ========
    =O====== M/11.7.700.169 2013-04-18+20-54-55.906 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\ProgramData\Adobe\AIH.541299abd1ae43ee4cdc1e1bae6baa3d92d8c911\install_flash_player_ax .exe"
    -install -iv 8
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000011 1
    0002 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0003 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000013
    C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_7_700_169.ocx
    0004 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_169_ActiveX.exe
    0005 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000016
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_169_ActiveX.dll
    0006 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000023 C:\Windows\SysWOW64\Macromed\Flash\activex.vch
    0007 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    0009 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024 C:\Windows\SysWOW64\FlashPlayerApp.exe 183
    0010 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000021
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0011 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001106
    0012 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001106
    0013 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0014 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000012
    =X====== M/11.7.700.169 2013-04-18+20-55-01.498 ========
    =O====== M/11.7.700.169 2013-04-20+19-06-50.292 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\ProgramData\Adobe\AIH.541299abd1ae43ee4cdc1e1bae6baa3d92d8c911\install_flash_player_ax .exe"
    -install -iv 8
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001041
    =X====== M/11.7.700.169 2013-04-20+19-06-50.752 ========
    =O====== M/11.7.700.169 2013-04-20+19-07-01.517 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\ProgramData\Adobe\AIH.541299abd1ae43ee4cdc1e1bae6baa3d92d8c911\install_flash_player_ax .exe"
    -install -iv 8
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001041
    =X====== M/11.7.700.169 2013-04-20+19-07-01.836 ========
    =O====== M/11.7.700.169 2013-04-20+19-07-29.112 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\ProgramData\Adobe\AIH.541299abd1ae43ee4cdc1e1bae6baa3d92d8c911\install_flash_player_ax .exe"
    -install -iv 8
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000011 1
    0002 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0003 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000013
    C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_7_700_169.ocx
    0004 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_169_ActiveX.exe
    0005 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000016
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_169_ActiveX.dll
    0006 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000023 C:\Windows\SysWOW64\Macromed\Flash\activex.vch
    0007 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    0009 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024 C:\Windows\SysWOW64\FlashPlayerApp.exe 183
    0010 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000021
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0011 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001106
    0012 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001106
    0013 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0014 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000012
    =X====== M/11.7.700.169 2013-04-20+19-07-37.244 ========
    2013-5-15+16-5-0.242 Re: How can I get past "close IE" to continue the install even though IE is closed? 1223 1056
    2013-5-15+17-5-0.238 Re: How can I get past "close IE" to continue the install even though IE is closed? 1223 1056
    2013-5-15+21-5-38.607 Re: How can I get past "close IE" to continue the install even though IE is closed? 1226 1062
    =O====== M/11.7.700.202 2013-05-15+21-05-15.971 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010 FlashPlayerInstaller.exe -install -iv 11
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000011 1
    0002 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0003 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_7_700_169.ocx 5
    0004 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000018
    0005 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_7_700_169.ocx 5
    0006 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_169_ActiveX.exe 5
    0007 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_169_ActiveX.exe 5
    0008 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000013
    C:\Windows\TEMP\{5C63C4B9-4783-428B-B30C-14A370087C3A}\Flash32_11_7_700_202.ocx
    0009 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000025
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_202_ActiveX.exe
    0010 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_202_ActiveX.exe
    0011 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000016
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_202_ActiveX.dll
    0012 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000023 C:\Windows\SysWOW64\Macromed\Flash\activex.vch
    0013 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0014 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    0015 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024 C:\Windows\SysWOW64\FlashPlayerApp.exe 183
    0016 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000021
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0017 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001106
    0018 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001106
    0019 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0020 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000012
    =X====== M/11.7.700.202 2013-05-15+21-05-41.118 ========
    2013-6-12+16-5-14.181 Re: How can I get past "close IE" to continue the install even though IE is closed? 1226 1062
    =O====== M/11.7.700.224 2013-06-12+16-05-03.787 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010 FlashPlayerInstaller.exe -install -iv 11
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000011 1
    0002 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0003 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_7_700_202.ocx 5
    0004 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000018
    0005 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_7_700_202.ocx 5
    0006 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_202_ActiveX.exe 5
    0007 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_202_ActiveX.exe 5
    0008 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000013
    C:\Windows\TEMP\{08741A8A-EFE6-42A9-A02A-03D9A6A67093}\Flash32_11_7_700_224.ocx
    0009 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000025
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_224_ActiveX.exe
    0010 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_224_ActiveX.exe
    0011 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000016
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_224_ActiveX.dll
    0012 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000023 C:\Windows\SysWOW64\Macromed\Flash\activex.vch
    0013 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0014 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    0015 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024 C:\Windows\SysWOW64\FlashPlayerApp.exe 183
    0016 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000021
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0017 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001106
    0018 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001106
    0019 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0020 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000012
    =X====== M/11.7.700.224 2013-06-12+16-05-15.581 ========
    =O====== M/11.8.800.94 2013-07-11+08-11-12.586 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\Users\Julia\AppData\Local\Adobe\AIH.0b83b6ee08fcfaebb75fd1e42f6a88b136a03e8f\install_f lash_player_ax.exe"
    -install -iv 10
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000011 1
    0002 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0003 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_7_700_224.ocx 5
    0004 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000018
    0005 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_7_700_224.ocx 5
    0006 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_224_ActiveX.exe 5
    0007 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_7_700_224_ActiveX.exe 5
    0008 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_8_800_94.ocx
    0009 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_8_800_94_ActiveX.exe
    0010 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000016
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_8_800_94_ActiveX.dll
    0011 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000023 C:\Windows\SysWOW64\Macromed\Flash\activex.vch
    0012 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0013 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    0014 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024 C:\Windows\SysWOW64\FlashPlayerApp.exe 183
    0015 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000021
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0016 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001106
    0017 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001106
    0018 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001024
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0019 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000012
    =X====== M/11.8.800.94 2013-07-11+08-11-18.980 ========
    =O====== M/11.8.800.94 2013-08-01+17-53-50.778 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\Users\Julia\AppData\Local\Adobe\AIH.c019aafa1697aad2f600a7afbec7fe96baf3754e\install_f lash_player_ax.exe"
    -install -iv 8
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001041
    =X====== M/11.8.800.94 2013-08-01+17-53-51.207 ========
    =O====== M/11.8.800.94 2013-08-01+17-54-10.114 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\Users\Julia\AppData\Local\Adobe\AIH.c019aafa1697aad2f600a7afbec7fe96baf3754e\install_f lash_player_ax.exe"
    -install -iv 8
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001041
    =X====== M/11.8.800.94 2013-08-01+17-54-10.480 ========
    =O====== M/11.8.800.94 2013-08-01+17-54-23.394 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\Users\Julia\AppData\Local\Adobe\AIH.c019aafa1697aad2f600a7afbec7fe96baf3754e\install_f lash_player_ax.exe"
    -install -iv 8
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001041
    =X====== M/11.8.800.94 2013-08-01+17-54-23.701 ========
    =O====== M/11.8.800.94 2013-08-01+17-54-39.228 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\Users\Julia\AppData\Local\Adobe\AIH.c019aafa1697aad2f600a7afbec7fe96baf3754e\install_f lash_player_ax.exe"
    -install -iv 8
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001041
    =X====== M/11.8.800.94 2013-08-01+17-54-39.552 ========
    =O====== M/11.8.800.94 2013-08-01+17-54-40.563 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\Users\Julia\AppData\Local\Adobe\AIH.c019aafa1697aad2f600a7afbec7fe96baf3754e\install_f lash_player_ax.exe"
    -install -iv 8
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001041
    =X====== M/11.8.800.94 2013-08-01+17-54-40.871 ========
    =O====== M/11.8.800.94 2013-08-01+17-54-50.766 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\Users\Julia\AppData\Local\Adobe\AIH.c019aafa1697aad2f600a7afbec7fe96baf3754e\install_f lash_player_ax.exe"
    -install -iv 8
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001041
    =X====== M/11.8.800.94 2013-08-01+17-54-51.085 ========
    =O====== M/11.8.800.94 2013-08-01+17-54-52.246 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\Users\Julia\AppData\Local\Adobe\AIH.c019aafa1697aad2f600a7afbec7fe96baf3754e\install_f lash_player_ax.exe"
    -install -iv 8
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001041
    =X====== M/11.8.800.94 2013-08-01+17-54-52.564 ========
    =O====== M/11.8.800.94 2013-08-28+16-08-05.449 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\Users\Julia\AppData\Local\Adobe\AIH.c019aafa1697aad2f600a7afbec7fe96baf3754e\install_f lash_player_ax.exe"
    -install -iv 8
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001041
    =X====== M/11.8.800.94 2013-08-28+16-08-06.165 ========
    =O====== M/11.8.800.94 2013-08-28+16-08-13.895 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\Users\Julia\AppData\Local\Adobe\AIH.c019aafa1697aad2f600a7afbec7fe96baf3754e\install_f lash_player_ax.exe"
    -install -iv 8
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001041
    =X====== M/11.8.800.94 2013-08-28+16-08-14.347 ========
    2013-8-28+16-41-42.474 Re: How can I get past "close IE" to continue the install even though IE is closed? 1226 1062
    =O====== M/11.8.800.94 2013-08-28+16-41-35.678 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_8_800_94_ActiveX.exe"
    -maintain activex
    0001 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_8_800_94_ActiveX.exe 5
    0002 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000018
    0003 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_8_800_94_ActiveX.exe 5
    0004 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_8_800_94_ActiveX.dll 5
    0005 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000018
    0006 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_8_800_94_ActiveX.dll 5
    0007 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001037
    Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0008 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0009 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0010 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0011 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001021
    0012 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0013 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0014 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0015 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0016 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001037 Software\Microsoft\Windows\CurrentVersion\Control
    Panel\Extended
    Properties\System.ControlPanel.Category/C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    2
    0017 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0018 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0019 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_8_800_94_ActiveX.dll 5
    0020 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_8_800_94_ActiveX.dll 5
    0021 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_8_800_94_ActiveX.exe 5
    0022 Re: How can I get past "close IE" to continue the install even though IE is closed? 00001015
    C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_8_800_94_ActiveX.exe 5
    0023 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000011 1
    0024 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000012
    =X====== M/11.8.800.94 2013-08-28+16-41-47.167 ========
    =O====== M/11.8.800.94 2013-08-28+16-54-36.411 ========
    0000 Re: How can I get past "close IE" to continue the install even though IE is closed? 00000010
    "C:\Users\Julia\AppData\Local\Adobe\AIH.34247ff3f66067577a7ca3739e0f2b44e8b29d3c\install_f lash_player_ax.exe"
    -install -iv 8 -au 0
    0001

  • I updated my IPhone 3GS to the newest software version, now I can't get past the activation stage. AT

    I updated my iPhone 3GS to the new version 6.1.3 and installed the new software. After doing this, I can't get past the activation stage in the process. I had AT&amp;T and the phone doctors look at it and they couldn't figure it out. Apple wants $175 for me to send it in but I shouldn't have to pay for an update malfunction. I am at the mercy of the good folks in Apple land to help me.

    Is your carrier still AT&T? What error message do you get when you try to activate it?
    Have you tried a new SIM? Was the phone jailbroken? Was the computer you used to update it ever used to jailbreak a phone? In general, this problem is caused by one of the following:
    1. Your antivirus is blocking access to gs.apple.com.
    2. Your phone is jailbroken.
    3. Your computer has been used at some time in the past to jaibreak some iOS device (not necessarily the phone with the problem), and its network database was corrupted by the hacking software that was used.
    4. Apple's activation servers are down (very rare, and never for more than an hour or so).
    For 1. try disabling your antivirus.
    For 2. & 3. you need to go somewhere other than an apple forum for help. Although you can try deleting lines containing gs.apple.com from your "hosts" file on your computer.

Maybe you are looking for

  • How to install and configure smtp on iis 7 on windows 7

    how to install and configure smtp on iis 7 on windows 7? Thanks!

  • Immediate HELP in Tomcat 5 to Postgresql 7.4 database connectivity problem

    Hi, I failed to connect Tomcat 5.0.24 with Postgresql 7.4.2. The files created by me and the changes i had made in the existing files are rates.jsp, conversionDAO.java, web.xml and server.xml. The error message on the top of the rest of it was "The v

  • How do I start on a particular frame?

    Hey guys, I need my Adobe Flash CS5 project to start on the 4th frame in the project on the timeline, instead of the first. I have tried gotoAndStop and gotoAndPlay, but both somehow disable other actions I have setup on the timeline, like on the web

  • Indesign CS5 Slow Scrolling

    Hello I'm currently being affected by a slow scrolling bug in InDesign CS5 where no matter what my scroll settings are the speed is constantly slow. Is there an override in InDesign somewhere to fix this? This was also present in CS4 but not quite as

  • Customize the notify-send window

    Hello. I tried to customize notify-send's window by creating a ~/.notify-osd file with this code in it, as i read somewhere on the net. The problem is that it doesn't seem to work. Is there any other way to customize it ? Im using XFCE 4. slot-alloca