Updating Quicksilver: Need Help Starting Project

Hello fellows. Awhile ago I was able to purchase a used PowerPC G4 Quicksilver model from my former University for a very wonderful price of $40.
I've finally got around to wanting to updating it. I currently have an iMac which is less than a year old, but I've always wanted to update the old Quicksilver. So, I guess I need to know where to start and just what I can do for a few hundred dollars.
Here are the basic specs:
*Machine Name:* Power Mac G4
*Machine Model:* PowerMac3.5
*CPU Type:* PowerPC G4 (2.1)
*Number Of CPUs:* 1
*CPU Speed:* 733 MHz
*L2 Cache (per CPU):* 256 KB
Memory: 768 MB
*Bus Speed:* 133 MHz
*Boot ROM Version:* 4.2.5f1
Things I know I can easily do are install a bit more RAM. Anywhere know where I could buy some that would work?
My friend said he could help me install a new CD/DVD drive that would allow me to read and burn DVD's. So, that shouldn't be too much of an issue. Any rec's on what to purchase?
Lastly, is there anyway possible that the processor could be upgraded? Intel? Is that even possible?
I appreciate any help that can be offered. Thank you!
Message was edited by: nick.burroughs

This processor interests me because it's definitely an upgrade from what I have now and is only $200.
http://eshop.macsales.com/item/Other%20World%20Computing/MEG42M1200/
It says it's Leopard compatible; would that be as easy as installing this and having more HDD space?
Thoughts on these two processors?
http://eshop.macsales.com/item/Newer%20Technology/MAXG47S1600/
http://eshop.macsales.com/item/Sonnet%20Technology/SG41600/
As for a HDD, I'm guessing the best thing to do would just be to install a second internal. Any suggestions? I don't think I'd go for anything more than 500 GB, and it would be where everything is stored, where the current would be the OS. Which currently, is OS X Tiger.
Message was edited by: nick.burroughs

