Some Java applets do not work after the installation in silent mode, resolved in tilting head "enable Java content in the browser" - why?

We have about 1 800 workstations with Windows 7 (32-bit and 64-bit) running different versions of JRE Java 6 update via update 7 51 32.  Most are on 6 45 update.  We would like to standardize on update of Java 7 51 (32-bit) and get everyone updated to this version for security reasons.

For the last two weeks, we had trouble with our driver prior to installation.  What we are seeing, it of that our procedure successfully closed all open Internet Explorer Windows and processes related to Java, uninstall all older versions of JRE Java and says then successfully installed of the update of Java 7 51.  The Java Control Panel works.  We can even take Internet Explorer to check the Java Version or Java Tester - what Version of Java are you running? and confirm that the Java applets on these sites load (although the latter only works after adding the site to the list of site exceptions); However, when the testers try to access our system Kronos Workforce Central 6.3.10, used by this system Java applets do not load.

We tried the following things, which none worked:

  • Empty the Internet Explorer browser cache and cookies.
  • Clear the local Java cache.
  • Restart the computer.
  • Reset Internet Explorer settings, including personal settings.

Go to the Panel control Java, ranging in the Security tab, uncheck "enable Java in the browser content", the only thing that works based on apply, press OK in the pop-up window, checking the box "Enable Java in the browser content", press OK, press OK in the pop-up window and then restart Internet Explorer.  It is only after this point, all Java applets, including those used by Kronos Workforce Central 6.3.10, work.

What I need to know, is how I can automate the reset procedure from the box "Activate Java content in the browser" after installation, or I'm something wrong or missing a step in automatic installation that is originally for this?

We use Microsoft SCCM 2007 R3 to perform this upgrade, and everything is run on the client computer by using the SYSTEM account.  First of all, the "javaclean.ps1" PowerShell script is run, with part of the process of command line change of the strategy of running script PowerShell for Bypass.  This script handles the closure of Java-dependent applications and Java deals and uninstall older versions of Java.

javaclean.ps1:

#Find all Java products, excluding the automatic update that actually is uninstalled when the main installation is removed.

write-host "If you are looking for all versions of Java installed" - ForegroundColor yellow

[table] $javas = Get-WmiObject-query "select * from win32_Product where (name as" Java % ' or name like '% of Java (TM)' or "J2SE %") and <>the name «Java Auto Updater»»

If ($javas.count - gt 0)

{

write-host "Java is already installed" - ForegroundColor yellow

#Get all Java processes and kill them. If java is running and processes are not killed then this script will call a restart suddenly.

[table] $processes = Get-Process-name "Java * ' #-erroraction silentlycontinue

$processes += get-Process - name "iexplore" #-erroraction silentlycontinue

$processes += get-Process - name "firefox" #-erroraction silentlycontinue

$processes += get-Process - name 'chrome' #-erroraction silentlycontinue

$processes += get-Process - name "jqs" #-erroraction silentlycontinue

$processes += get-Process - Name "jusched" #-erroraction silentlycontinue

$processes += get-Process - Name 'jp2launcher' #-erroraction silentlycontinue

If ($processes. Count - gt 0)

{

foreach ($myprocess to $processes)

{

$myprocess.kill)

}

}

#Loop through the Java products installed.

{foreach ($java to $javas)

write-host "Uninstall" $java.name - ForegroundColor yellow.

$java. Uninstall()

}

}

Once this script is complete, SCCM calls a script VBS "install.vbs" to perform the installation of Java JRE 7 day 51.

install.vbs

'* ********************************

'*

' * Script: install JRE 7 routine

'*

' * Date: 14/03/14

' * Author: [REDACTED]

' * Rev: 1.0

' * Notes:

'*

'* ********************************

'--------------------------------

' / / / Common

'--------------------------------

Set objFSO = CreateObject ("Scripting.FileSystemObject")

Set objWshShell = CreateObject ("WScript.Shell")

«Get the system architecture»

Protected colSys: Set colSys = GetObject("WinMGMTS://"). ExecQuery ("SELECT AddressWidth FROM Win32_Processor", 48)

Dim objSys

For each objSys in colSys

If objSys.AddressWidth = 64 then bolIs64Bit = True

Next

'Get the operating system

Dim colOS: Set colOS = GetObject("WinMGMTS://"). ExecQuery ("" Select * from Win32_OperatingSystem ", 48")

Dim objOS

For each COS in colOS

If left (objOS.caption, 20) = 'Microsoft Windows 8' then

