Comparaison des versions

Légende

  • Ces lignes ont été ajoutées. Ce mot a été ajouté.
  • Ces lignes ont été supprimées. Ce mot a été supprimé.
  • La mise en forme a été modifiée.

After extensive usage of the plugin by a significant number of clients, we have observed several frequent errors or blockages where users get stuck and believe it to be a plugin bug, when in reality it is a client machine configuration issue.

...

  1. Ensure that Microsoft Office is properly installed on your machine. If not, please install it. 
  2. Check that your Office does not have any restrictions on running its services in the background.
  3. Create a "Desktop" folder in C:/Windows/(system32 or SysWOW64)/config/systemprofile.
  4. Schedule a task to run every minute. This task eliminates report windows indicating that a previous conversion failed. The scheduled task should execute a .bat file containing these two lines:

    Info
    iconfalse
    titleMS bat script for looking those windows and close them over Windows' task scheduler.
    • taskkill /F /FI "WindowTitle eq Microsoft Word*"
    • taskkill /F /FI "WindowTitle eq Microsoft Office*"


  5. Schedule a task (similar to step 4) but this time the task should be executed one time per day at a time when the plugin is not in use (for example, at 2 am) because running this task prevents PDF generation. The purpose of this task is to eliminate zombies created by multiple instances of MS Word and scripts in the task manager. This .bat file should contain these two lines:   

    Info
    iconfalse
    titleMS bat script to kill them by script over Windows' task scheduler.
    • taskkill /f /t /im wscript.exe
    • taskkill /f /t /im winword.exe


  6. Ensure that the service account has the necessary read and write permissions on the Atlassian Jira execution directory. Even if the service account is part of the local administrators group, it may not have the required permissions due to UAC (User Account Control) restrictions.          


    - To fully understand points 3, 4, and 5, please refer to this documentation, especially the section Running documents4j application as Windows service, where everything is detailed.

...

Info
titleMS bat script to kill them by script over Windows' task scheduler.
  • taskkill /f /t /im wscript.exe
  • taskkill /f /t /im winword.exe 


Refer to the last part of the section Running documents4j application as Windows service in this documentation.            

...