Allowing Java Updater to run while using SRP/ The use of wildcards in a UNC path

Recently I have deployed Software Restriction Policies to block certain paths from being able to run *.EXEs . 
I have found this to be extremely successful and easy to manage with one exception:
Java. 
Here is what I have implemented as of now. 
Please disregard Spotify being allowed. It is a client network, so I lost that battle. 
The current rule for Java works like a champ. The only problem with this is that Java changes its updater name with every version pushed out. So here is the question...How to I allow java in such a way that I don't have to add an exemption for each version?
(I know I can do this ahead of time, but with a great number of clients this isn't a practical solution. Neither do I want more than a couple rules for one program) 
I have tried using wildcards to no avail. It seems the wildcards don't work as I would think they would. The following is a small sample of what I have tried. 
%userprofile%\appdata\local\Temp\jre-*.exe
%userprofile%\appdata\local\Temp\jre*.exe
%userprofile%\appdata\local\Temp\jre*-windows-i586-iftw.exe
%userprofile%\appdata\local\Temp\jre-?u??-windows-i586-iftw.exe
%userprofile%\appdata\local\Temp\jre???????????????????????.exe 
At this point I understand it may not be possible, but I figured I would bring it the forum to get some over-sized brains together. 
Obviously this is a response to CryptoLocker, Zeus and the others. If I cant find a way to dynamically allow certain programs like this I may just use the zipped folder paths, and scrap the rest. It seems that the main point of infection for my clients are
the fraudulent emails (not the compromised sites) which generally encapsulate their EXEs in zipped folders. 
Thanks in advance!

Hi Austin,
Based on your description, I want to confirm with you what our server’s operating system is. If the OS is Windows server 2008R2 or above, we can use
AppLocker to configure the setting.
AppLocker is a feature in Windows Server 2012, Windows Server 2008 R2, Windows 8, and Windows 7 that advances the functionality of the Software Restriction
Policies feature. AppLocker contains new capabilities and extensions that reduce administrative overhead and help administrators control how users can access and use files, such as executable files, scripts, Windows Installer files, and DLLs.
We can use AppLocker to define rules based on file attributes that persist across application updates, such as the publisher name (derived from the
digital signature), product name, file name, and file version.
Administer AppLocker
http://technet.microsoft.com/en-us/library/hh994629.aspx
Edit an AppLocker Policy
http://technet.microsoft.com/en-us/library/hh994627.aspx
Create a Rule That Uses a Publisher Condition
http://technet.microsoft.com/en-us/library/hh994612.aspx
Best regards,
Frank Shen

Similar Messages

  • Update STXH text while creating a PO using IDOC's  PORDCR103

    Hi,
    Can we upload the shipping instructions while creating a STO using Inbound IDOC -  PORDCR103
    Regards,
    Shariq.

    Hi,
    For uploading shipping text you need to call function module SAVE_TEXT.
    Thanks
    Ankit Attrish

  • Update termination error while parking multiple items using BAPI fn module

    hi experts,
       i am facing a problem with bapi_incominginvoice_park.when i am trying to park invoice for single item for the po the invoice number is generating and getting updated in database in the same way when i am trying to park for multiple items the invoice number is genrating but not getting updated in database table.Here i am getting error 'Express document update terminated BY THE user'.How to solve this problem to find these error i have gone to se13 transaction,there it is showing SAQCL_DUPRC.it is saying duplicate errors in table but there are no duplicates in table.
    Thanks,
    Vinod

    hi vinod ....i tried the following it worked...
    while sending tax info dont send any tax table manually  i.e updating the vit_tax table using append statement
    also while testing function module for multiple PO , no need to provide the tax info in the tax table
    what we have to do is only to provide 'X' In the tax calculation option in the header details
    HEADERDATA-CALC_TAX_IND = 'X'.
    1.this will enable tax
    2. will make the po status green so that the parked document can be posted .

  • HT1557 Supposedly need a java update to run email from my isp. My OS version (10.6) is not supported by Oracle any longer. How to proceed?

    Supposedly need to update java to run email via my isp. Oracle no longer supporting the version that would work with my mac (10.6). How to proceed?

    Supposedly need to update java to run email via my isp.
    You are being SCAMMED.
    No email requires Java.
    In the event you would like to Install Java under 10.6, look in your Utilities folder for Java Preferences. Open that and if java is not Instaled, it will offer to get the appropriate version from the correct source and install it for you.

  • Problem in updating table fields while enhancing screen fields using BDT

    Hi all,
             I have added some fields in REBE object using BDT. and also appended those fields in standard table(VIBDPR). But Data entered on those fields are not getting updated in table fileld..Can anyone Know the reson....? 
    Regards,
    Vijay

    Hi,
    I had the same problem. Here is an example code to resolve it:
    REPORT  ytestfg.
    DATA: i_bsid LIKE bsid OCCURS 0,
          i_bsid2 LIKE bsid OCCURS 0.
    TABLES: bsid.
    DATA: doc     LIKE     vbak-vbeln,
          pos(6) TYPE n.
    DATA e_fpla     LIKE     fpla.
    DATA e_fplt     LIKE     fpltvb OCCURS 0 .
    DATA: zfpla     LIKE     fplavb OCCURS 0,
    zfplt     LIKE     fpltvb OCCURS 0.
    DATA zfplt2     LIKE     fpltvb OCCURS 0 WITH HEADER LINE.
    doc = 'G03060619'.
    pos = '000010'.
    CALL FUNCTION 'SD_SALES_DOCUMENT_READ'
      EXPORTING
        document_number = doc.
    CALL FUNCTION 'SD_SALES_BILLINGPLAN_READ'
      EXPORTING
        i_vbeln                = doc
        i_posnr                = pos
      IMPORTING
        e_fpla                 = e_fpla
      TABLES
        e_fplt                 = e_fplt
      EXCEPTIONS
        no_billingplan_allowed = 1
        no_billingplan_found   = 2
        OTHERS                 = 3.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Read the billing plan
    CALL FUNCTION 'BILLING_SCHEDULE_READ'
      EXPORTING
        fplnr          = e_fpla-fplnr
      I_VFKDAT       =
      I_BFKDAT       =
      TABLES
       zfpla          = zfpla
        zfplt          = zfplt
    Upddate the ZFPLT2 table with the new values
    MOVE zfplt[] TO zfplt2[].
    READ TABLE zfplt2 INDEX 1.
    zfplt2-afdat = '20080927'.
    Very important to set field updkz = 'U' ***
    zfplt2-updkz = 'U'. "--> UPDATE!!
    MODIFY zfplt2 INDEX 1.
    CALL FUNCTION 'BILLING_SCHEDULE_SAVE'
      TABLES
        fpla_new = zfpla
        fpla_old = zfpla
        fplt_new = zfplt2 " --> NEW
        fplt_old = zfplt.
    CALL FUNCTION 'SD_SALES_DOCUMENT_SAVE'.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    Regards,
    Edited by: PHO_BA on Mar 9, 2009 5:28 PM

  • Why doesn't even freshly & cleanly installed Firefox allow MS Silverlight to run, while other browsers will?

    I've tried uninstalling, including all personal information, etc., then reinstalling without any importing of external data-- in other words, a very fresh and clean installation. Still, I can't get Silverlight to run at the Fidelity site. Internet Explorer and Chrome work just fine. What's going on here?

    Thanks for the suggestions. Unfortunately, none of them solved the problem. The problem persists. Silverlight acts like it wants to start. In fact, it seems like it is just starting when it always shuts done and presents a blank screen. Still don't get it. Anybody have any other ideas?
    Cheers!

  • How can you perform a factory restore on an iMac running mountain lion, without the use of an apple id

    Hello!
    I am a computer tech working for a computer company.  We have an iMac here in the store which a customer needs restored to factory defaults. 
    I have tried the following:
         - Using 'command + r' to format and reinstall mountain lion (it is requesting an apple id that has purchased the mountain lion OS)
         - Using 'option' on boot up, same seneraio
    Is their any other way to perform some kind of equavilent procedure that would ready a iMac for re-selling?
    It's almost as though I need to purchase a copy of the operating system that has already come preinstalled on this system.
    Im not a mac savy user, maybe it's something simple i am missing.  Any help with this would be greatly appreiated!  Thanks in advance!

    bonniefrom nl wrote:
    Hello!
    I am a computer tech working for a computer company.  We have an iMac here in the store which a customer needs restored to factory defaults. 
    I have tried the following:
         - Using 'command + r' to format and reinstall mountain lion (it is requesting an apple id that has purchased the mountain lion OS)
         - Using 'option' on boot up, same seneraio
    You must have the account credentials for the account that was used to purchase Mountain Lion (this iMac was upgraded) presumably the customer.
    Is their any other way to perform some kind of equavilent procedure that would ready a iMac for re-selling?
    It's almost as though I need to purchase a copy of the operating system that has already come preinstalled on this system.
    Boot the iMac, go to Apple>About This Mac>System Report, post the model identifier here (under hardware, 2nd line down)

  • Latest Java Update Loses JarBundler, Breaks Some Bundled Java Apps

    Hi all,
    I installed the latest Java update this morning. After installation, the "Jar Bundler" program was gone, and I had to re-install Xcode to get it back.
    Also, one of my bundled java apps now no longer works. I can launch the same code from the command line using "java -jar <my jar file name>", but launching the same bundled jar file gives the following console error:
    java.lang.reflect.InvocationTargetException
    at java.awt.EventQueue.invokeAndWait(EventQueue.java:1033)
    at quicktime.QTSession.<clinit>(QTSession.java:92)
    at com.ibm.videoNoteTaker.VideoNoteTaker.<init>(VideoNoteTaker.java:145)
    at com.ibm.videoNoteTaker.VideoNoteTaker.main(VideoNoteTaker.java:119)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.ja va:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at apple.launcher.LaunchRunner.run(LaunchRunner.java:115)
    at apple.launcher.LaunchRunner.callMain(LaunchRunner.java:50)
    at apple.launcher.JavaApplicationLauncher.launch(JavaApplicationLauncher.java:52)
    Caused by: java.lang.UnsatisfiedLinkError: /System/Library/Java/Extensions/libQTJNative.jnilib: no suitable image found. Did find: /System/Library/Java/Extensions/libQTJNative.jnilib: no matching architecture in universal wrapper
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1881)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1774)
    at java.lang.Runtime.loadLibrary0(Runtime.java:823)
    at java.lang.System.loadLibrary(System.java:1047)
    at quicktime.QTSession$1.run(QTSession.java:94)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:199)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:633)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:29 6)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:211)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:20 1)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:196)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:188)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    java.lang.UnsatisfiedLinkError: quicktime.QTSession.Gestalt(I[I)S
    at quicktime.QTSession.Gestalt(Native Method)
    at quicktime.QTSession.gestalt(QTSession.java:933)
    at quicktime.QTSession.open(QTSession.java:639)
    at quicktime.QTSession.open(QTSession.java:606)
    at quicktime.QTSessin.open(QTSession.java:606)
    at com.ibm.videoNoteTaker.VideoNoteTaker.<init>(VideoNoteTaker.java:145)
    at com.ibm.videoNoteTaker.VideoNoteTaker.main(VideoNoteTaker.java:119)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.ja va:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at apple.launcher.LaunchRunner.run(LaunchRunner.java:115)
    at apple.launcher.LaunchRunner.callMain(LaunchRunner.java:50)
    at apple.launcher.JavaApplicationLauncher.launch(JavaApplicationLauncher.java:52)
    Any ideas?
    Thanks,
    -Eben

    I have discovered my problem and solution.
    The JavaApplicationStub file in the app bundle was configured to run x86_64 which the library does not support. This is apparently new to the latest release of Java.
    In order to solve the problem, use the lipo tool. Here is what I did:
    lipo -remove x86_64 JavaApplicationStub -output JavaApplicationStub
    In addition it is also recommended that the LSArchitecturePriority key be added to the info.plist. I added the following to the main properties:
    <key>LSArchitecturePriority</key>
    <array>
    <string>i386</string>
    <string>ppc</string>
    </array>
    This specifies the allowed architectures in their preferred order.
    Ref: see note at bottom of this page:
    http://developer.apple.com/documentation/Java/Reference/Java_InfoplistRef/Articl es/JavaDictionaryInfo.plistKeys.html

  • Java will not run in IE9

    I find this problem posted all over the internet -- however, I have found few answers and no solutions that work.
    Java will not run in IE9 
    In the last three days I have installed Java 7.5 at least five times (after total uninstalls).
    I have Windows 7 Home premium with all updates installed.  Anti-virus programs are installed.
    Even the java website   http://www.java.com/en/download/testjava.jsp cannot detect the Java program in IE9.  It displays the following message:  “No working Java was detected
    on your system.  Install Java by clicking the button below.”
    I know you don’t want to hear about other browsers, however, this is part of the diagnoses – Java works fine in Chrome.  (Obviously, there are some programs that can only be accessed in IE.)
    I have tried turning off the firewall, anti-virus AVG, active x filtering, and every other program.  I have cleared the browsing history, cookies, etc.  50 times = nothing works.
    I experienced that Java did work once and only once in IE9 after each of two new reinstallations of Java 7.5.
    Process Explorer shows that Java is running, I’ve included a screen- shot (hope it shows up)
    All knowledgeable answers are appreciated.

    Hi,
    Have you tried the compatibility mode in Internet Explorer 9? Or does this issue occur to previous Internet Explorer versions?
    For reference about compatibility mode:
    http://blogs.msdn.com/b/ie/archive/2010/10/19/testing-sites-with-browser-mode-vs-doc-mode.aspx
    How to use Compatibility View in Internet Explorer 9
    You could try to deselect the “Automatically Detect Settings” to check how it works.
    And enable the scripting of Java applets settings:
    1. Click "Tools" --> "Internet Options"  
    2. Next, select the Security Tab, and select the "Custom Level" button
    3. Scroll down to "Scripting of Java applets"
    4. Make sure the "Enable" radio button is checked.
    5. Click OK to save your preference.
    Or you could try to change the settings in group editor:
    Computer Configuration\Administrative Templates\Windows Components\Internet Explorer\Internet Control Panel\Security Page\Internet Zone\Java Permissions
    Meanwhile, I suggest you could
    reset Internet Explorer settings to see the results.
    Hope this helps.
    Vincent Wang
    TechNet Community Support

  • Group policy for Silent Java updates

    Hi,
    all users in my network getting popup messages for Java updates which is king of annoying when they are working on something. none of them got admin rights so they can not update java. 
    i don't want to go to every computer when they  got the popup and enter my credentials to allow update.
    is there any easy method (may be GP) to allow java updates to install with out asking admin details and with out giving popup.
    if i have to use scripting can some one assist me with the script ( i am a beginner with scripting).
    thank you,
    krishna 
    Krishna Gummadapu

    Hi,
    you have a few options.
    a) give the users the admin rights, so they can update Java.
    b) suppress the auto-update behaviour, so that Java never updates itself
    c) deploy the updated Java software to your computers (optionally also suppress the auto-update behaviour), and maintain deploying Java updates to your computers, forever.
    d) remove Java if it is not needed. Windows doesn't need Java, maybe some of your applications do need it.
    For (c), there are many options available to you, including Group Policy Software Installation, Startup scripts, System Center Configuration Manager, and many non-MS products which can perform software distribution for you.
    It can be a very similar challenge, for Adobe products, like FlashPlayer, AdobeReader, etc.
    There are many examples on www.itninja.com (formerly known as appdeploy.com), and many scripts on gallery/codeplex and in various deployment-focused blogs.
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Latest java update vanished from App store!

    Saw I had an update, so opened App Store. It was a Java update. As I was reading the content, it vanished from the page, and the little "1" next to "Updates" also vanished. Restarting App Store and clicking Update icon did not retrieve update. Anybody know why this might have happened?
    MacBook Pro 15" mid 2012, 2.3 GHz Intel Core i7, Memory:  8 GB 1600 MHz DDR3, Graphics  Intel HD Graphics 4000 1024 MB, running OS 10.9.2
    THANKS

    Yes, Grant, I saw this on the Java website:
    "Oracle's Java version 7u25 and below have been disabled by Apple on OS X. Updating to the latest release will allow Java to be run on Mac OS X."
    If Apple has disabled Java, should I leave it as is, or is it important to have it? It seems that Firefox & Safari still run some version of Java, but I don't see any version of it in my library or elsewhere. Maybe that's why the update vanished, because Java's not there to begin with?

  • Latest Feb 19, 2013 Java update for 10.6 breaks Safari 5.1.7

    Hi people, long time viewer first time poster here. I wasn't sure on how to contact apple in regards to their latest Java update on the 19th February 2013, so I thought I post it here and see if others have the same problem.
    So, I'm running the following:
    Java SE 6 (Java 1.6.0_41-b02-445)
    Safari 5.1.7
    Mac OSX 10.6.8
    When I try to load http://www.uk.msn.com (which is also my homepage) my browser freezes and I can't load any other page. This results in me have to quit Safari and sometimes force quit.
    I know it is the recent Java update because when I disable Javascript the website works fine and I can interact with it. As soon as I turn Javascript back on, the issue occurs again. Obviously turning Javascript off is a work around for now, but I require it for work etc.
    I have done a permissions repair which doesn't fix anything.
    Could others try the link and let me know what happens please? All OSX versions are welcome to see whether it is just the 10.6.8 OSX or spans to 10.7 and later.
    Also, does anybody know where I can report this issue to Apple, or do I just ring them up and tell them?
    Many thanks.

    I also have 10.6.8, Safari 5.1.7, and the most recent Java update. I can access the MSN site through the link you provided but, on returning to Apple Discussions, got a 60-second stall before Safari would work right again. Yes, it very well could be the site.
    The only Safari 5.x crashes I've had came after a Java update 12-18 months ago. I had repaired permission both before and after the update but the crash log showed a number of dlink files with question marks instead of version numbers. Another repair permission restored function and I've had no further crashes. So I always repair permissions before any subsequent Java update that's offered and twice after. For what ever reason, it seems to keep me going.

  • Java compile and run time questions

    Hello, I have two generic question about java compile and run:
    1. When I used javac to compile my project, it complained some classes can't be found. I added the jar file which contains these needed classes to the jre/lib/ext/ directory. The compiler no longer complains. But I'm confused. I thought the jar files in jre/lib/ext/ only used for java run time, not the compile time. Can someone help me to explain this?
    2. If I need certain user defined jar file in the classpath to compile my application, does that imply that I have to have that jar file if I want to run my project?
    Thanks in advance.

    1. lib/ext is used for generally finding classes, it doesn't matter whether you are compiling or running.
    2. Yes, you will.

  • I just downloaded the new Java update now Safari is slow and I'm getting the spinning beach ball of death.

    Typing in Safari with the new Java update that I downloded today causes the spinning beach ball and slow loading of pages. As usual, Java is causing problems. Just once I would like to see things run without having to depend on Java.

    24Golfer:
    I think there's something more, because it keeps happening to me with the Finder where it says that it is not responding when I go to the Force Quit window.
    Are you saying that the Finder is reported as not responding? If yes, try this:
    Go to Home > Library > Preferences > com.apple.finder.plist
    Drag com.apple.finder.plist to desktop
    Restart computer.
    Monitor to see if anything changes, or Finder is still not responding.
    Good luck.
    cornelius

  • SAP note 1941092 hasn't been updated in a while

    SAP note 1941092 hasn't been updated in a while (2+ months), the last version covered is 1.2.4. At least changes for 1.25, 1.4.0 and 1.4.4 are missing. Would somebody from the UI Theme Designer team please update the SAP note and keep it up to date? Thank you.

    Hi Samuli,
    Note 1941092 as well as note 1852401 had been updated on 1.4.x - finally

Maybe you are looking for

  • Looking for a specific photoshop font

    I'm looking for this font here: http://i89.photobucket.com/albums/k229/ohgoddammit/photoshopfontcopy.jpg Thanks in advance!

  • BPM Interactive Component Call Using PAPI

    Hi All Are there any API's in PAPI which can process a BPM Object Interactive call . We use a JSP presentation for this. Thanks

  • Cant access IPod touch

    I have never seen this before but when i try to access my ipod touch i press the home button which brings up the slide to unlock screen, when i slide this I get a voice saying "slide to unlock" this gives me the passcode screen again with a spoken de

  • How to uninstall Lightroom.

    I've trashed every lightroom related file I can find on my computer (iMac, latest OS as of Dec '13). I still see Lightroom in my Creative Cloud but cannot open because it's no longer on my computer. Needed to reinstall because the "error changing mod

  • Datasource 0CO_PC_PCP_03 not returning Aux Costcomp str Data

    Hi We are using datasource  0CO_PC_PCP_03 to exctract itemised product  costing details to BW. We observe datasource is not transfering rows    with the cost component structure of data of the auxiliary costcomponent split.Can we apply note 423270 to