bolIsWin8 = True

WScript.Echo "win8.

End If

If left (objOS.caption, 22) = "Microsoft Windows 8.1" Then

bolIsWin81 = True

WScript.Echo "win81."

End If

Next

' Set 32-bit directory program files

If bolIs64Bit = True Then

strPFILES = "Program Files (x 86)".

strSYSDIR = "SysWOW64".

Else strPFILES = "Program Files."

strSYSDIR = "System32".

End If

' Set repertoire_windows

strWIN = objWshShell.ExpandEnvironmentStrings("%windir%") "

'Set the current directory ".

strCurrentDir = objFSO.GetParentFolderName (Wscript.ScriptFullName)

' Set computer name

strCompName = objWshShell.ExpandEnvironmentStrings("%computername%") "

'--------------------------------

' / / / Main script

'--------------------------------

'--------------------------------

' / / / Installation using .msi & capture exit code

'--------------------------------

' intExitCode = objWshShell.Run ("msiexec.exe i" "" & strCurrentDir & "\package.msi" "" & "TRANSFORMS =" "" & strCurrentDir & _)

""\transform.mst"" "ALLUSERS = 1 Reboot = ReallySuppress/SB»(, 8, True)"

' wscript.quit (intExitCode)

' * COMMANDS RUN HERE *.

"Create the folder structure if it does not already exist

strFullPath = 'c:\Windows\Sun\Java\Deployment' "

"How many levels are there in the path?

nLevel = 0

strParentPath = strFullPath

Do until strParentPath = «»

strParentPath = objFSO.GetParentFolderName (strParentPath)

nLevel = nLevel + 1

Loop

ILevel = 1 to nLevel

"Path of directory to the iLevel level to understand

strParentPath = strFullPath

For j = 1 To nLevel - iLevel

strParentPath = objFSO.GetParentFolderName (strParentPath)

Next

' Is it exist directory? If not, create it.

If objFSO.FolderExists (strParentPath) = False Then

Set newFolder = objFSO.CreateFolder (strParentPath)

End If

Next

"Kill process

objWshShell.Run "taskkill /F /IM iexplore.exe", 8, True

objWshShell.Run "taskkill /F /IM firefox.exe", 8, True

objWshShell.Run "taskkill /F /IM chrome.exe", 8, True

objWshShell.Run "taskkill /F /IM javaw.exe", 8, True

objWshShell.Run "taskkill /F /IM java.exe", 8, True

objWshShell.Run "taskkill /F /IM jqs.exe", 8, True

objWshShell.Run "taskkill /F /IM jusched.exe", 8, True

"Copy deployment files

objFSO.CopyFile strCurrentDir & "\deployment.config", "c:\Windows\Sun\Java\Deployment\", True

objFSO.CopyFile strCurrentDir & "\deployment.properties", "c:\Windows\Sun\Java\Deployment\", True

"Disable UAC".

' If bolIsWin8 or bolIsWin81 = True Then

"objWshShell.Run"reg.exe ADD HKLM/v PromptOnSecureDesktop t REG_DWORD 0 f d", 8, True"

"objWshShell.Run"reg.exe ADD HKLM v EnableLUA /t REG_DWORD /d 0 f", 8, True"

"objWshShell.Run"reg.exe ADD HKLM/v ConsentPromptBehaviorAdmin t REG_DWORD 0 f d", 8, True"

"End If

"Install application".

