How to get installer created via LV project to install executables on a Vista machine which are in admin mode?

I have an installer for a program created via a LV project which installs two executables.
On Vista, only one of the executables is in admin mode.  So, I always have to right click
on the other and select 'run as administrator'.
Any way of getting both of them set to run as administrator by default?

Do your executables include a manifest inside them or are you installing a manifest file next to your executables?
What happens if you just manually copy the executables to your system rather than installing them? Same thing, or different behavior?
-Bob

Similar Messages

  • How to get the list of deployed projects in OSB through commond line

    How to get the list of deployed projects in OSB through commond line; as we are able to get in weblogic.

    You can go with standard JMX API using WLST
    http://www.oracle.com/technology/sample_code/products/osb/index.html
    http://download.oracle.com/docs/cd/E14571_01/apirefs.1111/e15033/index.html
    or you can try a little bit tricky way like
    ls $DOMAIN_HOME/osb/config/core/ | grep -v ^_:-)

  • How to get video from archived DVD projects (.dvdproj)

    how to get video from archived DVD projects (.dvdproj)

    Command (right) - click on the archived project file to open the package with the Finder. Go to the Contents/Resources/Assets/AV folder where the media files are stored.
    OT

  • My mini died. bought one used from a friend... all of my songs and books are on my iPhone, and I cant figure out how to get them onto this new computer. this is frustrating. the things i really want are purchases I've made from itunes store... help

    My mini died. bought one used from a friend... all of my songs and books are on my iPhone, and I cant figure out how to get them onto this new computer. this is frustrating. the things i really want are purchases I've made from itunes store... help
    !!!!!

    Hey kevyg3,
    I was able to find an article that I believe will help you move your iTunes purchases from your iPhone over to your new computer:
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    http://support.apple.com/kb/HT1848
    Hope this helps,
    David

  • How to get existing library imported to new itunes install, old library was  not backed up or exported

    How to get existing library imported to new itunes install, old library was not backed up or exported.  This occured due to Win 7 user profile was corrupt.

    I know that in Mac OS X one can pick which library to use by holding down the option key while starting iTunes. What's the Windows equivalent?
    Press the Shift key.
    WIll the fact that the music is now on another physical drive make a difference
    No.
    I know the previous install is at least 7.0, but I have no idea about which point release.
    Try checking the content of the iTunes Music Library.xml file.
    Finally, what's the expected behaviour (or required procedure) with respect to reauthorization of this computer to use the same ITMS-purchased files?
    You will be asked to reauthorize the computer.
    (28446)

  • I keep getting installation process encountered an error while installing shared technologies?

    I keep getting installation process encountered an error while installing shared technologies?

    See if the Shared Technology Error section here helps any:
    http://helpx.adobe.com/photoshop-elements/kb/troubleshoot-installation-photoshop-elements- premiere.html

  • When syncing iPod touch to MacBook, I have selected to sync only events newer than 360 days. Yet I get message that sync will change 8000 events on "this computer"  most of which are years old and many are recurring events.  I'm afraid to proceed

    When syncing iPod touch to MacBook, I have selected to sync only events newer than 360 days. Yet I get message that sync will change 8000 events on "this computer"  most of which are years old and many are recurring events.  I'm afraid to proceed with sync. 

    Having the same problem here. As a first time mac user, Apple has certainly made a bad first impression.
    For me, the issue seems to occur when transferring files between computers that are connected to the same access point (when transferring files from wired computers on the network there is no issue). My vista laptop and every laptop I have tried has worked perfectly fine with this access point so I am 100% convinced it is the mac. Basically when I copy the files, after about 100mb, I am unable to access anything on the local network or internet until I restart Airport. The weird thing is that even though I am unable to access anything, the airport utility says it is connected. I might also note that the wireless signal strength is full.
    If I can't get this figured out in a few days, this computer is going back to the store where it came from and I will officially label myself anti-mac. This type of issue is just unacceptable for something so main stream.

  • How to Get the created Request Activity Status using SCSM 2012 SDK

    Hi, i have created a ServiceRequest,
    so there are Activities related to Servicerequest.
    I am trying to know the Status of the each Activity (Completed,Failed etc)
    and the Change of Activity (like from ReviewActivity to RunBookActivity).
    how can we get the Activity status change programmatically.
    so that i could Display this Status to other Portal, 
    I am Creating a CustomActivity with ActivityID as Parameter to Workflow inheriting WorkflowActivityBase
    protected
    override
    ActivityExecutionStatus Execute(ActivityExecutionContext
    executionContext)
    Is this a Right Approach..???
    Plz respond as m not getting the way ..

    I'm not entirely clear on what you're trying to accomplish, but I can give you some guidance on getting the status of activities that are part of a service request.
    Quick overview before we get to the code: After we connect to the database we want to retrieve some management packs, a relationship, and a type projection. We then want to create some criteria for querying the Service Manager database. Then we execute the
    query and traverse the results, displaying the activity ID and it's status.
    //Connect to Service Manager
    EnterpriseManagementGroup emg = new EnterpriseManagementGroup("<your management server>");
    //Get some management packs
    ManagementPack mpSystem = emg.ManagementPacks.GetManagementPack(SystemManagementPack.System);
    ManagementPack mpSRLib = emg.ManagementPacks.GetManagementPack("ServiceManager.ServiceRequest.Library", mpSystem.KeyToken, new Version("7.5.1464.0"));
    ManagementPack mpWorkItemLibrary = emg.ManagementPacks.GetManagementPack("System.WorkItem.Library", mpSystem.KeyToken, new Version("7.5.1464.0"));
    ManagementPack mpActivityLib = emg.ManagementPacks.GetManagementPack("System.WorkItem.Activity.Library",mpSystem.KeyToken,new Version("7.5.1464.0"));
    //Get the relationship and type projection we'll be using for this query
    ManagementPackRelationship mprWIContainsActivity = mpActivityLib.GetRelationship("System.WorkItemContainsActivity");
    ManagementPackTypeProjection mptpWIActivities = mpSRLib.GetTypeProjection("System.WorkItem.ServiceRequestAndActivityViewProjection");
    //This is the work item (such as a service request) ID that we're looking for
    String WorkItemID = "SR123";
    //Setup the criteria. This will instruct service manager to "Get me the service request with ID SR123"
    String strWICriteria = String.Format(@"
    <Criteria xmlns=""http://Microsoft.EnterpriseManagement.Core.Criteria/"">
    <Reference Id=""System.WorkItem.Library"" PublicKeyToken=""{0}"" Version=""{1}"" Alias=""WILib"" />
    <Expression>
    <SimpleExpression>
    <ValueExpressionLeft>
    <Property>$Target/Property[Type='WILib!System.WorkItem']/Id$</Property>
    </ValueExpressionLeft>
    <Operator>Equal</Operator>
    <ValueExpressionRight>
    <Value>" + WorkItemID + @"</Value>
    </ValueExpressionRight>
    </SimpleExpression>
    </Expression>
    </Criteria>
    ", mpWorkItemLibrary.KeyToken, mpWorkItemLibrary.Version.ToString());
    //Build the projection criteria
    ObjectProjectionCriteria opcWI = new ObjectProjectionCriteria(strWICriteria, mptpWIActivities,emg);
    //Perform the query
    IObjectProjectionReader<EnterpriseManagementObject> oprWIs = emg.EntityObjects.GetObjectProjectionReader<EnterpriseManagementObject>(opcWI,ObjectQueryOptions.Default);
    //oprWIs contains all of the work items with ID "SR123" (and there will only be one work item with that ID)
    //We loop through all the work items in the oprWIs collection
    foreach (EnterpriseManagementObjectProjection emopWI in oprWIs)
    //Next we loop through all of the activities contained by our work item, using the WorkItemContainsActivity relationship
    //NOTE that these activities are in no particular order. You'll have to use the icpActivity.Object[null,"SequenceId"].Value to order them
    foreach (IComposableProjection icpActivity in emopWI[mprWIContainsActivity.Target])
    //Since activity status is an enumeration, we want to display it's displayname, not it's value (enumeration values are just GUIDs or other unique identifiers)
    ManagementPackEnumeration status = (ManagementPackEnumeration)icpActivity.Object[null, "Status"].Value;
    //For this little snippet, we're just outputting the activity ID and it's status
    Console.WriteLine(icpActivity.Object[null,"Id"].Value + " " + status.DisplayName);
    Regarding the rest of your post, I'm not sure what you meant when you said you wanted the "change of activity". Are you trying to display the time that an activity's status changed (stored in the activity's history records)?
    Second, if you're displaying this information on some other custom portal, what is the purpose for the workflow?
    A couple disclaimers: Use this code at your own risk, there are no guarantees, etc etc :) Second, I'm assuming you're on Service Manager 2012 RC at least (otherwise the "versions" in the code will need to be changed)
    Are you new to the SCSM SDK? If so, this code snippet might seem overwhelming. I recommend reading the Service Manager blog to get an idea about how classes, objects, relationships, type projections, etc all work.
    Here's a link to a post by Travis that uses the SDK..he also references a lot of the information necessary to best understand Service Manager's inner workings :)
    http://blogs.technet.com/b/servicemanager/archive/2010/10/04/using-the-sdk-to-create-and-edit-objects-and-relationships-using-type-projections.aspx

  • How to get audio files to follow project tempo??

    Im tryin to figure out how to get my mp3 audio files to follow project tempo and transition up or down to any specific tempo.. is there any way of doin it? thanks

    Hi,
    Yes, you need to convert them into Apple Loops. First, you have to convert them to either AIFF or WAV format (or use the original WAV). You can do that in the Audio Bin. Drag the converted file onto an audio track.
    In the Arrangement window select the newly created region of the audio file. In the Arrangement window menu under 'Audio', choose >Open in Apple Loops Utility...
    Next, take look at p 618 in the LP8 Manual 'Creating Apple Loops in the Apple Loops Utility'. That should/may get you there.
    regards, Erik.

  • Q:  how to highlight PDF created via scanner?

    hi:
    1. i'm going to assume that this is a very basic question but i can't figure out how to highlight text in a PDF file that i created via flatbed scanner.
    2. i have no problem highlighting PDF files that i may have created via the web, but for some unclear reason, when i try to highlight stuff in a PDF file that was created via my scanner, nothing happens.
    thanks for any feedback / suggestions. harry

    >but for some unclear reason, when i try to highlight stuff in a PDF file that was created via my scanner, nothing happens.
    It's very clear. You're trying to highlight text that doesn't exist. It's just a picture of text.
    Google OCR or look for the same topic in the Acrobat help files. You "may" be able to convert it to text. Then you can highlight it.

  • How to get SJSC2-created webapps run on servers?

    Hi everybody,
    we have developed a nice little webapp with the Sun Studio Creator 2.0 on my local desktop-computer (Windows XP, running Tomcat 5.5). This webapp runs fine on this computer. Then we have packed this webapp as a webapp.war-file and now we want to deploy this application on other machines as well. But on 5 of 5 other machines we're getting this error, after deploying the war-file under Tomcat-servers:
    Exception Details: com.sun.rave.web.ui.appbase.ApplicationException
    org.apache.jasper.JasperException: Base is null: sites$main$login
    Possible Source of Error:
      Class Name: com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl
      File Name: ViewHandlerImpl.java
      Method Name: destroy
      Line Number: 601The only system on which we can get this webapp to work under Tomcat 5.5 is the computer the webapp has been developed on (wich has Sun Java Studio Creator installed). All the other machine we tried to get it to work are just server (Windows and Linux, without SJSC2).
    Is it possible that the installation of SJSC2 sets some important Classpath-parameters or anything else? Why can we just use our applications on computers where SJSC2 is installed on?
    This is the full stacktrace:
    Exception Handler
    Description: An unhandled exception occurred during the execution of
    the web application. Please review the following stack trace for more
    information regarding the error.
    Exception Details: org.apache.jasper.JasperException
    Base is null: sites$main$login
    Possible Source of Error:
      Class Name: org.apache.jasper.servlet.JspServletWrapper
      File Name: JspServletWrapper.java
      Method Name: handleJspException
      Line Number: 510
    Source not available. Information regarding the location of the
    exception can be identified using the exception stack trace below.
    Stack Trace:
    org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:510)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
    org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
    org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
    org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
    com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)
    com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)
    com.apress.projsf.weblets.faces.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:70)
    com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.renderView(ViewHandlerImpl.java:311)
    org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:300)
    javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    com.sun.rave.web.ui.util.UploadFilter.doFilter(UploadFilter.java:194)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    org.apache.myfaces.component.html.util.ExtensionsFilter.doFilter(ExtensionsFilter.java:122)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:667)
    org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    java.lang.Thread.run(Thread.java:595)
    Exception Details: javax.faces.FacesException
    org.apache.jasper.JasperException: Base is null: sites$main$login
    Possible Source of Error:
      Class Name: com.sun.faces.context.ExternalContextImpl
      File Name: ExternalContextImpl.java
      Method Name: dispatch
      Line Number: 327
    Source not available. Information regarding the location of the
    exception can be identified using the exception stack trace below.
    Stack Trace:
    com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:327)
    com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)
    com.apress.projsf.weblets.faces.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:70)
    com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.renderView(ViewHandlerImpl.java:311)
    org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:300)
    javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    com.sun.rave.web.ui.util.UploadFilter.doFilter(UploadFilter.java:194)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    org.apache.myfaces.component.html.util.ExtensionsFilter.doFilter(ExtensionsFilter.java:122)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:667)
    org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    java.lang.Thread.run(Thread.java:595)
    Exception Details: com.sun.rave.web.ui.appbase.ApplicationException
    org.apache.jasper.JasperException: Base is null: sites$main$login
    Possible Source of Error:
      Class Name: com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl
      File Name: ViewHandlerImpl.java
      Method Name: destroy
      Line Number: 601
    Source not available. Information regarding the location of the
    exception can be identified using the exception stack trace below.
    Stack Trace:
    com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.destroy(ViewHandlerImpl.java:601)
    com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.renderView(ViewHandlerImpl.java:316)
    org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:300)
    javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    com.sun.rave.web.ui.util.UploadFilter.doFilter(UploadFilter.java:194)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    org.apache.myfaces.component.html.util.ExtensionsFilter.doFilter(ExtensionsFilter.java:122)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:667)
    org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    java.lang.Thread.run(Thread.java:595)We have defnitly no idea what we might do wrong...

    For some reason Tomcat (or any other servlet-engine) can not create the valuebindings which have been automaticly created by SJSC2 for the webui-taglib (binding="#{folder$subfolder$jspfile.component}"):
    com.sun.rave.web.ui.appbase.ApplicationException: org.apache.jasper.JasperException: Exception in JSP: /sites/main/login.jsp:12
    9:                 <ui:head id="head1" title="#{mainMessages.webAppName}">
    10:                     <ui:link id="link1" url="/resources/stylesheet.css"/>
    11:                 </ui:head>
    12:                 <ui:body binding="#{sites$main$login.body1}" id="body1" style="-rave-layout: grid">
    13:                     <f:subview rendered="#{currentUser.legallyLoggedIn == false}" id="securityCheckOkay">
    14:                     <ui:form binding="#{sites$main$login.form2}" id="form2" style="height: 250px; left: 410px; top: 235px; position: absolute; width: 330px">
    15:                         <h:panelGrid binding="#{sites$main$login.gridPanel1}" columns="2" footerClass="mainFormFooter" headerClass="mainFormHeader"
    Stacktrace:
         com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.destroy(ViewHandlerImpl.java:601)
         com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.renderView(ViewHandlerImpl.java:316)
         org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:367)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
         com.sun.rave.web.ui.util.UploadFilter.doFilter(UploadFilter.java:194)But why??? The binding is correctly defined in managed-beans.xml and the corresponding classes also do exist.
    What am I doing wrong???

  • Installer created via Deployment Utility - disable uninstall before install?

    With an Installer created by the TestStand 3.1 Deployment Utility, when the Installer executes it always has to first uninstall any deployed files that are on the target system.  If I wanted to disable this feature and have the Installer just always overwrite existing files is there a way to do so?

    Hi Snood1,
    I was able to reproduce that message on my end here and unfortunately could not find a way to prevent that message or auto-uninstall.  I tried using the command prompt, but could not get a silent uninstall to occur.  I did however try it out on both TestStand 3.5 and 4.0 and each of these versions recognized that I was upgrading my deployment and installed over the old system with the new versions of the files.  The only thing I know to recommend here is an upgrade of the version of TestStand if you want to prevent this message.  If needed, click here for product information.
    Best of luck!
    Chris R.
    Applications Engineer
    National Instruments

  • Re: How to get a Microsoft offce key if already installed?

    Hi everyone,
    Here I am again. My Windows started freezing and after some attempts to fix it I made a decision to reinstall. I have Windows original disk and rivers but I don't want to lose Microsoft Office the product key can't find. So my question how to get it from installed Os. Any idea appreciated. Thanks

    Hi,
    If you make a Google search, you can find a lot of programs to recover product key. As Windows and Office Product Key Recovery (shareware) or ProduKey v1.42

  • How to get iPhoto and iTunes to a clean installed Yosemite from Time Machine

    I wiped the Hard Drive and clean installed to OS X Yosemite. For Some reason, some of my Time Machine back ups disappeared or got deleted and it wasn't even full. I had back ups from 2011 and now it only starts from 2013 of June.
    Next....when I try to restore my other apps(like iPhoto and my iTunes) I doesn't give that warp space effect in the background. It gives me the window layer effect but I just see the same mountain background on the desktop as the default Yosemite(unless thats how its suppose to look like that?) I can't restore using Time Machine because the little lines at the right are red (see screen shot) and it won't let me restore, and if i go back by using the arrows, if freezes. So,
    I don't know how to install the old iTunes and iPhoto on my existing clean installed Yosemite from my Time Machine.
    Can someone help me?

    @ LarryHN Thank you ver much for you help I understand now that you just can't copy over the old library(got it)
    I had the latest version of iPhoto before I cleaned installed.
    The link you gave me was most informative and I want to thank you. But still problems arrive.
    This came up and I don't know which one to pick

  • How to get DP name via script

    Hello,
    We are migrating from Symantec Altiris to SCCM 2012. In our current environment we have both HP models and now moving towards Lenovo models. We are using both respective Enterprise solutions for managing driver that is HP SSM and Lenovo Thininstaller.
    We have 3 sites/locations with exactly the same shares on each one. We are using a script with a built in Altiris token that finds out what DP or Taskserver (in Altiris Environment) the client is connected to.
    How can I define a DP with the same type of script in SCCM?
    Are there any tokens for DP?
    Are there any specific local files or usuble values that changes when connecting to other DPs?
    Can I somehow query bounderies in a script and then use IF statement to connect them to a specific share?
    I know that I can use one share if I want to but that will use a lot of network trafic since we have the DPs on different locations throughout the country. One idea I had was to make 3 different packages with one DP specified in each
    one and then connect them to its specific boundary.  
    The good part to make it work all in one script is that it can be applied to any client in the organisation to update their current drivers and not just to use in initial deployment.
    I found a vbs script that can echo a DP, but how do I implement it into my script?
    http://sccmguru.wordpress.com/2014/04/22/show-dp-in-use-during-task-sequence/
    '// Purpose: Used to find active Distribution Point
    '// Version: 1.0 - April 15, 2014 - Odd-Magne Kristoffersen
    '// This script is provided "AS IS" with no warranties
    Set env = CreateObject("Microsoft.SMS.TSEnvironment")
    ENV_SMSTSHTTPTHI0000D = env("_SMSTSHTTPTHI0000D")
    SMSTSHTTPTHI0000D = Split(ENV_SMSTSHTTPTHI0000D,"/",-1,1)
    DP = split(SMSTSHTTPTHI0000D(2),".",-1,1)
    Echo DP(0)  
    Here is my script in short format. I didn't bother putting all the models.
    The value %MODEL% is from the Query in the beginning of the script and the %TASKSERVER% value is an Altiris token the can be used when running a script with the agent credentials.
    @echo off
    set model=
    FOR /F "tokens=2 delims='='" %%A in ('wmic ComputerSystem Get Model /value') do SET model=%%A
    Echo This is a %MODEL%
    IF "%MODEL%" == "HP EliteBook 820 G1" GOTO HP Updates
    IF "%MODEL%" == "HP EliteBook 840 G1" GOTO HP Updates
    IF "%MODEL%" == "HP Compaq 8000 Elite SFF PC" GOTO HP Updates
    IF "%MODEL%" == "HP Compaq 8100 Elite SFF PC" GOTO HP Updates
    IF "%MODEL%" == "HP Compaq 8200 Elite SFF PC" GOTO HP Updates
    IF "%MODEL%" == "HP Compaq Elite 8300 SFF" GOTO HP Updates
    IF "%MODEL%" == "20AQ007UMS" GOTO Lenovo Updates
    IF "%MODEL%" == "20AL00BYMS" GOTO Lenovo Updates
    IF "%MODEL%" == "10AB000YMX" GOTO Lenovo Updates
    IF "%MODEL%" == "20C0003TMS" GOTO Lenovo Updates
    IF "%MODEL%" == "20AL007NMS" GOTO Lenovo Updates
    IF "%MODEL%" == "10AAS0HN00" GOTO Lenovo Updates
    exit 1
    :Hp Updates
    \\%TASKSERVER%\Share\ssm.exe \\%TASKSERVER%\Share /ACCEPT /INSTALL /DEBUG /TITLE:"HP Updates" /NOREBOOT
    RMDIR "c:\ssm" /s /q
    exit 0
    :Lenovo Updates
    xcopy \\%TASKSERVER%\Share\Thininstaller c:\Thininstaller /S /H /I /Y
    c:\Thininstaller\Thininstaller.exe /CM -search A -action INSTALL -repository \\%TASKSERVER%\Share\Repository-noicon -includerebootpackages 0,3 -showprogress -noreboot
    RMDIR "c:\Thininstaller" /s /q
    exit 0

    The way these two driver management systems work is that the exe is not installed, only executed with different switches to look inside a share with drivers to match what is installed on the client and apply the missing drivers.
    I have checked other threads with HP ssm and Lenovo Thininstaller regarding SCCM implementation and they all create a package for the exe and apply the command switches. Exactly as many of you already described here.
    That works if you have only ONE share. I manage 3 shares, one for each geographical location that we prep Windows installations. This to make it faster for the client to download the drivers and to not use/load the WAN unnecessarily.
    I read on another thread that I can't query a dp because it's assigned only when the client requires content. 
    The only workaround as I see it is to:
    1. Create 3 different packages with different  shares in the command line. And somehow apply a detection method in the task sequence to figure out location (DP, IP, DNS, boundary, Assigned Domain Controller).
    2. Create 3 different packages and 3 different roles in MDT, one for every location. 
    3. Only use one share on the location that mostly is used for Windows installations and accept that it will take longer for the drivers to be applied on the other locations. 
    Which one should I go for?
    Many of you may think that I should use the standard way of managing drivers in SCCM. But this is so much easier. I never have to package drivers or hardware applications like HP Connection Manager. I can reapply the package to any client in production and
    update the drivers and model specific applications if needed.

Maybe you are looking for

  • IMac G5 HD Won't Boot. Please Help.

    I have an iMac G5 (Power PC) which has been running OS 10.5.8 without any issues until today.  When starting, I have a grey screen with the Apple logo, but the wheel beneath keeps turning and the computer will not boot up. I've tried to start it many

  • Ajax not working in Chrome

    I am using Ajax and ASP in my dynamic pages to display content. However the code works alright in IE but the Ajax and javascript does not function in Chrome. Please advise on how to ensure this.

  • How can I hide horizontal scroll bar?

    Some websites use CSS code (overflow-x: hidden or overflow-y:hidden), that shows the horizontal scroll bar while the frame on the website is centered and only 800 pixels wide, but I really don't need my horizontal scroll bar to show up. So how can I

  • How do I get an app I paid for back on my phone

    I bought an app and it doesnt seemed to be saved in Itunes. I am loading my new phone up again and it is missing an app. I broke my old phone so I can not save my old info into Itunes. Any help is appreciated Thanks

  • How can we get Cell Id in j2me

    hi , i want to get cell id , i am using nokia phones n95, e71 etc help plez!