[Solved] Trouble running script at Fluxbox startup

I'm trying to execute a script which runs as ~/.left in the terminal.  it runs xrandr commands and works perfectly after fluxbox has started.  so i figure it needs to run after fluxbox in the startup script, so i looked at the wiki and found the format for starting an app after fluxbox:
fluxbox &
fbpid=$
sleep 4
# Applications you want to run after fluxbox has started
# MAKE SURE THAT APPS THAT KEEP RUNNING HAVE AN & AT THE END.
# ipager &
# gkrellm2 &
exec ~/.left &
i've tried ~/.left, ~/.left &, exec ~/.left, and the above (also substituted /home/elias/ for ~ just for fun).  the number after sleep is the time after fluxbox has started until it runs the commands.  i've tried 4 so I would have plenty of time to see if anything happened. 
ideas?  answers?  Thanks in advance
Last edited by pw_f100_220 (2010-01-10 19:52:22)

FIGURED IT OUT
I stuck "exec xterm &" in .fluxbox/startup, and it didn't run.  that should have worked, so I figured the file wasn't even involved in the startup process.  so i did some diggin:
I use startx which invokes .xinitrc which ran exec fluxbox which DOES NOT read .fluxbox/startup.  now .xinitrc reads "exec startfluxbox"
AKA .fluxbox/startup wasn't being read at all!  Now it is!  And it's beautiful!  I've learned to do more exploring into what runs/is run by what.
Thanks for the responses!
Last edited by pw_f100_220 (2010-01-10 19:54:26)

