Background tasks without end

Background tasks Panel was displaying the same message for over an hour now (see photo). Cancellation does ' t work, is not possible to Force Quit InDesign. I thought that the best thing to do in such a situation was to search the Forum for a solution, but it did not help.

InDesign CS6, OS X 10.8.5

background.png

You should be able Force Quit ID. If this isn't the case, kill the power. ID should recover on the next launch.

For the export of the deadlock, see Adobe Community: file crashing on exit - print/PDF/other for troubleshooting tips.

Tags: InDesign

Similar Questions

  • Creating a background without end

    I'm looking for online tutorials to create a background without end, much like these images below. Can someone tell me please in the right direction?endless2.jpgendless1.jpg

    I would do it with a gradient fill layer

    1. Choose layer/new layer fill / gradient, give a name to your new layer and presso OK.

    2. in the window of gradient fill, choose the Style / thought

    3. drag & drop directly in the scene of the line of the gradient so that it overlapped the horizon line

    4. click on the preset gradient and the gradient editor-enter

    5 play with colors, but don't forget the stop no is opacque and the other is transparent.

  • I lost the bar background tasks, start menu and help on my windows 7__

    I lost the bar background tasks, start menu and help on my windows 7

    Hello
     
    1. are you able to use the icons on the desktop with success?

    In addition to the suggestion of BurrWalnut you can see the methods below.

    Method 1.
    You may have set the taskbar to auto hide, check the settings below:
    a. Click Start and select Control Panel.
    now, (b) go to the menu bar of tasks and put in service and click on it.
    C. on the taskbar tab, check if there is a check mark next to auto-hide the taskbar.
    d. If there is remove it, then click on apply and then OK.

    Method 2.
    Please check if you are facing the same question when working in safe mode.
    a. restart your computer.
    b. when the computer starts, you will see your computer hardware are listed. When you see this information tap the F8 on your keyboard key repeatedly until you are presented with the screen Windows 7 Advanced Startup Options.
    c. using the arrow keys, select the desired option of Mode without failure.
    d. press the Enter key on your keyboard to start in safe mode of Windows 7.
    e. when Windows starts and check if the problem still persists.
    For more information, see the articles below.
    Start your computer in safe mode
    http://Windows.Microsoft.com/en-us/Windows7/start-your-computer-in-safe-mode
     
    Troubleshooting in safe mode
    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshooting-problems-while-in-safe-mode

    I hope this helps.

    Thank you, and in what concerns:
    Shekhar S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.
    If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • New-VM hangs over the background task

    I am writing a script to automate some vm deployment and am having some problems with a background task.  If I run the code below, the new - vm command hangs and does not always complete the task.  I have to manually kill the jobs to get them to stop.  The next set of code below which is exactly the same thing, but not in a separate post and it works fine.  I am running the script on a windows 7, Powershell 3.0, esx server 5.1, 5.5 powercli. Any ideas? I have attached two scripts below as well. Any help would be appreciated.

    ########################################################

    #********************Add Snapin*************************

    #Import module PowerCLI

    Add-PSSnapin VMware.VimAutomation.Core

    #Update the title bar

    $host.ui.rawui.WindowTitle = "PowerShell [PowerCLI loaded Module] '"

    ########################################################

    #Declare high-level Script Varibles

    $vcserver

    $userName

    $SecurePassword

    $connectionUp = 0

    $Credentials

    While (0, $connectionUp - eq)

    {

    Variable #Set for Vcenter connection

    $vcserver = Read-Host "Vcenter Server you want to connect to?

    $userName = Read-Host "enter user name".

    $SecurePassword = Read-Host-Prompt "enter password" - AsSecureString

    $Credentials = new-Object System.Management.Automation.PSCredential '

    -ArgumentList $UserName, $SecurePassword

    $connectionUp = 0

    try {}

    # Set all errors to be a stop action

    $ErrorActionPreference = "stop".

    #Connect to the vCenterServer

    SE connect-VIServer-Server $vcserver - Credential $Credentials

    $connectionUp ++

    }

    catch {}

    #Connection failed

    "Unable to connect".

    $connectionUp = 0

    }

    #Set that all default return errors

    $ErrorActionPreference = "continue".

    }

    ########################################################

    ########################################################

    #*** Menu variables *.

    #Title and Message

    $title = "deploy the virtual machine.

    $message = "select Action".

    #Creates menu options (new options should be added in the table down below)

    $UsVm = new-Object System.Management.Automation.Host.ChoiceDescription '& US' "

    "Creates US VM."

    $Eu = new - Object System.Management.Automation.Host.ChoiceDescription '& Europe' "

    "Creates the VM Europe."

    "$exit = New-Object System.Management.Automation.Host.ChoiceDescription" & quit ","

    "Exits Script."

    #Creates the table of options

    $options = [System.Management.Automation.Host.ChoiceDescription []] ($UsVm, $Eu, $exit)

    ###########################################################

    Variable Loop #End

    $running = 0

    #Loops the Menu up to what the exit option is chosen

    While ($running - eq 0) {}

    #Creates the Menu object

    $menu = $host.ui.PromptForChoice ($title, $message, $options, 0)

    switch ($menu)

    {

    {0}

    Machine virtual #Deploy U.S.

    # Include variables for the virtual machine.

    $vmName = Read-Host "what is the name of the virtual machine?

    Start-Job - ScriptBlock {}

    SE connect-VIServer-Server $args [2] - Credential $args [1]

    $cluster = get-Cluster-name "VDI Workstations - VCA Sandy Bridge - (HA, DRS)"

    $template = get-Template-name "ViewWin7Template".

    $custSpecifacation = get-OSCustomizationSpec-name 'Standard of Windows 7 desktop.

    $dataStoreCluster = get-DatastoreCluster-name of 'VDI SAN Production'

    $location = get-file-name 'Mobile computers to office (MD).

    $DeployVmName = $args [0]

    $DeployedVmName = $DeployVmName

    New-VM-name $DeployedVmName - location $location - model $template - ResourcePool Datastore - $dataStoreCluster - OSCustomizationSpec $custSpecifacation $cluster - slim DiskStorageFormat

    Start-Sleep - s 60

    Start-VM $DeployedVmName

    } - InitializationScript {Add-PSSnapin VMware.VimAutomation.Core} - ArgumentList $vmName, $Credentials, $vcserver

    }

    1 {"you selected KAY."}

    2 {$running = 1}

    }

    }

    Here's the script according to which works very well

    #Import module PowerCLI

    Add-PSSnapin VMware.VimAutomation.Core

    #Update the title bar

    $host.ui.rawui.WindowTitle = "PowerShell [PowerCLI loaded Module] '"

    #Declare high-level Script Varibles

    $vcserver

    $userName

    $SecurePassword

    $connectionUp = 0

    $Credentials

    While (0, $connectionUp - eq)

    {

    Variable #Set for Vcenter connection

    $vcserver = Read-Host "Vcenter Server you want to connect to?

    $userName = Read-Host "enter user name".

    $SecurePassword = Read-Host-Prompt "enter password" - AsSecureString

    $Credentials = new-Object System.Management.Automation.PSCredential '

    -ArgumentList $UserName, $SecurePassword

    $connectionUp = 0

    try {}

    # Set all errors to be a stop action

    $ErrorActionPreference = "stop".

    #Connect to the vCenterServer

    SE connect-VIServer-Server $vcserver - Credential $Credentials

    $connectionUp ++

    }

    catch {}

    #Connection failed

    "Unable to connect".

    $connectionUp = 0

    }

    #Set that all default return errors

    $ErrorActionPreference = "continue".

    }

    $vmName = Read-Host "what is the name of the virtual machine?

    $cluster = get-Cluster-name "VDI Workstations - VCA Sandy Bridge - (HA, DRS)"

    $template = get-Template-name "ViewWin7Template".

    $custSpecifacation = get-OSCustomizationSpec-name 'Standard of Windows 7 desktop.

    $dataStoreCluster = get-DatastoreCluster-name of 'VDI SAN Production'

    $location = get-file-name 'Mobile computers to office (MD).

    $DeployedVmName = $vmName

    New-VM-name $DeployedVmName - location $location - model $template - ResourcePool Datastore - $dataStoreCluster - OSCustomizationSpec $custSpecifacation $cluster - slim DiskStorageFormat

    Start-Sleep - s 60

    Start-VM $DeployedVmName

    Have you ever tried adding the line Add-PSSnapin the scriptblock in the 2nd script.

    Another problem could be that the script sends messages of 'warning', and these may cause crashes in tasks in the background as well.

    Try to set $WarningPreference = "SilentlyContinue".

  • Importing Photos without end in double - help!

    Hi all, I'm desperately need help, so please can you help me...

    Whenever I connect my iPhone or iPad to my Macbook Air, all software up to date on all devices, the Photos under OS X app offers to import the same (sometimes hundreds) photos that I've already imported a zillion times in my library. I find myself with so many duplicates in my photo library, it ends up a total mess!

    I use iCloud photo library on all devices. Do I need to keep importing photos from my iOS device? I thought all photos taken with any camera will be automatically downloaded on iCloud photo library and close up on my Mac and my local library. Is this correct or should I keep the box "import photos" checked in the Photos app? Most people seem to think that must be kept.

    If so, what should I do to stop these imports double without end ? It makes me crazy!

    Thank you

    David

    No, you don't need to import - doing so will create duplicates

    If you use ICPL then all libraries are kept in sync all the time and you do not manual is important to all

    LN

  • I downloaded the Sync Firefox Add on, but when I select 'Add a device' it are launching a help page which tells me to click on 'Add a device' - circle without end!

    I downloaded the Sync Firefox Add on, but when I select 'Add a device' it are launching a help page which tells me to click on 'Add a device' which is a circle without end!

    Any advice appreciated

    Sorry about that. Using pages have been updated for the new 'add a device' addresses in Firefox 4, but the add-on for Firefox 3.6 is still using an older, different process.

    You can download Firefox 4 release candidate here and use the new "easy installation" process described in the help pages: http://firefox.com/rc

    Or if you prefer to stay with Firefox 3.6, so instead of clicking 'Add a device' on your computer, press the 'Connect' button on your phone or other device, and then click "I'm not near my computer...". "and enter your email address and password sync key. (If you do not know your key synchronization, see synchronize your bookmarks from Firefox, history, passwords, etc.)

  • Satellite Pro A200/PSAE7 - turn volume change without end, not smooth Volume control

    Hello

    On my newly purchased Pro A200/PSAE7 control (hardware) volume - front, as soon as speaker - turns without end and when you use the volume does not change "smooth" - more "brutal". For this reason, there is no possible to 'fine tuning '.

    Q: is - that someone else has the same side material (without end of turn) and the software side (without smooth volume change) situation?

    Thanks a lot for any response in advance!

    Best regards
    Andreas

    Hello

    'problem' of the abrupt volume changes when turn the volume control has disappeared. I don't know if it's based on disable "TDispVol.exe" as startup service or another reason.

    Best regards
    Andreas

  • Start without end after a update___ of Windows Vista

    I and the HP laptop with Windows Vista.  I lost a hard drive last week and replaced myself and reloaded all my software.  No problem after that until this morning, I got a Windows download update, I went to auto install updated.  After the download, the machine/Windows is stuck in a start-up without end with the message «loading update 3 of 3»

    I tried F8 and can successfully access the boot menu.  I tried all modes safe mode adds the restore option.  All of lead them to a black screen, with a lot of waiting, and then hand it to the boot without end upward.

    I only have recovery disks that were made for me by the Geeksquad at time of purchase.  My computer is powerless, that I am at this point.  Help, please.

    Hello

    You can use the solutions in this KB - 3 methods and I listed a little help for them below

    The update is not installed successfully, you receive a message, and the computer restarts when you try to
    install an update in Windows Vista and Windows 7
    http://support.Microsoft.com/kb/949358

    Method 1: Start Windows Vista/Windows 7 with the Windows installation media and use the repair feature

    How to do a startup repair in Vista and Windows 7
    http://www.Vistax64.com/tutorials/91467-startup-repair.html

    You can also do a safe mode startup repair to access the Recovery Options If you have them available
    or use the DVD as described above.

    This tells you how to access the system - Vista Recovery Options
    http://windowshelp.Microsoft.com/Windows/en-us/help/326b756b-1601-435e-99D0-1585439470351033.mspx

    This tells you how to access the system - Windows 7 Recovery Options
    http://Windows.Microsoft.com/en-us/Windows7/Startup-Repair-frequently-asked-questions

    Try recovery options Startup Repair

    How to do a startup repair
    http://www.Vistax64.com/tutorials/91467-startup-repair.html

    Method 2: Start the system in safe mode and then use the system restore feature

    How to do a system restore in Vista and Windows 7
    http://www.Vistax64.com/tutorials/76905-System-Restore-how.html

    You can also do a restore of the system of starting with a disk of Vista or Windows 7.

    Method 3: Use the downloads at the end of this article - note for Vista x 86 versions 32 bit and Vista
    x 64 64-bit.

    The update is not installed successfully, you receive a message, and the computer restarts when you try to
    install an update in Windows Vista and Windows 7
    http://support.Microsoft.com/kb/949358

    ------------------------------------------------------

    Once you are in Windows I was running once again reset here as a precaution.

    How to reset the Windows Update components?
    http://support.Microsoft.com/kb/971058

    Hope this helps sort it out for you.
    Rob - bicycle - Mark Twain said it is good.

  • Background tasks repeated on the PlayBook?

    Hello!

    I need to know if there is a way to implement a background task repeating for the PlayBook within a WebWorks app? I've used the search function, but it seemed that this is not possible, but I can't believe that.

    Is there a chance to make any kind of workaround or mix things (maybe have a code in the application, as well as native code webworks or something else)? If Yes, could you do a picture what needs to be done to get the background tasks repeated work?

    Thanks in advance.

    See you soon,.

    Sven

    Hi Sven,

    I think we've covered this broad already via Twitter, but I wanted to answer for others here in the forums.

    Currently the Tablet OS does not support background tasks.  Features of the application can run only during the execution of the application itself.

    To achieve something as a data synchronization, I would recommend this doing in the background while the application is open and during its lifecycle from start-up. This can be accomplished by using async XmlHttpRequest and perhaps even the Web workers?

    See you soon,.

    Adam

  • I have a tree without end of links that I can't get rid of

    A few days ago I tried to use robocopy to do a backup of my "User" folder on another laptop computer in network. Unfortunately, I forgot to use the /XJD. switch Now I have a 500 GB drive that is saturated due to an endless loop of records "Application Data" nested in the other with a casual Adobe folder thrown in. I tried to manually delete the directory tree but get him "...". path is too long.. "error in Windows. I get similar questions in a command prompt cmd by using RD (remove directory).

    I tried to use the script at the address, use robocopy again to remove the folder through /mir below switch structure. Yet once, it failed after 12 min due to the track being too long. Whenever I run the batch file, the run time keeps getting shorter and I am always left with a folder tree without end of the 'Application Data' folder. I managed to release 100 GB in this way, but I still could not get rid of the folder.
    I would like to avoid formatting the drive as he always gave him on it that I want and no place to put it right now. If I have to format the drive, just wait until I can pick up a spare part in the future to move the data off the coast.
    Does anyone have a suggestion how to remove this link of circular reference directory?
    script: http://www.windowsitpro.com/article/tips/jsi-tip-9651-how-can-i-delete-a-folder-that-returns-path-too-long--84207

    Hey Joe,

    Thanks for the reply.

    You can also post this question in the TechNet Forums: http://social.technet.microsoft.com/Forums/en-US/category/w7itpro/

    Thank you.

  • task host window is prevents the background tasks

    When I open my laptop it says windows task host stop background tasks

    Hi Aditya,

    Thanks for posting your question in the Microsoft Community. You seem to have a problem with the computer in normal mode. We will help you in the matter of fixing. Please answer the following questions to help me understand the issue better:

    1. What is the brand and model of the computer?

    2. You did changes to the computer before this problem?

    The question may be die for applications or corrupt display driver conflict. Refer to the following suggestion and check the status of the issue.

    You can check the suggestions I give the following link and check if that helps fix the problem.

    http://answers.Microsoft.com/en-us/Windows/Forum/windows8_1-performance/task-host-window-is-stopping-background-tasks-is/08b48a9d-a657-4e4e-9494-bc43553e9bf2

    Important: System Restore will return all system files not as documents, email, music, etc., to a previous state. These files of types are completely affected by the restoration of the system. If it was your intention with this tool to recover a deleted file to non-system, try using a file instead of system restore recovery program.

    Hope this helps you, please let us know if you need assistance.

  • Photoshop CC 2015 - loop without end of license validation during startup. All Solutions?

    I use PS CC 2015 for awhile to editing photos and other, I uninstalled PS CC 2015 of my C drive (to free up space and consolidate PS CC 2015 things on another drive) and installed on another drive, I couldn't go back into Photoshop. While trying to start it it give me a window of validation of software license that would pop up and disappear every few seconds again and again.



    Capture.PNG

    Capture.PNG


    ----------------------------------------------------------------------------------------------------------------------------------------------------


    Stats on my computer:


    Edition of Windows: Windows 8 Pro

    Processor: Intel (r) Core i7Cpu

    Installed memory (RAM): 8 GB

    System type: 64-bit, x 64 processor operating system


    --------------------------------------------------------------------------------------- - ------------------------------------------------------------

    I tried solutions:

    -Uninstalling and reinstalling under the C drive.

    -Signature of creative cloud while trying to validate, and then would give me licenses guest, connected to the Adobe ID with photograph subscription, after the saying of the window, hit continue to use licensed software with the right Adobe ID has signed, he returned to the loop without end of validation.

    -Remove adobe all items under the heading other disks and keep adobe all the items on the C drive.

    -Removed and reinstalled creative cloud.

    -Check the subscription payments were going through

    -Update audit logs to make sure I had not missed a.

    ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


    Possible things I can do (not sure if I did) to screw it up. Let me know if all trigger problems.


    Tempted to go to associated adobe does not file creative cloud, simply move the folders, without uninstalling and reinstalling.


    Accidentally deleted Adobe of the linked files, can't speak of it, I don't think I hit anything on my drive C (default main drive)

    ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


    I am considering solutions:


    Remove all adobe, folders, items related to photoshop and creative cloud from scratch I guess?


    Cancellation of the plan and from the cool email, (adobe ID), however, since it is a contract of plan year, paid monthly, I suppose, they will be responsible for the rest 10 months. I use PS CC 2015 for 2 months.


    ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


    Any help is appreciated, willing to try anything since I am a creative work on the photos for friends, if a staff member could check on their end when my subscription works, it would be appreciated.


    In conclusion, the infinite loop software validating, tried a bunch of solutions, looking on the Internet without success, extremely frustrated.


    A keen user of Photoshop CC 2015.

    Michael Vigman




    Hi Michael,

    Thanks for your detailed thread.

    Please follow the steps below.

    First of all make sure that you have followed the steps mentioned in Adobe Creative Cloud connection errors

    1. Rename Slcache and Slstore
    • Navigate to C:/ProgramData\Adobe\ (program data are hidden folder) and rename the Slstore to Slstore.old
    • Go to C:\Program Files (x 86) \Common Files\Adobe\ and rename Slcache to Slcache.old

    2. now, the suite Adobe Creative Cloud connection errors rename opm.db file

    • Navigate to the OOBE folder. : - \Users\[username]\AppData\Local\Adobe\OOBE
    • Rename the file opm.db in opm.old.db

    3. run the vacuum to clean install Adobe Creative cloud and Photoshop. (If the step 1 and 2 does not solve the problem)

    Let us know if this helps

    Kind regards

    Assani

  • Transfer of ADE 4.5 PocketBook-drive without end. Doesn't stop, but finally the transfer is allowed

    Transfer of ADE 4.5 PocketBook-drive without end. Doesn't stop, but finally the transfer is authorized.

    Normally the transfer stops after completing, but it doesn't.

    Can you give me an idea how to handle this problem?

    Thank you

    You used Windows or Macintosh?

  • How to remove the trial version of Acrobat DC 30 days that I have somehow on my MacBook Pro?  I don't want the dang thing, and it prevents me from using my Acrobat Pro 11 software.  Trying to access using the tree without end of support for Adobe is reall

    How to remove the trial version of Acrobat DC 30 days that I have somehow on my MacBook Pro?  I don't want the dang thing, and it prevents me from using my Acrobat Pro 11 software.  Trying to access using the tree without end of support for Adobe of really making me cranky.

    Hi thomh65004143,

    You simply drag the Acrobat DC application from the applications folder to the trash to uninstall.

    Then restart your system & install Acrobat XI Download Adobe Acrobat products. Standard, Pro | DC, XI, X.

    Let me know if you are still having a problem.

    Kind regards

    Nicos

  • My CC desktop application does not open and shows a spinning wheel of progress without end. It also doesn't show Menu: home, applications, files, fonts, community.

    My CC desktop application does not open and shows a spinning wheel of progress without end. It also doesn't show Menu: home, applications, files, fonts, community.

    I use Windows 7. I tried several times the instructions here: App does not open. Wheel of progress turn continuously

    I am able to ping adobe.com and three other Adobe servers I found on a site help, but can't find them now.

    I can't do a ping activate.adobe.com

    Hi Michael,

    You can see the threads below where this issue has been addressed:

    Adobe Creative Cloud / Desktop App / Home Screen: constant spinning wheel

    Creative Cloud Desktop App taped blue spinning wheel after update.

    Kind regards

    Sheena

Maybe you are looking for