Similar Messages

  • Need help coping project from one computer to another.

    I need help coping project from one computer to another.  I loaded all video on computer 1, copied events and project folder to computer 2.  I was told I only needed to copy the project folder back to computer 1 since the events folder is already there.   I copied project folder back to computer 1 but the files wont open.  I dont have computer 2 available. 
    Please help!!!

    Hi
    No that's not the way to do it - iMovie gets confused and in some cases the problems might be un-repairable.
    You've got several problems
    • iMovie'08 - CAN NOT MOVE PROJCTS - You NEED iMovie'09 or iMovie'11 - I see no other working solution
    • Never MOVE or alter any folder named
    iMovie Projects - or -
    iMovie Events
    on DeskTop/Finder - This might be very harmful
    • Moving (Projects) and Events - HAS TO be done within the iMovie Application.
    You've got an Evets window and here You can view Your Events in two ways - Yearly - or - Yearly per Hard disk
    Here You can move within this "window" to another location
    • Projects - NO they do not contain Your full movie - only a document on howto use the material in Event folder
    and there might be worse if You added Photos from iPhoto and Audio from iTunes/Garageband - then You have
    to get this over to the second Mac too, to be able to continue editing.
    So to move Your projects to another Mac You need
    • iMovie'09 or 11
    • an external hard disk -
    MUST BE Mac OS Extended formatted - as UNIX/DOS/FAT32/Mac OS Exchange will not work for VIDEO
    Should be a FireWire one - as UBS/UBS2 performs badly when used for video
    • Then move/copy over within Project resp Events window in iMovie Application
    Hopefully I've been not to confusing or badly structured to be followed.
    Yours Bengt W

  • Need help with project

    Hi all I'm working on a project and need help.
    I want the "New" button to clear all the fields.
    Any help?
    =======================================================
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Message extends JFrame implements ActionListener {
         public Message() {
         super("Write a Message - by Kieran Hannigan");
         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         setSize(370,270);
         FlowLayout flo = new FlowLayout(FlowLayout.RIGHT);
         setLayout(flo);
         //Make the bar
         JMenuBar bar = new JMenuBar();
         //Make "File" on Menu
         JMenu File = new JMenu("File");
         JMenuItem f1 = new JMenuItem("New");
         JMenuItem f2 = new JMenuItem("Open");
         JMenuItem f3 = new JMenuItem("Save");
         JMenuItem f4 = new JMenuItem("Save As");
         JMenuItem f5 = new JMenuItem("Exit");
         File.add(f1);
         File.add(f2);
         File.add(f3);
         File.add(f4);
         File.add(f5);
         bar.add(File);
         //Make "Edit" on menu
         JMenu Edit = new JMenu("Edit");
         JMenuItem e1 = new JMenuItem("Cut");
         JMenuItem e2 = new JMenuItem("Paste");
         JMenuItem e3 = new JMenuItem("Copy");
         JMenuItem e4 = new JMenuItem("Repeat");
         JMenuItem e5 = new JMenuItem("Undo");
         Edit.add(e5);
         Edit.add(e4);
         Edit.add(e1);
         Edit.add(e3);
         Edit.add(e2);
         bar.add(Edit);
         //Make "View" on menu
         JMenu View = new JMenu("View");
         JMenuItem v1 = new JMenuItem("Bold");
         JMenuItem v2 = new JMenuItem("Italic");
         JMenuItem v3 = new JMenuItem("Normal");
         JMenuItem v4 = new JMenuItem("Bold-Italic");
         View.add(v1);
         View.add(v2);
         View.add(v3);
         View.addSeparator();
         View.add(v4);
         bar.add(View);
         //Make "Help" on menu
         JMenu Help = new JMenu("Help");
         JMenuItem h1 = new JMenuItem("Help Online");
         JMenuItem h2 = new JMenuItem("E-mail Programmer");
         Help.add(h1);
         Help.add(h2);
         bar.add(Help);
         setJMenuBar(bar);
         //Make Contents of window.
         //Make "Subject" text field
         JPanel row2 = new JPanel();
         JLabel sublabel = new JLabel("Subject:");
         row2.add(sublabel);
         JTextField text2 = new JTextField("RE:",24);
         row2.add(text2);
         //Make "To" text field
         JPanel row1 = new JPanel();
         JLabel tolabel = new JLabel("To:");
         row1.add(tolabel);
         JTextField text1 = new JTextField(24);
         row1.add(text1);
         //Make "Message" text area
         JPanel row3 = new JPanel();
         JLabel Meslabel = new JLabel("Message:");
         row3.add(Meslabel);
         JTextArea text3 = new JTextArea(6,22);
         messagearea.setLineWrap(true);
         messagearea.setWrapStyleWord(true);
         JScrollPane scroll = new JScrollPane(text3,
                                  JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
                                  JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
         row3.add(scroll);
         add(row1);
         add(row2);
         add(row3);
         setVisible(true);
         public static void main(String[] arguments)  {
         Message Message = new Message();
    }

    Ok, given that I may have not been the kindest to you on the other thread (and I'm still annoyed that you went and cross-posted this), and that you did actually use code tags, I'm going to post some code here:
    Please take the following advice onboard though.
    1. When you are naming your artifacts, please use the java coding standard as your guide. So if you are naming a class you use a capital letter first, and use camel case thereafter. All method names begin with a lower case letter, and all variable names begin with a lower case letter (and again camel case after that)
    2. Please use self explanitory names (for everything), so no more row1, row2, or text1, text2, etc.
    3. The example I am giving below makes use of a single class to handle all actions, this is not really the best way to do this, and a better way would be to have a class to handle each action (that would remove the massive if() else if() in the action handler class.
    4. When you are using class variables they should be private (no exceptions, ever!), if you need to access them from other classes use accessors (eclipse and other IDE tools can generate these methods for you in seconds)
    5. Notice the naming convention for my constants (final statics), they are all upper case (again from the java coding standards document, which you are going to look for with google right?)
    6. I have hived some of the creation work to helper methods (the getSubjectTextField() etc), although it isn't advisable to be calling other methods from the constructor, since this is a GUI, and you want it to appear as soon as you create the class, we won't worry about this, but perhaps as an execrise you could work out a better way to do this?
    7. Personally, I don't like classes that implement listeners, unless they are specifically designed to do that job. So a Frame that is set up as an action listener is fine, provided the actions it listens for are associated with the frame, not its contents. If the actions are related to its contents, then a dedicated class is better.
    8. Another personal opinion, but I feel it makes code clearer, but others may disagree. If you are creating a variable solely to hold the result of a calculation, to be passed to a method in the very next line, then don't create the variable, just pass the method as the argument to the method (feel free to ignore this advice if the method call is extremely long, and a local would make it easier to read)
    Anyway, here is the code. I have removed most of the menu items, and leave this as an exercise for you. Also I have only created 2 methods (new and exit), I'll again leave it as an exercise for you to complete this.
    package jdc;
    import java.awt.FlowLayout;
    import java.awt.event.ActionEvent;
    import javax.swing.AbstractAction;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import javax.swing.JMenuItem;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    import javax.swing.JTextField;
    import javax.swing.ScrollPaneConstants;
    public class Message extends JFrame {
        /** Constant for the new action command. */
        private static final String NEW_COMMAND = "New";
        /** Constant for the exit action command. */
        private static final String EXIT_COMMAND = "Exit";
        /** Subject text field. */
        private JTextField subjectTextField;
        /** Recipient text field. */
        private JTextField toTextField;
        /** Message text area. */
        private JTextArea messageTextArea;
        public Message() {
            super("Write a Message - by Kieran Hannigan");
            setSize(370, 270);
            FlowLayout flo = new FlowLayout(FlowLayout.RIGHT);
            setLayout(flo);
            setJMenuBar(createMenuBar());
            // Add "Subject" text field
            JPanel subjectRow = new JPanel();
            subjectRow.add(new JLabel("Subject:"));
            subjectRow.add(getSubjectTextField());
            // Add "To" text field
            JPanel toRow = new JPanel();
            toRow.add(new JLabel("To:"));
            toRow.add(getToTextField());
            // Make "Message" text area
            JPanel messageRow = new JPanel();
            JScrollPane scroll = new JScrollPane(getMessageTextArea(), ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS,
                    ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
            messageRow.add(scroll);
            add(toRow);
            add(subjectRow);
            add(messageRow);
            setVisible(true);
         * Clear all the fields.
        public void createNewMessage() {
            getSubjectTextField().setText("");
            getToTextField().setText("");
            getMessageTextArea().setText("");
         * Exit the application.
        public void exitApplication() {
            if (JOptionPane.showConfirmDialog(this, "Are you sure you would like to exit now?", "Exit",
                    JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION) {
                System.exit(0);
         * @return The subject text field, (creates a new one if it doesn't already exist)
        private JTextField getSubjectTextField() {
            if (this.subjectTextField == null) {
                this.subjectTextField = new JTextField("RE:", 24);
            return this.subjectTextField;
         * @return The to text field, (creates a new one if it doesn't already exist)
        private JTextField getToTextField() {
            if (this.toTextField == null) {
                this.toTextField = new JTextField(24);
            return this.toTextField;
         * @return The message text area, (creates a new one if it doesn't already exist
        private JTextArea getMessageTextArea() {
            if (this.messageTextArea == null) {
                this.messageTextArea = new JTextArea(6, 22);
                this.messageTextArea.setLineWrap(true);
                this.messageTextArea.setWrapStyleWord(true);
            return this.messageTextArea;
         * Helper method to create the menu bar.
         * @return Menu bar with all menus and menu items added
        private JMenuBar createMenuBar() {
            JMenuBar bar = new JMenuBar();
            JMenu fileMenu = new JMenu("File");
            fileMenu.add(new JMenuItem(new MenuItemAction(this, NEW_COMMAND)));
            fileMenu.add(new JMenuItem(new MenuItemAction(this, EXIT_COMMAND)));
            bar.add(fileMenu);
            // TODO add all other menu's and menu items here....
            return bar;
         * Private static class to handle all menu item actions.
        private static class MenuItemAction extends AbstractAction {
            /** Instance of the message class. */
            private Message message;
             * @param actionName
            public MenuItemAction(Message messageFrame, String actionName) {
                super(actionName);
                this.message = messageFrame;
             * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
            public void actionPerformed(ActionEvent e) {
                if (e.getActionCommand().equals(NEW_COMMAND)) {
                    this.message.createNewMessage();
                } else if (e.getActionCommand().equals(EXIT_COMMAND)) {
                    this.message.exitApplication();
                // TODO Add the other event handlers here
        public static void main(String[] arguments) {
            Message messageFrame = new Message();
            messageFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }If you have any questions, please let me know, as there are a number of new areas introduced that you may not have come across before.

  • SharePoint Foundation 2013 - March 2014 Update Issue - Need help

    We've just applied the SharePoint Foundation 2013 March 2014 Update, it always requires that we run the SharePoint Products Configuration Wizard at the end of install, but this time it's getting stuck at step 9 of 10 (the profile sync service cannot be
    started even as admin). Is anyone else having any issues with this update? Has anyone else applied it yet? Is anyone else planning to apply it?
    If anyone can help with advice on this I'd appreciate it.

    Hi,
    We can still access CA but sync will not start. Tried rebooting after the failed configuration and tried to run it again but it didn't work.
    4/2014 10:45:16  5  ERR            Exception: System.ServiceModel.EndpointNotFoundException: There was no endpoint listening at http://localhost:32843/SecurityTokenServiceApplication/securitytoken.svc
    that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. ---> System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException:
    No connection could be made because the target machine actively refused it 127.0.0.1:32843
       at System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress)
       at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception)
       --- End of inner exception stack trace ---
       at System.Net.HttpWebRequest.GetRequestStream(TransportContext& context)
       at System.Net.HttpWebRequest.GetRequestStream()
       at System.ServiceModel.Channels.HttpOutput.WebRequestHttpOutput.GetOutputStream()
       --- End of inner exception stack trace ---
    Server stack trace:
       at System.ServiceModel.Channels.HttpOutput.WebRequestHttpOutput.GetOutputStream()
       at System.ServiceModel.Channels.HttpOutput.Send(TimeSpan timeout)
       at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.SendRequest(Message message, TimeSpan timeout)
       at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
       at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
    Exception rethrown at [0]:
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at Microsoft.IdentityModel.Protocols.WSTrust.IWSTrustContract.Issue(Message message)
       at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken rst, RequestSecurityTokenResponse& rstr)
       at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken rst)
       at Microsoft.SharePoint.SPSecurityContext.SecurityTokenForContext(Uri context, Boolean bearerToken, SecurityToken onBehalfOf, SecurityToken actAs, SecurityToken delegateTo, SPRequestSecurityTokenProperties properties)
       at Microsoft.SharePoint.SPSecurityContext.SecurityTokenForLegacyLoginContext(Uri context)
       at Microsoft.SharePoint.SPSite.InitUserToken(SPRequest request)
       at Microsoft.SharePoint.SPSite.SPSiteConstructor(SPFarm farm, Guid applicationId, Guid contentDatabaseId, Guid siteId, Guid siteSubscriptionId, SPUrlZone zone, Uri requestUri, String serverRelativeUrl, Boolean hostHeaderIsSiteName, SPUserToken
    userToken, Boolean appWebRequest, String appHostHeaderRedirectDomain, String appSiteDomainPrefix, String subscriptionName, String appSiteDomainId, Uri primaryUri)
       at Microsoft.SharePoint.SPSite..ctor(Guid id, SPFarm farm, SPUrlZone zone, SPUserToken userToken)
       at Microsoft.Office.Project.Server.Upgrade.FullFarmDependentProjectDatabaseSequence.SPSiteExists(Guid siteId)
       at Microsoft.Office.Project.Server.Upgrade.ProjectDatabaseSequence.AddNextLevelObjects()
       at Microsoft.SharePoint.Upgrade.SPHierarchyManager.Grow(SPTree`1 root, Boolean bRecursing, SPDelegateManager delegateManager)
       at Microsoft.SharePoint.Upgrade.SPHierarchyManager.Grow(SPTree`1 root, SPDelegateManager delegateManager)
       at Microsoft.SharePoint.Upgrade.SPUpgradeSession.Upgrade(Object o, Boolean bRecurse)
       at Microsoft.SharePoint.Administration.SPPersistedUpgradableObject.Upgrade(Boolean recursively)
       at Microsoft.SharePoint.Administration.SPDatabase.Upgrade(Boolean recursively)
       at Microsoft.SharePoint.Upgrade.SPUpgradeSession.ReflexiveUpgrade(Object o, Boolean bRecurse)
       at Microsoft.SharePoint.Upgrade.SPUpgradeSession.Upgrade(Object o, Boolean bRecurse)
       at Microsoft.SharePoint.Administration.SPPersistedUpgradableObject.Upgrade(Boolean recursively)
       at Microsoft.SharePoint.Upgrade.SPUpgradeSession.ReflexiveUpgrade(Object o, Boolean bRecurse)
       at Microsoft.SharePoint.Upgrade.SPUpgradeSession.Upgrade(Object o, Boolean bRecurse)
       at Microsoft.SharePoint.PostSetupConfiguration.UpgradeTask.Run()
       at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()
    4/2014 10:45:16  5  ERR            An exception of type System.ServiceModel.EndpointNotFoundException was thrown.  Additional exception information: There was no endpoint listening at
    http://localhost:32843/SecurityTokenServiceApplication/securitytoken.svc that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.
    System.ServiceModel.EndpointNotFoundException: There was no endpoint listening at //localhost:32843/SecurityTokenServiceApplication/securitytoken. that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException,
    if present, for more details. ---> System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: No connection could be made because the target machine actively refused it 127.0.0.1:32843
       at System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress)
       at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception)
       --- End of inner exception stack trace ---
       at System.Net.HttpWebRequest.GetRequestStream(TransportContext& context)
       at System.Net.HttpWebRequest.GetRequestStream()
       at System.ServiceModel.Channels.HttpOutput.WebRequestHttpOutput.GetOutputStream()
       --- End of inner exception stack trace ---
    Server stack trace:
       at System.ServiceModel.Channels.HttpOutput.WebRequestHttpOutput.GetOutputStream()
       at System.ServiceModel.Channels.HttpOutput.Send(TimeSpan timeout)
       at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.SendRequest(Message message, TimeSpan timeout)
       at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
       at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
    Exception rethrown at [0]:
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at Microsoft.IdentityModel.Protocols.WSTrust.IWSTrustContract.Issue(Message message)
       at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken rst, RequestSecurityTokenResponse& rstr)
       at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken rst)
       at Microsoft.SharePoint.SPSecurityContext.SecurityTokenForContext(Uri context, Boolean bearerToken, SecurityToken onBehalfOf, SecurityToken actAs, SecurityToken delegateTo, SPRequestSecurityTokenProperties properties)
       at Microsoft.SharePoint.SPSecurityContext.SecurityTokenForLegacyLoginContext(Uri context)
       at Microsoft.SharePoint.SPSite.InitUserToken(SPRequest request)
       at Microsoft.SharePoint.SPSite.SPSiteConstructor(SPFarm farm, Guid applicationId, Guid contentDatabaseId, Guid siteId, Guid siteSubscriptionId, SPUrlZone zone, Uri requestUri, String serverRelativeUrl, Boolean hostHeaderIsSiteName, SPUserToken
    userToken, Boolean appWebRequest, String appHostHeaderRedirectDomain, String appSiteDomainPrefix, String subscriptionName, String appSiteDomainId, Uri primaryUri)
       at Microsoft.SharePoint.SPSite..ctor(Guid id, SPFarm farm, SPUrlZone zone, SPUserToken userToken)
       at Microsoft.Office.Project.Server.Upgrade.FullFarmDependentProjectDatabaseSequence.SPSiteExists(Guid siteId)
       at Microsoft.Office.Project.Server.Upgrade.ProjectDatabaseSequence.AddNextLevelObjects()
       at Microsoft.SharePoint.Upgrade.SPHierarchyManager.Grow(SPTree`1 root, Boolean bRecursing, SPDelegateManager delegateManager)
       at Microsoft.SharePoint.Upgrade.SPHierarchyManager.Grow(SPTree`1 root, SPDelegateManager delegateManager)
       at Microsoft.SharePoint.Upgrade.SPUpgradeSession.Upgrade(Object o, Boolean bRecurse)
       at Microsoft.SharePoint.Administration.SPPersistedUpgradableObject.Upgrade(Boolean recursively)
       at Microsoft.SharePoint.Administration.SPDatabase.Upgrade(Boolean recursively)
       at Microsoft.SharePoint.Upgrade.SPUpgradeSession.ReflexiveUpgrade(Object o, Boolean bRecurse)
       at Microsoft.SharePoint.Upgrade.SPUpgradeSession.Upgrade(Object o, Boolean bRecurse)
       at Microsoft.SharePoint.Administration.SPPersistedUpgradableObject.Upgrade(Boolean recursively)
       at Microsoft.SharePoint.Upgrade.SPUpgradeSession.ReflexiveUpgrade(Object o, Boolean bRecurse)
       at Microsoft.SharePoint.Upgrade.SPUpgradeSession.Upgrade(Object o, Boolean bRecurse)
       at Microsoft.SharePoint.PostSetupConfiguration.UpgradeTask.Run()
       at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()
    4/2014 10:45:16  1  ERR          One or more configuration tasks has failed or some tasks were not run
    4/2014 10:45:16  1  INF          Leaving function TaskDriver.OnTaskDriverStopping
    04/14/2014 10:45:16  1  INF        Leaving function TaskDriver.ExecuteTasks
    04/14/2014 10:45:16  1  ERR        One or more configuration tasks has failed to execute
    4/2014 10:45:16  1  ERR          Configuration of SharePoint Products failed.  Configuration must be performed in order for this product to operate properly.  To diagnose the problem, review
    the extended error information located at D:\Logs\PSCDiagnostics_4_14_2014_10_44_8_154_1605984328.log, fix the problem, and run this configuration wizard again.
    04/14/2014 10:45:16  1  INF          Entering function StringResourceManager.GetResourceString
    4/2014 10:45:16  1  INF      Leaving function TaskDriver.Run
    04/14/2014 10:45:16  1  ERR      Post setup configuration was not run successfully when using the command line task driver module
    04/14/2014 10:45:16  1  INF    Leaving function PsconfigCommandLineMain.Main
    This is the meaty part of the errors we are getting. Right now our entire site is down. If you know of anything to remedy these errors let me know.

  • Need help burning project to DVD

    Can anyone help me burn a PRE project to a DVD in .VOB (NTSC) format so it can be read by any DVD player connected to a TV, not a computer.  I know how it is supposed to be done in Premier Elements because I did it with small sample files, but whenever I try with a larger project, PRE always crashes during the encoding process..  First I will give the particulars of my system, then of my project, then of the trouble shooting I already tried, finally my experiences
    System:
         Intel Pentium "E2200" dual core processor @ 2.2 GHZ speed
         3 GB RAM
         Windows 32bit Vista Home Premium with SP2 installed
         1/4 TB hard drive with 100MB free and 0% fragmented
          Intel G31/33 graphics processor
    Projects:  
         14 MB slide show consting of 5 MB JPEG files with audio or text captions and unedited  MPG4 files of 480x720 pixels imported from Samsung camcorder set at recording quality of 5 MB/sec.
         10 MB movie created in instant DVD by dragging above JPEG and MPG4 files from album
         Neither have additional narration or music tracks        
         Both the above about 25 minutes on the timeline
    Troubleshooting already tried:
         Burning project to folder instead of to DVD
         Exporting files to PC in MPG2 and AVI format
         Rendering the file (not all at once, but in separate work areas at a time)
         Burned to both -RW and -R DVD's
         Deselecting the "Fit contents to available space" quality option in the burn menu and manually selecting a bitrate speed of 3 MB/sec
         Repeating the above in selective start of windows with all start programs and non-Microsoft processes disabled
         Repeating the above for both Slide show and movie projects
    Results:
         The encoding process never completes, but it abends at different stages in different trials--never the same point.  Sometimes it crashes at less than 20% complete; sometimes it makes it to 96% complete, then stops responding.  Sometimes it generates a crash report, and sometimes it just stops responding, so I have  to open task manager to end the program.   Sometimes I get a message that PRE is dangerously low on system memory.  I just close the window and procede, because I am watching physical memory usage in Task Manager while PRE is encoding and it is consistantly about 60%.  CPU usage often peaks at 100%, but not for more than 60 secs at a time.  When the system crashed, it generated an error message in the administrative events log sometimes reading: "The entry <name of project file> in the hash map cannot be updated"; event ID 3013, which Microsoft found no help for.  When it simply stops responding, it leaves no error message in the system log until I close the program.
         I don't think I have a system error, because my system sussessfully burned two minute test projects, and don't have a project error, because I could render the timeline.  What is going on here?
         B.T.W, some people I talked to about this problem who make their living in photos and electronics suggest I buy a camcorder which records in MPEG2 format, then simply burn the MPEG2 files to DVD without re-encoding, insert the DVD into any player connected to a TV, and play.  I don't think this advice is correct.   Opinions?

    Hello, freethedata. This is the Photoshop Elements forum. Premiere Elements has its own forum, here:
    http://forums.adobe.com/community/premiere/premiere_elements
    and you'll get more help with video questions there. Good luck!

  • I need help starting a Terminal command at start-up to help silence CPU fan

    I have a 24" iMac (Early 2009) and the CPU fan runs at full RPMs - NOTE: it is a refurbished model. I think that the person who did the refurbishing either messed up the CPU Temp Sensor or something, because the CPU temps are fine and the fan kicks on right after start-up chime.
    Anyways, I have found a terminal command (see below) that, when used in conjunction with smcFanControl, will force my CPU fan to run at 1200 RPM. I need a way to either auto-launch this Terminal Command at start-up, or an easier way to launch it because having to type it out in Terminal every boot and reset is getting old.
    Terminal Command:
    /Applications/smcFanControl.app/Contents/Resources/smc -k F2Mx -w 3cf0
    Any help would be greatly appreciated!

    You shell script should look something like this:
    #!/bin/bash
    your command line
    Construct this in your favorite text editor and save as plain text, not .rtf.  Call the file anything you want, but here I'll call it slowfan.
    In terminal type,
    chmod +x /path/to/slowfan
    where /path/to/slowfan is the path to the slowfan file.  You could drag the file into the terminal after typing the chmod +x followed by a space.  This step is only to mark the text file (script) as executable.
    Now you can run Platypus and set up a simple app with admin privleges.  Then test the app.  If it works you can then add it to your login items.
    If you decide to use applescript (do shell script descibed earlier) then you could just use the full pathname to whereever you saved the script and save that as a applescript application.  Again test it and then add to your login items.  I would bother adding an alias to .bash_profile.  That just adds to the complextity.
    As you can see, with Platypus you only have the single app it creates to deal with.  The script is enclosed in the generated app bundle for easy updating if necessary later on.  With the applescript method you will need to keep track of two spearate files; the applescript and the shell script.  Actually three, the app too.

  • HELP! My upgrades a disaster!  Quicksilver needs help!

    Not to go on, as I have posted on the Panther site and piggy backed on punkypickle here, DW informed me my hard drive, 40 GB IBM Deskstar was on it's way out. I ordered 2 80 gig hard drives from Otherworld Computing, Seagate Barracudas, a friend who wanted to help (okay a PC friend who thinks reading instructions is not manly)installed my hard drives when I was at work, but did not master/slave them, I suspected then later discovered. Before I realized that I tried to install Panther and got weird hang ups - nothing consistent except error messages and the grey box (this I guess replaced the bomb but I had never seen it before my hard drive was dying) saying to restart in several languages. I could not install or even download some updates (only the Combo consistently failed) changed hard drives as start up (erased, installed panther on the other hd) all seemed to go well with installation, but permission repair kept reporting the same permission errors, opening iTunes got the grey restart box, etc etc,
    I opened up the quicksilver, confirmed lack of slave/master, fixed it I believe according to the Seagate diagrams, restarted and had successul permision repairs BUT was unable to download updates (got a red ! over the start up drive, the empty but formatted drive indicated it would accept it but DU reported that drive as damaged, and the start up drive as fine. I was able to open and use Safari and Mail, though iTunes continued to crash - until for no apparent reason, after deleting a dozen emails the grey box came up. So I quit for the night and wrote this. If anyone has any idea what is going on let me know. I plan to contact Seagate to make sure the little jumper is on correctled (metal piece visible) but I am thinking of joining my iPod in the washing machine. Any help is welcome.
    Annexit

    Hi, thomas and thanks for the great link - yes the config was wrong, and I fixed it according to the diagram - still had problems installing, called the OWC who are GREAT people, the tech support guy said I had configged it correctly, recommended erasing again, resinstalling and putting panther on box drives - but first doing a memory chip check with REMBER which I got from version tracker. Memory checked out fine, still erratic problems - at this point I have managed to install panther on one of the drives, the other is still a problem - kept looping through the flashing welcome start up - hung on iTunes, so I opened disc two and installed each individually , with iTunes last - seems to be no problem SO FAR - I justed checked Software update, I am downloading and manually installing updates, the iPod updater had a problem. I will mark your post helpful - any insight as to the buggy install stuff? Is this normal? I have only installed panther a couple of times and don't remember this kind of hassle -
    Thanks, again for your response - it sure headed me in the right direction!
    Annexit

  • Need help converting project file from Creative Cloud to CS6

    Hello.
    I started a project file on the Adobe Creative Cloud and I am trying to convert the file to CS6 (as that is what all my editors have). I have all of my time codes generated in Creative Cloud and I need the easiest solution to share the file across platforms with out corrupting it. Any help is appreciated. Thank you.
    -A*

    I am the director of the project- so I am not very technically inclined to answer these questions, but will try my best. My lead editor dropped out of the project leaving me very confused and I am trying to establish a new workflow based off of her existing project file.
    The original project was started in Adobe Creative Cloud. I am now trying to use Adobe CS6 and I am trying to figure out if we can convert a file from Creative Cloud > CS6. If you can provide a list of questions for me to ask my previous editor I can direct them to her and try to provide a more concise answer. Thanks for your help.

  • Mac is extremely slow after yosemite update, really need help. (Etrecheck inside).

    After recently installing yosemite my mac been painfully unresponsive and slow. I cannot boot up in normal mode, i'm currently in safe mode.
    What I have tried so far and what I know:
    Initially thought filevault was the issue, I disabled encryption and now it says "decryption is paused" and hasn't resumed in days. Potentially is the issue.
    I run a hardware diagnostic test using the hardware check within the macbook pro (booting up holding D) and the mac didn't identify any hardware issues.
    I reinstalled yosemite (not a clean install) and the issue was not resolved.
    I have completed a backup of my mac so all my data is secure.
    Any help would be great, even just telling me how to turn on filevault will be helpful.
    My etrecheck:
    EtreCheck version: 2.0.11 (98)
    Report generated 23 November 2014 20:15:11 GMT
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Mid 2012) (Verified)
      MacBook Pro - model: MacBookPro9,2
      1 2.5 GHz Intel Core i5 CPU: 2-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1600 MHz ok
      Bluetooth: Good - Handoff/Airdrop2 supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 4000 -
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 0:11:9
    Disk Information: ℹ️
      APPLE HDD TOSHIBA MK5065GSXF disk0 : (500.11 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      Macintosh HD (disk1) /  [Startup]: 498.88 GB (268.58 GB free)
      Core Storage: disk0s2 499.25 GB Online
      MATSHITADVD-R   UJ-8A8 
    USB Information: ℹ️
      Samsung M3 Portable Samsung M3 Portable 500.11 GB
      S.M.A.R.T. Status: Verified
      EFI (disk2s1) <not mounted> : 210 MB
      Backups (disk2s2) /Volumes/Backups : 494.35 GB (264.39 GB free)
      Recovery HD (disk2s3) <not mounted>  [Recovery]: 650 MB
      GeneralUse (disk2s4) /Volumes/GeneralUse : 4.63 GB (4.60 GB free)
      MOSART Semi. 2.4G Keyboard Mouse
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Computer, Inc. IR Receiver
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Library/Extensions
      [not loaded] com.caiaq.driver.NIUSBTraktorKontrolS4Driver (2.6.0 - SDK 10.8) Support
      /System/Library/Extensions
      [not loaded] com.mice.driver.Wireless360Controller (1.0.0d12 - SDK 10.8) Support
      [not loaded] com.mice.driver.WirelessGamingReceiver (1.0.0d12 - SDK 10.8) Support
      [not loaded] com.mice.driver.Xbox360Controller (1.0.0d12 - SDK 10.8) Support
    Startup Items: ℹ️
      DoubleCommand: Path: /Library/StartupItems/DoubleCommand
      Startup items are obsolete and will not work in future versions of OS X
    Problem System Launch Agents: ℹ️
      [invalid?] org.thebends.iphonedisk.mobile_fs_util.plist Support
    Problem System Launch Daemons: ℹ️
      [failed] com.apple.watchdogd.plist
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [not loaded] com.mcafee.menulet.plist Support
      [not loaded] com.mcafee.reporter.plist Support
      [not loaded] com.oracle.java.Java-Updater.plist Support
      [not loaded] com.teamviewer.teamviewer.plist Support
      [not loaded] com.teamviewer.teamviewer_desktop.plist Support
      [not loaded] org.pqrs.KeyRemap4MacBook.server.plist Support
    Launch Daemons: ℹ️
      [not loaded] com.adobe.fpsaud.plist Support
      [not loaded] com.bombich.ccchelper.plist Support
      [not loaded] com.DesignScience.DSMTTool.plist Support
      [not loaded] com.ea.origin.ESHelper.plist Support
      [invalid?] com.mcafee.ssm.Eupdate.plist Support
      [invalid?] com.mcafee.ssm.ScanFactory.plist Support
      [invalid?] com.mcafee.ssm.ScanManager.plist Support
      [not loaded] com.mcafee.virusscan.fmpd.plist Support
      [not loaded] com.mice.360Daemon.plist Support
      [not loaded] com.microsoft.office.licensing.helper.plist Support
      [not loaded] com.oracle.java.Helper-Tool.plist Support
      [not loaded] com.oracle.java.JavaUpdateHelper.plist Support
      [not loaded] com.teamviewer.Helper.plist Support
      [not loaded] com.teamviewer.teamviewer_service.plist Support
    User Launch Agents: ℹ️
      [not loaded] com.adobe.ARM.[...].plist Support
      [not loaded] com.google.keystone.agent.plist Support
      [not loaded] com.spotify.webhelper.plist Support
      [not loaded] com.valvesoftware.steamclean.plist Support
    User Login Items: ℹ️
      FilesWarwick Application (/Users/[redacted]/Downloads/FilesWarwick.app)
      iTunesHelper ApplicationHidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      Flux Application (/Users/[redacted]/Applications/Flux.app)
      uHD-Agent UNKNOWN (missing value)
      uTorrent UNKNOWNHidden (missing value)
      Google Chrome UNKNOWN (missing value)
      wine Unix Executable File (/Applications/Wine.app/Contents/Resources/bin/wine)
      proXPN Application (/Applications/proXPN.app)
    Internet Plug-ins: ℹ️
      JavaAppletPlugin: Version: Java 7 Update 67 Check version
      Unity Web Player: Version: UnityPlayer version 4.5.1f3 - SDK 10.6 Support
      Default Browser: Version: 600 - SDK 10.10
      AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.223 - SDK 10.6 Support
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 Support
      Silverlight: Version: 5.1.20913.0 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.223 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      SharePointBrowserPlugin: Version: 14.4.6 - SDK 10.6 Support
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 Support
      DirectorShockwave: Version: 12.0.4r144 - SDK 10.6 Support
    User Internet Plug-ins: ℹ️
      BlueStacks Install Detector: Version: Unknown
    Safari Extensions: ℹ️
      LinkThing
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      Java  Support
      MacFUSE  Support
      Native Instruments USB Audio  Support
      XBox 360 Controllers  Support
    Time Machine: ℹ️
      Skip System Files: NO
      Mobile backups: OFF
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 498.88 GB Disk used: 230.30 GB
      Destinations:
      Backups [Local]
      Total size: 495.00 GB
      Total number of backups: 0
      Oldest backup: -
      Last backup: -
      Size of backup disk: Too small
      Backup size 495.00 GB < (Disk used 230.30 GB X 3)
    Top Processes by CPU: ℹ️
          86% corestoraged
          45% WindowServer
          34% Google Chrome
          10% com.apple.preference.security.remoteservice
          9% xpccachectl
    Top Processes by Memory: ℹ️
      177 MB xpccachectl
      170 MB Google Chrome
      137 MB Microsoft PowerPoint
      87 MB WindowServer
      82 MB spindump
    Virtual Memory Information: ℹ️
      26 MB Free RAM
      1.45 GB Active RAM
      1.44 GB Inactive RAM
      674 MB Wired RAM
      3.07 GB Page-ins
      167 MB Page-outs

    When you see a beachball cursor or the slowness is especially bad, note the exact time: hour, minute, second.  
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above.
    Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • I have an iphone 3 and when i click software update it says cannot contact iphone software update i need help so i can get apps

    plz help, i need to update my iphone and it wont let me HELP!!!!!
    i also try to sync music to it and when i do it freezes the computer and the rainbow spiral thingy shows up

    I don't care how old it is! I have a 5 year old dell laptop and a brand new dell laptop but I still get the same updates for both from windows! I don't do contract phones, Its the biggest money sham in the market. So, that being said im not spending my hard earned money on a new phone when I have a perfectly good one now! Apple just needs to appreciate all of there customers not just the ones that have their newest phones. Period.

  • I am trying to update my MAC to get iCloud on it, prior to the ios7 update.  Need help figuring this out!

    I am trying to update my MAC to get iCloud on it, prior to the ios7 update.  I do have a pc as well, so i can sync it there if needed.  any help or suggestions are much appreciated!

    beachblondie wrote:
    ...  I am just afraid of losing everything ...
    How to BackUp  >  http://support.apple.com/kb/ht1766
    What gets Backed Up
    iTunes http://support.apple.com/kb/ht4946
    iCloud http://support.apple.com/kb/PH2584

  • Need help with Project Pro

    Hi,
    I recently purchased few licenses for Project pro from office 365 (online version). When I log in to office 365 and go to my apps I can not see Project Pro app there? Where it might be?
    Also when I create a project with desktop app, where is the option to sync that project to server? The license already included with
    Project Online and Project server Sync.
    Any Help solving my issues will be greatly appreciated.
    Thanks in advance..

    Hi,
    Please see this
    article for starting a project with Project Pro for Project Online.
    Don't forget to use in Project Pro the email adress used for creating your O365 account.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Microsoft Office - Constant Update Problem  | NEED HELP

    Okay, so here is my problem -
    The website i have needs to be updated regulary by many different people and i know contribute can solve this.
    as the people who are updating this have no Web Experience, i thought using the Office Plug-in would help.
    Can each person be assigned a Microsoft Word Document and whenever they type new content and click publish, will the website automatically update with this new content ? or does it have to be re added into contribute every time ?

    You can use the Office plugins to publish the office Documents directly to your website. When you have an earlier version of the same file in the website, Contribute pops up a dialog saying to Replace the existing version or create a new file with _00 at the end of the file name.

  • Need Help Starting CSS Page Layout

    Hi, I need a little help getting started in creating a CSS
    layout page in Dreamweaver CS4. I am following a tutorial online
    but I have run into a problem. What I am trying to do is get a
    simple CSS layout started. Below I have listed my steps.
    1) First I created a new .html page and named it "index.html"
    2) Next, in the "Properties" panel I clicked the "CSS" button
    3) I then selected the "Edit Rule" button and a window opened
    called "New CSS Rule"
    4) I then left all default settings and in the window where
    it asked me for a name for my selector I typed in:
    main_layout.css
    Then I got this message below.
    "Class names must start with an alphabetical character
    preceded by an optional period. There should be no
    spaces or additional punctuation."
    What am I doing wrong? Can someone please tell me the correct
    steps to start a CSS layout in DW CS4?
    Thanks

    Undescore are Ok in CSS, your problem is the starting. When
    you define a
    class in CSS you have to start the calss name with a period.
    Plus they
    cannot be a period after so...
    If you want to define a class.
    main_layout.css is not OK
    .main_layout is OK
    main_layout is not OK
    Putting a ".css" a the end is for a file name not a selector
    So with my example .main_layout you would then applie this
    class to a tag
    like this
    <p class=" main_layout">Put text here</p>
    Now if you want to define a ID selector then you start tou
    selector eith "#"
    no quotation mark
    so
    #container {
    position:relative;
    background-color: #fff;
    width: 800px;
    margin: 0 auto;
    top: 20px;
    border-top: 0;
    border-right: 1px solid #b7b7b7;
    border-bottom: 0;
    border-left: 1px solid #b7b7b7;
    And then you apply this as an id
    <div id="container">Put content here</div>
    Do you get it. If not then go get a good book on CSS.
    aka Frenchy ASP
    "tweened" <[email protected]> wrote in
    message
    news:ge27el$a8i$[email protected]..
    > I'm still learning CSS myself. But I have never seen a
    style sheet name
    > with an
    > underscore in it or any punctuation for that matter. If
    you look at the
    > last
    > sentence in the error message you got, It tells you that
    no additional
    > punctuation can be used. Try using "style" as your css
    name. the same
    > would go
    > for the property tags within the style sheet, don't use
    any punctuation in
    > the
    > names.
    >

  • NEED HELP SCHOOL PROJECT DUE TOMORROW @ 7:45

    I need someones help. I had to make a movie for my ap world history class, and @ the last process, which is audio entending(something like that) it freezes or known as not responding. Why does it keep doing this? Is there a SOLUTION?

    You give too little details.
    iDVD can appeear to be frozen, but it still works. This is especially true for the audio encoding. Depending on the complexity and duration of your project, as well as the power of your machine, the encoding phase can take long hours.
    I understand you don't have time for experimenting, so here's what you can try:
    - open Font Book;
    - select all fonts that have a dot on the right;
    - do Edit>Resolve Dupplicates.
    Then try again with iDVD and your project. This time leave enough time, even if a right-click in the iDVD's icon in the Dock tells it's not responding.
    And check you have enough free space: at least 10% of the HDD (general rule for Mac OS X), or 10 GB (some even say 20 GB).

Maybe you are looking for

  • How to Get the Current Workitem id at runtime

    Hi All, I have a scenario, where request pending with a user who has already resigned the organization. The requirement is that we need to provide a report of the request and with whom it is pending with along with the workitem id with a forward push

  • Zen V Plus - different device in explorer than the last t

    Hello to everyone when i install my zen v for the first time, it was visible in my computer as device in category "other devices" (or something similiar - im not sure) with "looks_like_zen" white icon and signed as my device name and i didnt had to u

  • FQL query text to search for exact string

    Hi we are using SharePoint 2010 with FAST search... I'd like to be able to search for this exact string that contains parentheses...  "(ABC)" I thought it would be: ManagedProperyName:"(ABC)" this returns results with just ABC ... it ignores the pare

  • Music on iPhone... Auto Choose?

    I had a Motorola Slvr that would automatically choose songs to fit the memory space available in the phone. I know I can make my own playlist, but I enjoy the "randomness" of the auto fill option. Is there a way to auto fill a playlist, or do I just

  • Hide the fields

    hi gurus how i hide the fields?