Portlet will run/output when run as Admin, but not normal user

Anyone know why a portlet would run/output under admin privs, but will not run under a normal user's privs? This is a VB.NET portlet using the EDK. Anyone have any ideas?

Flash Player should be initially installed using an Admin account.  Once installed however, it should work for all users.  If it does not function, then I suspect you're running into a file/folder/registry permission issue.  This FAQ can help repair these problems:
How do I fix Windows permission problems with Flash Player?

Similar Messages

  • SP2013 WF works for admin but not end-users

    A simple SP2013 WF calls a SP2010 WF to send email, simple.  Works for me (admin) but when a SP user edits an item on the list (which fires the WF), the WF gets to the 2010 call, and fails with this error...
    RequestorId: f8c56627-e4e5-5a26-0000-000000000000. Details: An unhandled exception occurred during the execution of the workflow instance. Exception details: System.ApplicationException: HTTP 401 {"Transfer-Encoding":["chunked"],"X-SharePointHealthScore":["0"],"X-SP-SERVERSTATE":["ReadOnly=0"],"SPClientServiceRequestDuration":["61"],"SPRequestGuid":["f8c56627-e4e5-5a26-97ee-ad70ca4d3291"],"request-id":["f8c56627-e4e5-5a26-97ee-ad70ca4d3291"],"X-FRAME-OPTIONS":["SAMEORIGIN"],"MicrosoftSharePointTeamServices":["16.0.0.2930"],"X-Content-Type-Options":["nosniff"],"X-MS-InvokeApp":["1;
    RequireReadOnly"],"Cache-Control":["max-age=0, private"],"Date":["Wed, 25 Jun 2014 02:44:54 GMT"],"P3P":["CP=\"ALL IND DSP COR ADM CONo CUR CUSo IVAo IVDo PSA PSD TAI TELo OUR SAMo CNT COM INT
    NAV ONL PHY PRE PUR UNI\""],"Server":["Microsoft-IIS\/7.5"],"WWW-Authenticate":["NTLM"],"X-AspNet-Version":["4.0.30319"],"X-Powered-By":["ASP.NET"]} at System.Activities.Statements.Throw.Execute(CodeActivityContext
    context) at System.Activities.CodeActivity.InternalExecute(ActivityInstance instance, ActivityExecutor executor, BookmarkManager bookmarkManager) at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager
    bookmarkManager, Location resultLocation) Exception from activity Throw If Sequence Sequence TryCatch Sequence Microsoft.SharePoint.WorkflowServices.Activities.RetryForDurationPolicy HTTPPost_WorkflowInterop_EnableEvents WorkflowInterop DynamicActivity<Guid>
    Then If Working Sequence Flowchart Sequence RCSEmailCst.WorkflowXaml_4f7b53dc_968d_4e22_a812_3178e7b01bad
    Spent an hour on phone with M$ support, only to be told it's my fault and I have to re-design my WF...if my WF gets any simpler I'll have to use carrier pigeons to get messages to customers!
    I've Googled the error message, results suggest that User Profile Syn is out of whack but M$ support swears up & down our sync is working fine.
    Anyone?
    Edit to add: we have a hosted implementation of SP2013, NOT on-prem

    Hi  ,
    According to your description, my understanding is that the SharePoint workflow 2013 does not work for end-users in your environment.
    For your issue, it can be a permission for the user initiating the workflow. Please make sure  site feature Workflows can use app permissions is activated. Go to Site actions > Site Settings >
    Site features > Workflows can use app permissions.  Make sure the user is one member of a SharePoint Group.
    Also please  provide more detail information about the error message  to determine the exact cause of the error. You can have a look at the blog:
    http://ranaictiu-technicalblog.blogspot.com/2013/03/sharepoint-2013-workflow-debugdiagnosis.html
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Program will run with errors, but not at all in a .jar file

    First off, here is my program right now:
    import java.io.*;
    import java.util.*;
    import javax.swing.JOptionPane;
    public class prune
        public static void main(String args[])
            String steamid="",time="";
            BufferedReader infile = null;
            BufferedWriter outfile = null;
            FileReader fr = null;
            FileWriter wr = null;
            StringTokenizer strtk = null;
            String line = null;
         JOptionPane.showMessageDialog
          (null, "Vault.ini Pruner v2");
         String filepath = JOptionPane.showInputDialog("Enter the filepath to your vault.ini file.");
         String strdeletenumber = JOptionPane.showInputDialog("Enter the number that vault entries under will be deleted");
         int deletenumber = Integer.parseInt(strdeletenumber);
            try
                infile = new BufferedReader(new FileReader(filepath));
                outfile = new BufferedWriter(new FileWriter(filepath));
            catch(IOException ioe)
                JOptionPane.showMessageDialog
          (null, "Can't open vault.ini:" + ioe);
            try
                while((line=infile.readLine())!=null)
                    strtk = new StringTokenizer(line);
                    steamid = strtk.nextToken();
                    time = strtk.nextToken();
                    if(Integer.parseInt(time)>=deletenumber)
                        outfile.write(steamid);
                        outfile.write(" ");
                        outfile.write(time);
                        outfile.newLine();
            catch(IOException ioe)
                JOptionPane.showMessageDialog
          (null, "Error:" + ioe);
            try
                outfile.close();
                infile.close();
            catch(IOException ioe)
               JOptionPane.showMessageDialog
          (null, "Error:" + ioe);
                System.exit(0);
    }The program is supposed to open a vault.ini file and delete entries with a number lower than specified.
    Vault files are set up like this:
    STEAMID:X:XXXX 100000
    Right now if I run the program through command prompt it erases both the vault.ini and new vault.ini. I am also trying to put it in an executable jar file and when I do that I get a "Failed to load main class manifest attribute" error. Any ideas on what is causing this?

    I don't know what is happening. I put your exact code into a small build environment and used a build file for ant that I have and it works just fine. Manifest files are a total pain which is why I use a tool to generate it. I know that the last line has to be blank and that no line can be over a certain length.
    You've now spent several days avoiding ant and I got it running with ant in about 3 minutes. I'm really missing something.
    For reference, the build file is below should you change your mind. Put your prune.java in a new directory named "src" and save this file below as build.xml in the parent directory of "src". Run the program with java -jar lib/prune.jar
    <project name="jartest" default="main" basedir=".">
    <!-- location properties -->
        <property name="src.dir" location="src" />
        <property name="dest.classes.dir" location="classes" />
        <property name="dest.lib.dir" location="lib" />
    <!-- value properties -->
        <property name="dest.lib.name" value="prune.jar" />
        <property name="main.class" value="prune" />
    <!-- compile time value properties -->
        <property name="compile.debug" value="true" />
        <property name="compile.optimize" value="false" />
        <property name="compile.deprecation" value="true" />
        <property name="compile.source" value="1.4"/>
        <property name="compile.target" value="1.4"/>
    <!-- build -->
        <target name="main" depends="compile,jar" />
        <target name="compile">
            <mkdir dir="${dest.classes.dir}"/>
            <mkdir dir="${dest.lib.dir}"/>
            <javac srcdir="${src.dir}"
                         destdir="${dest.classes.dir}"
                         debug="${compile.debug}"
                         deprecation="${compile.deprecation}"
                         optimize="${compile.optimize}"
                         source="${compile.source}"
                         target="${compile.target}" >
            </javac>
        </target>
    <!-- clean -->
        <target name="clean">
            <delete dir="${dest.classes.dir}"/>
            <delete dir="${dest.lib.dir}"/>
        </target>
    <!-- jar -->
        <target name="jar" depends="compile">
            <jar destfile="${dest.lib.dir}/${dest.lib.name}"
                    basedir="${dest.classes.dir}">
                <manifest>
                    <attribute name="Built-By" value="${user.name}"/>
                    <attribute name="Main-Class" value="${main.class}" />
                </manifest>
            </jar>
        </target>
    </project>

  • I have an HP laptop preloaded with Adobe Premiere Elements 10. For whatever reason Elements will "run" on click, but not even open the load screen or anything and then act like I never tried to open it? whats going on?

    I bought my HP laptop in 2012, and it came preloaded with Adobe Premiere and Photoshop Elements 10
    It worked fine and I even made a few video edits back in 2012 but for the last year Elements just REFUSES to work properly
    I used to be able to open elements to at least the "what do you want to do?" screen
    But now It won't even open this...I have no idea why...
    If I double click the Elements application my computer slows down, bracing itself to load, and then ....thats it....it reverts to its normal speed and elements just doesn't open...
    Any help would be great cause I feel like I've exhuasted all self-troubelshooting options and need to either get help from the forums or take the laptop in before I smash it in rage

    thrillhousecody
    Thanks for the reply with additional information.
    Recent history for Premiere Elements points to the program having problems when more than 1 video card/graphics card is
    being used by the computer on which Premiere Elements is running. This observation may seem contra indicated by the fact
    that you say that the program did work well about 2 years ago in the same setup. But other factors may have set in with regard
    to drivers, drivers versions, and driver conflicts. But this factor, does need to be ruled in or out.
    Can you disable one or the other card to determine the impact of this on your problem?
    But, of prime concern with regard to video card/graphics card is the use of a NVIDIA GeForce card with Premiere Elements 10.
    Even if your NVIDIA GeForce were the only card, Premiere Elements 10 will not work properly unless the NVIDIA GeForce driver
    version is rolled back to about May 2013. This may be one of the major factors here.
    a. Device Manager/Display Adapters and find out Driver Version and Driver Date
    b. Read the background information for the Premiere Elements 10/NVIDIA GeForce issue
    ATR Premiere Elements Troubleshooting: PE10: NVIDIA Video Card Driver Roll Back
    Also see the Announcement at the top of this forum regarding the matter - also with full details of the situation and how to fix with the
    driver version roll back.
    Please review and consider and then we can decide what next.
    Thanks.
    ATR
    Add On...This NVIDIA GeForce situation is specific for Premiere Elements 10. You should not expect to see the problem for
    later versions of Premiere Elements.

  • Dropped 3gs into lake for 2 hours.  Found and put in rice for sev. days.  Will come on when connected to power, but not pc.  Goes out after min. or so.  Will it likely work again without service or am I dreaming?

    As mentioned above, I dropped my Iphone 3gs into lake and it took me about two hours to fish it out.  I put it in a jar of rice for over a week.  It will now come on only if I plug it into the electrical oulet.  It will not come on using the usb connection on the pc.  It also cuts out after a short time - usually about a minute or so.  Will this phone likely work correctly again without major service or should I just forget it?  I have aready bought a replacement to use, but I hate to just toss it if it may work again.  Also, is there anything else I can do short of taking it in to the Apple store?  I suspect the cost of service will not be justified.

    You are welcome.  There are always suggestions of things to try, but in the end you just get frustrated and end up taking it in anyway...save yourself the trouble and visit the Apple store genius bar.

  • Player works in Admin but not in User

    Adobe Flash Player 10 Active X installs, uninstalls, reinstalls and always works (for multiple, different websites with Flash presentations) in my Administrator User Account.  But, I cannot get it to install and work in my Name User Account (which has Administrator priviledges).  I've performed all of the recommendations in tn_19166, but have had no success.
    In the foreground message box, I get the message "Failed to install. For troubleshooting...tn_19166".
    In the background box, I get "Registering: C:\WINDOWS\system32\Macromed\Flash\Flash10c.ocx".
    I'm running XP Pro and IE6.
    I really need to get it installed and working in my Name User Account.  Any help would be appreciated.
    Thanks

    Flash Player should be initially installed using an Admin account.  Once installed however, it should work for all users.  If it does not function, then I suspect you're running into a file/folder/registry permission issue.  This FAQ can help repair these problems:
    How do I fix Windows permission problems with Flash Player?

  • Under FF 5, my wife's Windows 7 laptop will run Yahoo toolbar, but my Vista won't...WHY??

    Just downloaded FF 5 on both my wife's Windows 7 and my Vista machines. FF 5 allows Yahoo toolbar to run under 7, but not under Vista. Any particular reason? or fix??

    You don't have to wipe anything, but when you get a chance make sure you backed up to icloud.
    What that means is your contacts inside of the phone either physically or liquid damaged. To check
    which, you can look inside and if you see a little pink, that would give you a water damage. If you don't
    see pink it means that you to many times plugged in that charger the other way or tried to. May be
    used some other things to plug in. If you flash the light in you may be able to see those contacts.
    If I were you, i would not believe me, good luck!

  • [svn:fx-trunk] 11541: Fix the textLayout build number that is set in the main build. xml to match what will be set when the build machine does NOT do the build

    Revision: 11541
    Author:   [email protected]
    Date:     2009-11-06 14:29:41 -0800 (Fri, 06 Nov 2009)
    Log Message:
    Fix the textLayout build number that is set in the main build.xml to match what will be set when the build machine does NOT do the build
    QE notes: no
    Doc notes: no
    Bugs: no
    Reviewer:
    Tests run: checkintests
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/frameworks/air-config.xml
        flex/sdk/trunk/frameworks/flex-config.xml

    Thats good news.

  • How do I set a specific page to open when I open a new tab in Firefox? I can open the page when initially opening Firefox, but not for subsequent tabs/pages.

    How do I set a specific page to open when I open a new tab in Firefox? I can open the page when initially opening Firefox, but not for subsequent tabs/pages.

    You can use an extension to set which page to open in a new tab:
    *NewTabURL : https://addons.mozilla.org/firefox/addon/newtaburl/
    *My Homepage: https://addons.mozilla.org/firefox/addon/my-homepage/

  • What do you do when ipod is detected but not identified?

    What do you do when ipod is detected but not identified?

    Hi there schnee2,
    You may find the troubleshooting steps in the article below helpful.
    iPod not recognized in My Computer and in iTunes for Windows
    http://support.apple.com/kb/ts1369
    -Griff W. 

  • I have an iphone 4s and the speaker has stpped working when I play music with i tunes or you fox. It works when they ring me but not when i want to listen to music :( do you know how I fix this?

    I have an iphone 4s and the speaker has stpped working when I play music with i tunes or you fox. It works when they ring me but not when i want to listen to music :( do you know how I fix this?

    Go to settings/music/volume limit tap on that.  Make sure it is set to OFF and when you tap it that the slider is at max

  • TS2972 home sharing will work from computer to apple tv but not the other way?

    home sharing will work from computer to apple tv but not the other way?

    Home sharing is one thing, physically copying is another thing.

  • I'm running Firefox 3.6.13. Add-ons say will be installed when Firefox is restarted but they don't install. What is the problem?

    I also have a few add-ons that aren't compatible with my current version of Firefox, and they say they will be un-installed when Firefox restarts, but they still stay on the add-ons list.

    Delete the files extensions.* (extensions.rdf, extensions.cache, extensions.ini, extensions.sqlite) and compatibility.ini in the Firefox [[Profiles|profile folder]] to reset the extensions registry. New files will be created when required.
    See "Corrupt extension files": http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    If you see disabled, not compatible, extensions in "Tools > Add-ons > Extensions" then click the "Find Updates" button (in Firefox 4: right-click the extension -> "Find Updates") to do a compatibility check.

  • Mail.jar javabeans runs in beans but not in browser

    I have added the mail.jar to java beans and have written a program to access smtp mail
    The program compiles and runs ok in the beans development client but when i try to run it outside of beans in a web browser it wont run.
    If I then remove the Mail part from the program it will run outside of beans.
    I have added the mail.jer to the library within beans
    The exception im getting points to the Mail.jar being missing.
    Is there any other way to register the mail.jar with java beans or even with the javac compiler.
    Thanks in advance

    I include the full code im trying to get to work outside of the design environment. I tried adding the path of the mail.jar to the html path but it did absolutely nothing. I cannot find any reason why this code works in the designer and not outside of it. Works great in and out of the designer without the mail.jar library. Once the mail.jar library is there it will only work in the designer. I would have thought during the packaging process the designer would pass over all of the relative files and settings ready for deployment as it does with running in the designer but apparently not.
    package request;
    import java.awt.*;
    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    public class request extends java.applet.Applet{
         Button sendrequest,clear;
         TextField tex1,tex2,tex3,tex4,tex5;
    @Override
         public void init(){
              setLayout(new GridLayout(6,2,2,5));
              add(new Label("Customer Name"));
              tex1=new TextField(22);
              add(tex1);
              tex2=new TextField(22);
              add(new Label("Account Number"));
              add(tex2);
              tex3=new TextField(22);
              add(new Label("Viewing Card Number"));
              add(tex3);
              tex4=new TextField(22);
              add(new Label("Request Type"));
              add(tex4);
              tex5=new TextField(22);
              add(new Label("Request Reason"));
              add(tex5);
              sendrequest = new Button("Send Request");
              add(sendrequest);
              clear=new Button("Clear");
              add(clear);
    @Override
         public boolean action(Event evt,Object arg){
              if(evt.target instanceof Button){
    try {
    makechoice((Button) evt.target);
    } catch (Exception ex) {
    Logger.getLogger(request.class.getName()).log(Level.SEVERE, null, ex);
                   return true;
              } else return false;
         void makechoice(Button b) throws Exception{
              if (b==sendrequest){
                   String mess=null;
                   Date date;
                   date=new Date();
                   mess=date.toString() + "\r\n";
                   mess=mess + "Customer Name: "+ tex1.getText() + "\r\n";
                   mess=mess + "Account Number: "+ tex2.getText() + "\r\n";
                   mess=mess + "Card Number: "+ tex3.getText() + "\r\n";
                   mess=mess + "Request Type: "+ tex4.getText() + "\r\n";
                   mess=mess + "Request Reason: "+ tex5.getText() + "\r\n";
    postmail(mess);
    }else {
                   tex1.setText("");
                   tex2.setText("");
                   tex3.setText("");
                   tex4.setText("");
                   tex5.setText("");
    void postmail(String mess) throws MessagingException
    boolean debug = false;
    String recipient="YOUR EMAIL ADDRESS HERE";
    String subject="change request";
    String from="YOUR EMAIL ADDRESS HERE";
    //Set the host smtp address
    Properties props = new Properties();
    props.put("mail.smtp.host", "YOUR SMTP SERVER ADDRESS HERE");
    // create some properties and get the default Session
    Session session = Session.getDefaultInstance(props, null);
    session.setDebug(debug);
    // create a message
    Message msg = new MimeMessage(session);
    // set the from and to address
    InternetAddress addressFrom = new InternetAddress(from);
    msg.setFrom(addressFrom);
    InternetAddress addressTo = new InternetAddress(recipient);
    msg.setRecipient(Message.RecipientType.TO, addressTo);
    // Setting the Subject and Content Type
    msg.setSubject(subject);
    msg.setContent(mess, "text/plain");
    Transport.send(msg);
    }

  • Non-UB runs on Intel but not as plugin?

    I was under the impression that AU was the requisite format to run a plugin within Logic and universal binary was additionally required for anything to run on Intel macs. Zero-G Vocal Forge is stated as being AU but not necessarily UB. The stand alone version works fine on my Intel iMac however, the plugin does not show up in my Logic 8 or Ableton Live 6 plugin menus. I tried the AU scanner in Logic to no avail. The component does show up in the correct folder. I thought that if something wasn't UB, it just wouldn't run at all on an intel Mac but it runs fine, just not as a plugin. I wouldn't even bother asking, except that the stand alone is operational. Will I have to wait for UB, or am I doing something wrong? Thanks. - Emile

    Hi,
    The reason the Stand=Alone version of your plugin works, is that under an Intel mac, there is a shell, called "Rosetta". What this does, is that when you open a non-Intel, or non-Universal Binary version of a software, the computer tries to open it, and runs it inside the Rosetta shell. This is not a very efficient way of running software, but it allows you to open things that are not yet Universal Binaries.
    The Audio Unit portion of your plugin, is NOT Universal binary, and because it is not, it does not show up when you open Logic, which IS Universal binary. Logic is not being run under the Rosetta shell, because it does not need to.
    If you want to use it as a Plugin-In inside of Logic, you will have to wait until the company releases a UB version.
    Cheers

Maybe you are looking for

  • Can I use home sharing on separate accounts on same computer?

    We have iPods (one 3G and one 4G) and separate accounts on our Mac and on iTunes but would like to share some but not all of the same things through home sharing. Is this possible? I haven't found a way to do it. The information I found available onl

  • Ralink RA3290 does not work on Oracle Linux

    I have just bought a new HP Pavilion G6-2213so which seems to have a ralink rt3290 wifi chipset (Just so you know I'm not very experienced with linux when it comes to install new drivers etc) I have installed: Red Hat Enterprise Linux Server release

  • Macbook spontaneously goes into sleep mode and screen off mode

    Hi. My Macbook spontaneously goes into sleep mode and screen off mode with varying time between each instance. It usually goes for a few minutes or even hours without doing it and then will go through periods of fluctuation between the modes. I belie

  • Sql query to find the scheduled date

    I schedule a job for last Thursday of every month. Based on my current date and time I need the date of my next scheduled run of the job... (i.e) If today is 28-march-2012 (Wednesday) my query should return 3/29/12(which is the last thursday of the m

  • SP1 to R2 Client Upgrade via SUP

    Hi, Currently planning an upgrade to R2.  We currently only deploy clients via SUP (SP1) then update clients to the CU by using SCUP.  A WMI filter then disables Windows Updates for clients where the installed version of the client is >5.  This is to