Similar Messages

  • Running script automatically at startup at system level

    Hi all,
    I am a newbie with MAC. I am looking for some application that is equivalent to Window's Task Scheduler - bascially, I have a bash script and I would like it to start running at startup and be always running in the background, no matter who logs into the computer, and whoever logged in can restrat the script if needed.
    Background info (if that helps understand what I am trying ot accomplish):
    I am using Selenium (a UI automation tool) to automate some web testing, and my script will be calling the Selenium library to start a server to listen for requests, and it will launch browser and run tests when a request comes in.
    Long story short about what I want:
    I would like to automate opening up a terminal and running a bash script when my MAC starts up, and have the script always running in the background regardless of which user is currently logged in, and I would like the user to be able to stop the script and restart it if it somehow gets stuck.
    I did some quick research and found out about Automator. I would like to find out/confirm if Automator is what and all I need? If not, what are my options out there?
    Any suggestion and advice would be greatly appreciated! Thank you so much for reading!

    I'm not sure whether this should be a LaunchDaemon or a LaunchAgent - if it requires user interaction as you sugest it should really be the latter, so that's what I'll show how to do.
    Open TextEdit, make sure the open document is set to plain text (not rich text), copy in the following text, then save it as user.bash_script.autostart in the folder /Library/LaunchAgents/.  Then restart the machine or load the plist using launchctl in terminal.
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
              <key>RunAtLoad</key>
              <true/>
              <key>Label</key>
              <string>user.bash_script.autostart</string>
              <key>Program</key>
              <string>/path/to/bash script</string>
              <key>KeepAlive>
              <true/>
    </dict>
    </plist>
    This job will start the script as a daemon so that it's running for all users.  The KeepAlive key specifies that if the daemon quits launchd should automatically restart it.  It's up to you to make sure users have the correct permissions to quit the process if it gets stuck.
    Note: using a LaunchAgent means that a separate instance of this process will be created for each user who logs in, and that the process will not be running if no user is logged in.  if you need to have one running instance for all users you need to use a LaunchDaemon.  However, LaunchDaemons are not supposed to have user interaction, which it seems like you want.  more details would be helpful.

  • [SOLVED] Trouble Running Ksniffer as root

    so i installed ksniffer on my kde desktop... if i run ksniffer it runs fine however when i run sudo ksniffer i get this message and it crashes.
    kdeinit: Can't connect to the X Server.
    kdeinit: Might not terminate at end of session.
    No protocol specified
    kded: cannot connect to X server :0
    DCOP aborting call from 'anonymous-3509' to 'kded'
    kded: ERROR: Communication problem with kded, it probably crashed.
    No protocol specified
    ksniffer: cannot connect to X server :0
    DCOP aborting call from 'anonymous-3500' to 'ksniffer'
    ksniffer: ERROR: Communication problem with ksniffer, it probably crashed
    not sure how to fix it and have been googleing it all day with no luck i assume its a simple fix but dont know how to
    Last edited by nijani (2012-09-27 21:58:25)

    well that worked for it to get started... thank you. i still cant seem to get packets from wlan0 but let me make sure its the same problem before i decide its working

  • Running scripts in PS after exporting from LR- errors?

    I'm have a lot of trouble running scripts after editing in LR. After editing, I export the images as jpeg, 300 dpi and hightest quality (100). Next, I open CS2, try running a script and it won't work? I get an error message? Has anyone else run into this?

    I haven't. Have you tried making a droplet to run at the end of the LR export?

  • ~/.fluxbox/startup not being executed by fluxbox (SOLVED)

    It doesn't appear that my ~/.fluxbox/startup file is being executed when I run fluxbox.   No matter what I put in, nothing happens.
    Here's my ~/.fluxbox/startup file:
    #!/bin/sh
    fbsetbg -f /home/myuser/backgrounds/ArchBlue.png
    # garbage command for testing
    /usr/bin/asdfasdfadsfadfadsf
    exit 0
    None of the commands I put in this file are executed when I start fluxbox.  Fluxbox starts with no problem, though when I type startx with "exec fluxbox" in my .xinitrc.
    Any ideas why it isn't being executed?

    Well, I got it to work the way it's apparently suppose to work (I think).
    The startfluxbox manpage says that it will create the ~/.fluxbox/startup if one doesn't exist.  So, I deleted the original one (which was created when I first installed and ran fluxbox for the first time I think) and then ran exec startfluxbox from my .xinitrc again.
    It re-created a new ~/.fluxbox/startup file that was completely different than the old one (namely, it had "exec fluxbox" at the end of it).  So, startfluxbox worked with the newly created startup file.  But, the fbsetbg command in the newly created ~/.fluxbox/startup file wasn't setting the background image (it would appear for a second and disappeared).  Following iphitus's advice, I addded '&' after.
    And now, everything works.  The default startup file created by startfluxbox is kind of nice - lots of examples that are commented out by default.  However, their fbsetbg example wasn't working until I added the '&' as mentioned before.
    Thanks iphitus and ScriptDevil for the suggestions and help.
    Cheers.

  • [SOLVED] Running a VM at Startup in Separate X Server

    Hi,
    I want to run a VM at startup in another X server (so I can switch to it using Ctrl+Alt+F8), but I can't seem to figure out how to do it. I've Googled this and come across some instructions on how to do it, but it didn't work for me.
    What I try to do is to set up my .xinitrc this way:
    #!/bin/bash
    # Dbus fix
    if [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then
    eval "$(dbus-launch --sh-syntax --exit-with-session)"
    fi
    numlockx &
    xset s off
    /usr/bin/xdg-user-dirs-update
    # start xfce
    startxfce4
    # Start Win7 Virtual Machine
    startx ./vbox.sh -- :1 -vt8
    where vbox.sh is a script that I have placed in my home directory:
    #!/bin/bash
    virtualbox --startvm "Windows7" --fullscreen
    I've also tried placing the startx ./vbox.sh before the startxfce4 command, but all it does is make my computer boot slower and I still don't have the VM running in my ctrl+alt+f8
    Last edited by brapodam (2014-09-13 10:35:35)

    brebs wrote:I would add a script into XFCE's session startup.
    Didn't work for me either.
    Anyway, I gave up trying to run my VM in a separate X session. I just installed wmctrl, run the VM at startup and switch it to another workspace.
    If anyone is interested, here's my script to do that (I place it in XFCE's Session and Startup)
    #!/bin/bash
    virtualbox --startvm Windows7 --fullscreen &
    sleep 3
    wmctrl -r "Windows7 [Running] - Oracle VM VirtualBox" -t1
    exit 0
    Replace Windows7 with whatever your VM name is

  • Trouble running DurableSubscriberExample

    Hi
    I am having trouble running the "DurableSubscriberExample.java" that is in Appendix A of the "Java Message Tutorial" (http://java.sun.com/products/jms/tutorial/1_3_1-fcs/doc/client_samples.html#1002876)
    These are the steps I followed:
    1. I compiled the classes - "DurableSubscriberExample.java" and "SampleUtilities.java".
    2. I stared the j2ee server.
    3. I created a topic called jms/Topic as follows:
    j2eeadmin -addJmsDestination jms/Topic topic
    4. I created a connection factory with a Client ID by copy-pasting the following from the tutorial (section 8.2.3) as instructed:
    j2eeadmin -addJmsFactory jms/DurableTopicCF topic -props clientID=MyID
    5. Then I specified the connection factory name and the topic name on the command line as instructed:
    java -Djms.properties=C:\j2sdkee1.3.1\config\jms_client.properties DurableSubscriberExample DurableTopicCF jms/Topic
    This is the error I get:
    JNDI API lookup failed: javax.naming.NameNotFoundException: DurableTopicCF not found
    Any idea what's wrong?

    I installed J2sdkee1.3.1 to Win98, I can startup the J2ee server. Once I typed j2eeadmin -addJmsDestination MyQueue queue, I got the following message :
    C:\j2sdkee1.3.1\bin>j2eeadmin -addJMSDestination jms/MyQueue queue
    Usage:
    -addJdbcDriver <class name>
    -addJdbcDatasource <jndi name> <url>
    -addJdbcXADatasource <jndi name> <class name> [<xa user name> <xa password>] [-
    rops (<name>=<value>)+]
    -addJmsDestination <jndi name> (queue|topic)
    -addJmsFactory <jndi name> (queue|topic) [-props (<name>=<value>)+]
    -addConnectorFactory <jndi name> [<app name>:]<rar filename> [<xa user name> <x
    password>] [-props (<name>=<value>)+]
    -list<resource type>
    -remove<resource type> <name>
    -removeAll<resource type>
    my j2eeadmin.bat as follow
    @echo off
    REM
    REM Copyright 2002 Sun Microsystems, Inc. All rights reserved.
    REM SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
    REM
    rem
    rem Set JAVA_HOME and J2EE_HOME before running this script.
    rem
    if not "%J2EE_HOME%" == "" goto CONT0
    echo ERROR: Set J2EE_HOME before running this script.
    goto END
    :CONT0
    if EXIST "%J2EE_HOME%\bin\setenv.bat" goto CONT1
    echo ERROR: Set J2EE_HOME to the path of a valid j2sdkee.
    goto END
    :CONT1
    call %J2EE_HOME%\bin\setenv.bat
    if not "%JAVA_HOME%" == "" goto CONT2
    echo ERROR: Set JAVA_HOME before running this script.
    goto END
    :CONT2
    if EXIST "%JAVA_HOME%\bin\java.exe" goto CONT3
    echo ERROR: Set JAVA_HOME to the path of a valid jdk.
    goto END
    :CONT3
    rem @echo on
    %JAVA_HOME%\bin\java -Xmx128m -D%SSL_OPTION1%=%SSL_OPTION2% -D%JAAS_OPTION1%=%JAAS_OPTION2% -Dcom.sun.enterprise.home=%J2EE_HOME% -classpath %CPATH% com.sun.enterprise.tools.admin.AdminTool %*
    :END
    I can start up the server. I can use the deploytool, so that my setenv may be correctly.
    Any expert can help me. thank a lottttttttttt

  • Fluxbox startup

    hi guys!
    Im having a little problem with flux.
    there is a ~/.fluxbox/startup file that should be run by every startup of this desktop enviroment. But its not! ..I mean, I have that file in my filesystem but it's not prcessed during flux start...
    I want it to do this >
    setxkbmap us,sk -variant ,qwerty -option
    grp:switch,grp:alt_shift_toggle,grp_led:scroll
    ..which is "script" for changing keyboard map, but it is not working. Even command eg. "pidgin" is not working.
    can anybody tell me why?..or what should I check?
    thanks (:

    sHyLoCk wrote:
    I don't have a problem with fluxbox. Here's my .xinitrc:
    └┼─$─┤▶ cat .xinitrc
    #!/bin/sh
    # ~/.xinitrc
    # Executed by startx (run your window manager from here)
    DEFAULT_SESSION=fusion.sh
    case $1 in
    compiz)
    exec ck-launch-session fusion.sh
    fluxbox)
    exec ck-launch-session startfluxbox
    ratpoison)
    exec ck-launch-session ratpoison -f ~/.ratpoisonrc
    kde)
    exec startkde
    exec ck-launch-session $DEFAULT_SESSION
    esac
    EDIT: Btw, why are you launching pidgin,nm-applet,etc from xinitrc? Launch them from your fluxbox startup file instead?
    because my flux startup file does not work (:
    I have tried to change flux startup command to ck-launch-session startfluxbox but response is the same..
    even if I select fluxbox in slim...
    Last edited by greengold (2010-01-31 10:05:19)

  • Error while running script HyperV - Dash Board - VM and Storage Report

    Hi Team,
    I am getting below error while running HyperV dashoboard monitor & storage report script from Technet script library.
    HyperV - Dash Board - VM and Storage Report
    Finished processing VM  - xxxx
    Processing VM - xxxxx
    Get-VHD : Unable to cast COM object of type 'System.__ComObject' to interface type 'System.Management.IWbemServices'.
    This operation failed because the QueryInterface call on the COM component for the interface with IID
    '{9556DC99-828C-11CF-A37E-00AA003240C7}' failed due to the following error: The requested object does not exist.
    (Exception from HRESULT: 0x80010114).
    At C:\Scripts\HyperV-DashBoard-v2.1.ps1:210 char:10
    +                     If (Get-VHD -VMID $vmDetails.VMID -ComputerName $cNodes.Name[$i])
    +                         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [Get-VHD], InvalidCastException
        + FullyQualifiedErrorId : Unspecified,Microsoft.Vhd.PowerShell.GetVhdCommand
    Get-VMNetworkAdapter : Unable to cast COM object of type 'System.__ComObject' to interface type
    'System.Management.IWbemServices'. This operation failed because the QueryInterface call on the COM component for the
    interface with IID '{9556DC99-828C-11CF-A37E-00AA003240C7}' failed due to the following error: The requested object
    does not exist. (Exception from HRESULT: 0x80010114).
    At C:\Scripts\HyperV-DashBoard-v2.1.ps1:238 char:12
    +                      If ((Get-VMNetworkAdapter -VMName $vmDetails.Name -ComputerName $cNodes.Na ...
    +                           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [Get-VMNetworkAdapter], InvalidCastException
        + FullyQualifiedErrorId : Unspecified,Microsoft.HyperV.PowerShell.Commands.GetVMNetworkAdapterCommand

    Hi ,
    I found that the problem had been solved in the script blog by your self :
    http://gallery.technet.microsoft.com/scriptcenter/HyperV-Dash-Board-VM-Disk-299bac7d/view/Discussions#content
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Why does Firefox on my Windows 7 PC hang (become unresponsive) while it waits for most pages to load or run scripts?

    Firefox hangs (becomes unresponsive) when accessing many sites including Gmail. Eventually, when hung, Firefox will throw up a window saying "WARNING: A script has become unresponsive" or, in the case of Gmail, the page itself will say "Some Gmail features have failed to load due to an internet connectivity problem."
    IE8 and Google Chrome are working normally. I've tried Firefox in safe mode, re-installing and even running Firefox portable from a USB thumb drive. Each time with the same result—Firefox hangs or becomes unresponsive while it waits for most pages to load or run scripts.
    #### PC Workstation Environment ####
    Firefox 13.0.1
    Windows 7
    Symantec Endpoint Protection 11.0.6200.754
    --

    Your problem sounds like the one that a co-worker and I started to have about the same time. Check your Symantec client management control log. You might see a line like the following.
    Date and Time Severity Level Action Test / Production Description API Class Rule Caller Process ID Caller Process Parameter User
    2012-07-30 10:48:09 AM 15 Block Production Unauthorized NT call rejected by protection driver. System Built-in rule 1608 FlashplayerPlu FuncID-B6H, R... None
    At first we thought that it was a Javascript problem until we noticed this log. The key words are 'Block' and 'FlashPlayerPlu'. This problem recently started for us, perhaps with a software push 1-2 weeks ago. Internet Explorer does not hang when accessing pages with Flash.
    The Flash page does eventually load after a long time. However, since the whole browser hangs for a while, for the most part having the Flash plugin enabled makes Firefox unusable if accessing pages with Flash.
    Disabling the Flash plugin solves the hanging problem, but I do not know what is causing the problem, nor do I know when a combination of Windows 7, Flash, and Symantec will work. Your later version of Symantec shows that we might have the problem for a while, but I do not know what customization CSC did with Symantec. My coworker did run a complete virus scan, uncovering nothing. Another co-worker is running Windows XP. She does not have the problem, but I do not know what other versions of software she is running.
    Symantec Endpoint Protection version 11.0.6100.645
    Flash version 11.3.300.268
    Firefox version 14.0.1
    Windows 7 32-bit service pack 1

  • Hi, having trouble with my iMac on startup. Background screen appears, but no icons,

    Having trouble with my iMac- on startup, the background screen appears, but no icons. The spinning beach ball appears for quite a long while, then when the icons finally come up, when I open a finder window, the only icons to appear are the Network and Macintosh HD icons. I've tried to repair disk permissions: this came up with heaps of errors, which it then fixed, but the original problem remains.
    Any suggestions on how to fix this?
    thanks

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up a guest account” (without the quotes) in the search box. Same problem(s)?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    Note: If you’ve activated “Find My Mac” or FileVault in Mac OS X 10.7 or later, then you can’t enable the Guest account. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. The instructions provided by Apple are as follows:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Same problem(s) in safe mode?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Loading script "script path-name" failed (0xC0000006) error when running scripts from DFS

    We have this issue where any number of random scripts that execute at startup will produce the following error when run from DFS:
    The status code for this error equates to STATUS_IN_PAGE_ERROR - The instruction at 0x%p referenced memory at 0x%p. The required data was not placed into memory because of an I/O error status of 0x%x.
    This does not always happen each time and the script can be random. If we move the script(s) to a non DFS, we do not see this. I believe the issue is being caused by a minute disconnect to the DFS for whatever script is attempting to execute at that
    moment. This happens across a few (consistent) offices on different computers.
    Any ideas?

    Hi,
    According to your description, my understanding is that you run scripts in a shared folder which is added to a DFS Namespace, then the error prompt. However, you can run the scripts when you directly access the shared folder.
    What scripts did you run? Is there any error message in the Event Log? If so, please provide us the detailed error message for our further research.
    Best Regards,
    Mandy 
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • [RESOLVED] Script at KDE startup

    I'm trying to run a script at KDE startup, I tried the following:
    user.desktop file in:
    $HOME/.config/autostart
    or a all.sh file in:
    $HOME/.kde4/Autostart
    The former has my preference. I checked that these scripts and paths are present and enabled in KDE System Settings -> Startup and Shutdown but these files do not seem to be triggered by KDE. What could be the problem? If I double-click on the desktop file in a file explorer, then the script does get launched, so it does not seem the be a corrupt desktop file.
    My desktop file:
    [Desktop Entry]
    Exec=sh -c "${HOME}/%/start/all.sh"
    Hidden=false
    Name=User Startup
    Type=Application
    Last edited by OutOfPhase (2011-11-20 21:34:25)

    You could try using the autostart kcm in systemsettings. By default, you should find that plasma-desktop (or netbook) and perhaps krunner are pre-enabled for autostarting. If you want to dig deeper, these files are being placed in .kde4/share/autostart/, not in the directories you've been trying. Try the GUI for easy set up. Or place your .desktop files in that directory and edit accordingly (using the already working .desktop files as a guide) to have it work.
    Last edited by karper (2011-11-15 20:36:08)

  • Data Manager not running scripts

    Dear Experts,
    I've followed one of the "How to pass parameters to BPC scripts" guide and created a Process Chain to run scripts. The whole thing didn't go as smooth as expected and I'm not sure which part went wrong.
    As I'm having trouble validating the complex version of codes. I wrote something very simple instead like
    *XDIM_MEMBERSET AcctDetail=Non_AcctDetailInput
    *WHEN ACCOUNTPLAN
    *IS "SSVV060"
    *REC(EXPRESSION=%VALUE%,P_DataSrc="INPUT")
    *ENDWHEN
    *COMMIT
    I ran the package, the package should trigger the process chain. but it never showed itself in the package status like it's never ran once at all.
    I'm posting my script problem on another thread.
    anyone has an idea? Thanks a million...
    , Jim Hsu

    Please check your task profile....
    Make sure you  have all task profile related to data manager....do let us know if youstill face this problem

  • Using domain templates (where's the run scripts step?)

    Hello,
    I'm using 9.2.1 for ALSB.
    I have manually created an ALSBdomain. I want to create a similar domain on a different server, every setting is the same except the username for the datasource.
    I used config_builder.sh to create a jar template from the first ALSB domain. I then copied the jar to the other server and used it with the domain creation wizard. (config.sh) Everything behaved exactly the way I expected. All the settings were the same, and I only had to change the username for the datasource.
    However, there is one problem, the runscripts phase is missing. I even went and found the scripts "reporting_runtime_drop.sql" and "reporting_runtime.sql" and added them during template creation. Interestingly enough they did not show up in any run scripts phase.
    Also, I took a look at the jar contents and the sql files I added in the add sql phase were not contained in the jar.
    Am I looking at this the wrong way? Is there any way to associate the sql I want to run in a template after the datasources are configured? or is this a limitation of templates, and I must manually log into the database and set things up?
    M@

    Q005, I am not certain that I fully understand your question.  However, here is the "Motherboard Specifications" page for the computer.  At the bottom of the page is a Motherboard layout.  It shows the connectors at the rear of the case.  You will use # 4-LAN to connect your computer by wire to the router.  I have had several computers connected in this way.
    Please click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

Maybe you are looking for

  • Convert photopages to photo album?

    Hi, I have been using photopages rather than albums and they seem to be building up (too many of them now). Can I put all of my photo pages into an album without having to recreate it all from scratch?

  • A question on Javascript

    Hello, I'm very new to javascript My simple script goes : <script language ="javascript" >      str1="Hello! ";      str2 ="World.<br>";      /*line1*/     document.write((str1 + str2).big());      /*line2*/     document.write(str1.concat(str2).itali

  • Zen Stone Plus Speaker. Browse music without starting the first song in the next fold

    Hi everyone, I'm not sure what I want is possible. I've had this player for about a?week now and I believe I could browse to the folders while listening to a song. For some reason when I do that now the player?start playing the first song of every fo

  • ISync and Palm : difficult

    Hello, There are 2 pbs : * there is no way to have the palm icon being displayed in the isync front windows * when the sync is started directly from the palm, it does not sync properly the phone number : as there is no more any way to reinitialise th

  • Having trouble installing updates lost the discs to restore my mac

    trying to restore my mac to brand new but lost discs