intExitCode = objWshShell.Run ("msiexec.exe i" "" & strCurrentDir & "\jre1.7.0_51.msi" "IEXPLORER = 1 AUTOUPDATECHECK = 0 = 0 JU JAVAUPDATE = 0 WEB_JAVA = 1 ALLUSERS = 1 Reboot = ReallySuppress/qn", 8, True ")

"Enable UAC".

' If bolIsWin8 or bolIsWin81 = True Then

"objWshShell.Run"reg.exe ADD HKLM/v PromptOnSecureDesktop /t REG_DWORD /d 1 f", 8, True"

"objWshShell.Run"reg.exe ADD HKLM EnableLUA /t REG_DWORD /d 1 f v", 8, True"

"objWshShell.Run"reg.exe ADD HKLM v ConsentPromptBehaviorAdmin /t REG_DWORD /d 5 f", 8, True"

"End If

WScript.Quit (intExitCode)

'--------------------------------

' / / / Installation via .exe on network

'--------------------------------

"objWshShell.Run" "" "& strCurrentDir &"\Setup.exe"" s - sms - f1 "" "& strCurrentDir & _"

"" "\setup.iss" "-f2" "" & strWIN & "\Temp\Install-app.txt" "", 8, True

"Need to turn off the security warning opening the file first.

Set objEnv = objWshShell.Environment ("PROCESS")

objEnv ("SEE_MASK_NOZONECHECKS") = 1

' intExitCode = objWshShell.Run ("" "& strCurrentDir &"\jre-7u45-windows-i586.exe"" /s /v "" / norestart "& _)

("" "TRANSFORMS =" "" & strCurrentDir & "\Tribe-jre7.mst" "", 8, True)

' WScript.Quit (intExitCode)

' * COMMANDS RUN HERE *.

"Then turn it back on.

objEnv.Remove ("SEE_MASK_NOZONECHECKS")

'--------------------------------

' / / / Features

'--------------------------------

Help on this issue would be much appreciated!

It turns out that it is actually a problem with Kronos Workforce Central.  We had the parameter 'site.java.plugin.CLSID.familyVersion' as an application set to "clsid:CAFEEFAC-0016-0000-FFFF-ABCDEFFEDCBA", which is the CLSID Java Java 6.  After update this value to "clsid:8AD9C840 - 044F-11 D 1-B3E9-00805F499D93" (the universal CLSID of Java), this problem does not occur when the automatic upgrade of Java.

We also have good Java 6 and 7 in our environment and did during our implementation of Kronos, so I don't know why we used the Java 6 CLSID in the first place.

Detective Conan!

Tags: Java

Similar Questions

  • USB ports on the Satellite L30-105 does not work after the downgrade from Vista to XP

    Hello

    Model: Toshiba L30-105 PSL33E-02S02HFR.
    USB ports (2) do not work after the downgrade from vista to Windows xp family. All the drivers downloaded from Toshiba Web site.

    Thanks for any help,

    Camellia,

    Have you installed Win XP all service packs?
    SP2 provides some patches on the USB feature.

    You definitely need to update the Win XP OS

  • Automatic updates do not work after the repair of the windows XP operating system

    automatic updates of Windows do not work after the repair of the operating system

    Hello

    What exactly is the error message? Updates download? Are they trying to install but do not?

    Here are some common steps that you can take to solve the problem:

    http://support.Microsoft.com/kb/883614

  • Serial number does not work after the transfer of OSX and apps for the new Macbook Pro

    My serial number does not work after the transfer of applications and OS X for my new Mac.  Although the Adobe specifications say it is compatible with the older OS X, it does not seem to have no compatibility issues because

    -My old Macbook Pro has Yosemite and was fully running CS5 Web premium without a problem.

    -My new computer has the same * exact * OS X transferred in which the suite was fully functional with the trial.

    A support of top-level, software engineer, or someone who takes care of the soap operas could

    -Please provide a number of test series to test with?

    - And/or activate my series?

    - Or show how to disable the publication series on the old disk hard if I can't use the old computer?  So that I can use with the new computer?

    I chatted with technical support that keeps saying that it's a compatibility problem, to install with old OS X or buy a newer version. But I know that CS5 works with Yosemite (as I use it myself), and the only question I had is that serial # says invalid, which is separate from the functionality of the program.

    I'd rather not spend hundreds more to get a new suite, when I spent a lot for CS5 already and know is fully functional on Yosemite.  I have also not return to an older operating system and break things.

    Moreover, I used to be a general technical Support and I am a coder of web applications, so I understand that this isn't just some sort of "reboot" of the question

    No info to solve this, or a means to achieve at the highest level Tech support, would be greatly appreciated!

    Thank you!

    Transferred apps will certainly question of activation, because licenses files creation is completely dependent on machine, it willl created according to the particular Machine ID, if you transfer the application from one computer to another, there is incompatibility.

    Therefore, it is very necessary that you are using the original installation media.

    Download the CS5 products

    If you do not agree with the process of removing and reinstalling, try wiping the contents of SLCache and rename the SLStore folder.


    WARNING: Do not forget once erase you the contents of this folder, all Adobe applications will ask the new license or re-enter the serial number.

    Location: /Library/Application Support / Adobe.

    It is strictly recommended to install Adobe applications using the original installation media.

  • Screenshots do not work after the IOS10.

    Screenshots do not work after the IOS10. I've tried several apps and the iPhone and iPad.

    Help please.

    < re-titled by host >

    You hold down the sleep/wake button first, the fast, click the Home button?

    Have you tried a hard reset of your iPad by pressing the sleep/wake and Home buttons simultaneously until your iPad goes to black and restarts with the Apple logo and then release the buttons?

    Good luck!

  • Delete buttons do not work after the update of 10.11.16.

    Delete buttons do not work after the update of 10.11.16.  The delete button works if I pointed out and then delete, but not if I use the "back" button or try a removal of uniqueness.  It is a problem in all applications.  I tried it in textedit, search google chrome, safari search and find finder engine.  There seems to be a 'problem' of the keyboard' as far as I know nothing happened to my keyboard, IE the spilt coffee, that recent warming has been updated to 10.11.16.  I use an iMac (27-inch, late 2009) with i5 clocked at 2.66 GHz, running OS X El Capitan.

    Any suggestion would be appreciated.

    Greetings, r.fromstouffville!

    It seems that the 'Delete' on your iMac keyboard key works as it is supposed to be after update to OS X 10.11.6. I'll be happy to help you get these keys working again.

    Reset of the controller management system (SCM) on your Mac - sometimes it's a matter of simply resetting your iMac SMC. Open this article and scroll down to "Reset the SMC on Mac desktop" section and follow the steps there.

    Try safe mode if your Mac does not start -even if your iMac, safe mode startup make sure it starts successfully.

    How to test one question in another user on your Mac account - use this article if restarting in safe mode did not help.

    Use Time Machine to back up or restore your Mac - if your keyboard does not always work as it should, I recommend you save your iMac to ensure that your personal data are safe. It is always better "to have" a backup for a backup "need."

    On OS X Recovery - if you have reached this point, you encounter the same problem in a test user account, that would mean it is a system-w. Start your iMac into Recovery Mode and reinstall the operating system.

    Thank you for the communities of Apple Support!

  • My apple pencil does not work after the 9.3.4 update.

    My apple pencil does not work after the 9.3.4 update. I tried to restart but still does not work. Tried to forget the device and whenever I connect the pencil to the ipad pro, it is said that it does not recognize the cable / device. Help please.

    < re-titled by host >

    Greetings RechargeableJam,

    Welcome to the communities of Apple Support!

    I see that your Apple pencil does not work after update to iOS 9.3.4. I guess it's about to have a problem with something that worked with the previous version of the iOS software. I'm happy to help you to help you find the best resolution.

    First of all, let's close open applications on your iPad Pro. This can ensure that there is nothing running in the background that is causing a conflict. The following article will help you:

    Force a nearby application on your iPhone, iPad or iPod touch

    Then connect the pencil of Apple and see if it is recognized for the time being. If you don't see the Pair button, wait a minute while your Apple pencil costs. Then disconnect your Apple pencil, Plug and back on hold until you see the button in hand.

    Best regards.

  • Satellite P855 - function keys do not work after the upgrade to Windows 10

    Function keys do not work after the upgrade to Windows 10
    I know that I need two drivers (Flash cards support utility) and (Toshiba function Key Utility), but on the page download Toshiba is not suitable for Windows 10.
    Anyone know when and if it will be available?
    Thank you

    I'm also waiting for Win10 of things and do not know with certainty how Toshiba will start with the support of Win10. I hope that will happen soon.

  • Satellite L655 touchpad button ON / OFF does not work after the installation of VAP

    Why the Start button / stop the touch pad does not work after the installation of vap?

    May I ask what system and what PPV version do you have installed?

    I assume you mean on the Fn + F9 key combination...
    Is this right?

    Another FN button work as shouldy?

  • Satellite L555 - 10K - FN keys do not work after the installation of Windows 10

    I installed 10 64-bit Windows (original was Windows 7 64-Bit)

    My FN keys do not work after the installation of Windows 10.

    There is no possibility of a screen-Switch, and the brightness setting and activate Touchpad...
    Do you know any help

    Hello

    I think that your model of laptop is not possible to Win10.
    Check it please https://forum.toshiba.eu/showthread...mation-website

  • HP ENVY dv6 Notebook PC: press the / STOP the envy of hp dv6 7204se do not work after the update of windows 10

    the power button of my hp dv6 7204se envy key do not work after the update of windows 10

    any help on this please?

    .

  • Want to dv6 Notebook PC 7226nr: scan fingerprint hp simplepass does not work after the upgrade to windows 10

    My HP SimplePass fingerprint reader does not work after the upgrade to Windows 10.  Is there a fix for this yet?

    I thought about it.  The upgrade to Windows apparently damaged 10 HP SimplePass software.  Once I uninstalled and reloaded the program, everything started working.

  • Photosmart C4280: Photosmart Essential 3.5 will not work after the Win 10 update

    The Photosmart Essential suite, which includes the scanning software will not work after the upgrade to Windows 10.   There is no message error that pop up or are listed in the event log.  Printing continues to function properly.    If the s/w is not compatible with Win 10 there the other scanning software free that I can use?

    Hello

    Thank you for using the forum.  Think that you are facing the same problems as others with Win 10 updates.

    Try this solution:

    http://h30434.www3.HP.com/T5/inkjet-printing/HP-Solution-Center-fails-to-launch-cannot-open-solution-here/m-p/5424438/highlight/true#M515792

     

    Hope that helps.

    Please click on "Bravo Thumbs up" as an encouragement and "Accept as solution" if it helped to solve your problem.

  • LIP does not work after the installation of a local language, writing in my windows software 8

    LIP does not work after the installation of a local language, writing in my windows software 8

    This icon is hidden... and there is no preview in the installed LIP.
    I hv uninstall the software, but for the LIPS does not work

    Hello

    You use the Microsoft Account or Local user account?

    Create a new user account and check the status of the question in the new user account.

    Create a user account

    http://Windows.Microsoft.com/en-in/Windows/create-user-account#create-user-account=Windows-8

    You can also refer to:

    User accounts: frequently asked questions.

    http://Windows.Microsoft.com/en-in/Windows-8/user-accounts-frequently-asked-questions

    Thank you.

  • Windows Update does not work after the hard drive has been replaced

    Hello
    I have the same problem, replaced in my Toshiba HD, rebuild from Sysimage, Windows Update does not work. A ran "fix the problem with the Microsoft Windows Update is not working.
    Problem still exist.
    The message that I got while trying to update: "Windows Update cannot currently check updates,
    because the service is not running. "You may need to restart you computer.
    Stop and then restart the service, still no luck.

    I ran Windows troubleshooting. He finds two problems with Windows Update components, it corrects.
    The problem still exists.

    The other post:

    Another interesting fact:
    After the reconstruction the new disk, user account control does not recognize Windows programs.
    for example: execution of Perfmon.exe, the Publisher is unknown! However, when I download the program Windows FixIt, Publisher is recognized as Microsoft Windows. It seems that user account control does not recognize the Windows programs that had found the new HD, but acknowledges those who is downloaded from the internet.
    I guess there is a problem with the license, Windows was preinstalled on the Toshiba and replace the hard drive could have caused a few conflicts of licensing.

    Separated from the:

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_vista-windows_update/Windows-Update-not-working-after-hard-drive/77ab54ca-34b0-49DF-a268-bd07db68d887

    The same problem. Cloned old HD on a larger hard drive. Everything worked perfectly except NO indexing and update WITHOUT windows - the two recurring problems that seem to appear on the forums after a change of hard disk.

    INDEXING resolved with change to "Intel rapid storage technology." Google what I put in quotes, choose the Download Center and get the specific to your OP and the controller software.

    UPDATES have been a little more frustrating. The microsoft .fixes and convenience stores were without help.

    Go to control panel / system and Maintenance / administration tools

    Select Services

    Stop the Background Intelligent Transfer Service

    Stop Windows Update

    In 'My Computer' go to Windows / Software Distribution

    Right-click "DataStore" folder. Rename it to Datastore.old

    Rename the folder 'Download' Download.old

    Return to Services and restart the Background Intelligent Transfer Service and Windows Update.

    Look for the updates. It will take some time because you deleted the database.

    I hope this helps!

Maybe you are looking for

  • Heelp me

    pliz pliz help me

  • Podcast icon is gone - iphone

    This is the first time I posted. According to me, I tried everything and could really do with some help. I lost my podcast icon on my phone. [iphone 6 iOS9.2] I tried to search for him on the phone, but nothing helped. It is not hidden in all folders

  • S.M.A.R.T Status: failed

    Recently, I went to system information and disk utility and saw that my SMART State is a failure. I did some research to find out that it's something that I need to fix immediately by: 1 save 2. replace the hard drive Before I do, but I have a few qu

  • How to clean up the code after pressing

    Hey,. I am trying to run a program that controls a remote power supply.  The way the supply (BK precision 1786-B) is controlled is by writing a table hexagonal 26 bytes with specific addresses for each order (20 = setting the remote control, 21 = exi

  • Since we installed the WiFi I can't sign in to Skype

    When I click on Skype icon, I get this this action is only valid for products that are currently installed.