Application Manager Error

Application Manager Error

Anonymous
Not applicable
20,961 Views
13 Replies
Message 1 of 14

Application Manager Error

Anonymous
Not applicable

After every boot of mei computer i get: "Application Manager kann nicht ausgeführt werdenn. Es scheint, als ob Autodesk Application Manager Service..."

 

- I installed the Hotfix from 16.05.2015.

- The Service "Autodesk Application Manager Service" is up and tunning. Also a restart does not change the problem.

 

 

Accepted solutions (1)
20,962 Views
13 Replies
Replies (13)
Message 2 of 14

Anonymous
Not applicable

Same here. Have uninstalled, rebooted and the installed again with no difference. 

0 Likes
Message 3 of 14

Anonymous
Not applicable
same here
0 Likes
Message 4 of 14

Anonymous
Not applicable

same error here

0 Likes
Message 5 of 14

pendean
Community Legend
Community Legend
Accepted solution
You all need to install the latest version of Application Manager, or you need to Uninstall it from Windows and forget it ever existed. Your choice.

For the former option, read this https://www.cadlinecommunity.co.uk/hc/en-us/articles/203688312

I do the latter: I don't need a nurse-maid bloatware application on my PC wasting my time or system resources.
Message 6 of 14

Anonymous
Not applicable

Thank you for this answer. From Autodesk i got this solution: It works also... 🙂

 

1. Schalten Sie der UAC control in seine System aus.

2. Nochmal die Applikation  installieren  Application Manager(es muss mit admin rights sein)

3.Seine Computer wieder starten.

Regards

 HGM2000

Message 7 of 14

Anonymous
Not applicable

From today my error appaers angain... So the best way is to uninstall all the bits. Thank's Expert Elite.

0 Likes
Message 8 of 14

Anonymous
Not applicable
We had the same problem on several Machines, Our Solution was to set the UAC to never notify( Nie benachrichtigen). Then Restart and problem was solved
0 Likes
Message 9 of 14

iagroepduiven
Participant
Participant

Turning off UAC is no solution at all.

 

The problem is that one needs to run the application as administrator in order for it to communicate with the service, running as system. That will result in an apporval question by the system during logon.

 

The solution I found is based on creating a task per user to start the application manager during logon by that same user.

 

Offcourse, I do not want to run around and create tasks everywhere so I added a few things to my logon script to annoy local administrators once to create that specific task for them. And on every other system they logon to and happen to be local admin.

 

The other problem is that one cannot run the logonscript elevated, whatever you try. And I tried everything I think.

 

So here's my solution for the logon script:

 

  1. Check for local admin rights (pipeline whoami output and search for "\Administrators" should do the trick). Not local admin? No need to run Application Manager!
  2. Check for existance of the Aaplication Manager.
  3. Check for existance of a specific task. I'll get back to that one.

If all criteria are met, the logonscript will start another batch:

 

  1. Copy some files to %public% (or any other folder different users can access locally). These files include fragments of an XML file and a third batchfile.
  2. Assemble the fragments together with the user-ID to form an XML file

If the XML file is created the batchfile can be run elevated. Now the user has to approve, only once, on this machine!

 

  1. Start the local batchfile elevated, with nircmd for instance (www.nirsoft.net). User intervention required. No way around UAC.
  2. Remove the application manager from the windows startup sequence by removing an entry from the registry.
  3. Create a task based on the XML file.
  4. Start the task. Normally when the user logs on the task will be started automatically but since we just created it, we have to do it from the batch. This is the task mentioned earlier.

The result will be a task for the user who is local admin that will run only when user is logging on and without prompt. I guess only suitable for environments where every user has its own machine and has local admin rights.

0 Likes
Message 10 of 14

iagroepduiven
Participant
Participant

Extra line in logonscript:

 

:AdAppManager.exe
FINDSTR "\Administrators" %temp%\groepen_ad.txt
if %errorlevel% == 0 start /wait \\iag.local\netlogon\aam2015.bat

 

Contents of aam2015.bat:

 

if not exist "C:\Program Files (x86)\Common Files\Autodesk Shared\AppManager\R1\AdAppMgr.exe" exit
schtasks.exe /query > %temp%\tasks.%username%.txt
findstr "aam2015_%username%" %temp%\tasks.%username%.txt
if %errorlevel% == 0 exit
copy \\iag.local\netlogon\aam2015_create.bat %public%
copy \\iag.local\netlogon\xml\aam2015.* %public%
\\iag.local\netlogon\nircmd64\nircmdc.exe elevate %public%\aam2015_create.bat
exit

 

Contents of aam2015_create.bat:

 

type %public%\aam2015.part1.txt > %public%\aam2015_%username%.xml
echo %username% >> %public%\aam2015_%username%.xml
type %public%\aam2015.part2.txt >> %public%\aam2015_%username%.xml
echo %username% >> %public%\aam2015_%username%.xml
type %public%\aam2015.part3.txt >> %public%\aam2015_%username%.xml
echo %username% >> %public%\aam2015_%username%.xml
type %public%\aam2015.part4.txt >> %public%\aam2015_%username%.xml
schtasks.exe /create /tn "IA Groep ICT\aam2015_%username%" /xml %public%\aam2015_%username%.xml
schtasks.exe /run /tn "IA Groep ICT\aam2015_%username%"
exit

 

Contents of the aam2015_%username%.xml:

 

<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<Date>2015-10-16T16:25:50.876</Date>
<Author>IAG\Administrator
</Author>
<Description>With User Account Control activated, this scheduled task will run AdAppMgr with Administrator rights without UAC prompt. It only works if The creator of the task is logged on.</Description>
</RegistrationInfo>
<Triggers>
<LogonTrigger>
<Enabled>true</Enabled>
<UserId>IAG\Administrator
</UserId>
</LogonTrigger>
</Triggers>
<Principals>
<Principal id="Author">
<UserId>IAG\Administrator
</UserId>
<LogonType>InteractiveToken</LogonType>
<RunLevel>HighestAvailable</RunLevel>
</Principal>
</Principals>
<Settings>
<MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
<DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
<StopIfGoingOnBatteries>false</StopIfGoingOnBatteries>
<AllowHardTerminate>true</AllowHardTerminate>
<StartWhenAvailable>false</StartWhenAvailable>
<RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
<IdleSettings>
<StopOnIdleEnd>false</StopOnIdleEnd>
<RestartOnIdle>false</RestartOnIdle>
</IdleSettings>
<AllowStartOnDemand>true</AllowStartOnDemand>
<Enabled>true</Enabled>
<Hidden>false</Hidden>
<RunOnlyIfIdle>false</RunOnlyIfIdle>
<WakeToRun>false</WakeToRun>
<ExecutionTimeLimit>PT0S</ExecutionTimeLimit>
<Priority>7</Priority>
</Settings>
<Actions Context="Author">
<Exec>
<Command>"C:\Program Files (x86)\Common Files\Autodesk Shared\AppManager\R1\AdAppMgr.exe"</Command>
<Arguments>-showminimized</Arguments>
<WorkingDirectory>C:\Program Files (x86)\Common Files\Autodesk Shared\AppManager\R1</WorkingDirectory>
</Exec>
</Actions>
</Task>

 

I hope my work is useful to anyone.

0 Likes
Message 11 of 14

Anonymous
Not applicable

Tech. Support;

 

I'm having the following error. Is anybody have any similar problems? I already repaired and reinstalled the application manager but nothing seems to appear in the update window. Any help from the specialists would greatly appreciated. 

 

Thanks,

 

R. Navarrete

 

 

 

0 Likes
Message 12 of 14

pendean
Community Legend
Community Legend
You can safely uninstall that program from Windows Control panel: it is not necessary or vital to have for AutoCAD. Remove it now, We all have here.
0 Likes
Message 13 of 14

Anonymous
Not applicable

Thank you for the feedback. However, the issue is that I use it for various software. AutoCAD is just one part of the umbrella of softwares that we use and the application manager is essential for updates. I understand that as users we could easily google if there are any updates. But the idea of the application manager is to make the process easier. 

0 Likes
Message 14 of 14

pendean
Community Legend
Community Legend
Do you allow your users to install software and updates on their own? We control these items and control installs and push updates to the PCs.

AAM is going away from what I understand, it's broken and breaks: the last version was posted by Autodesk last year and may help you in the interim https://knowledge.autodesk.com/search-result/caas/downloads/content/autodesk-application-manager.htm...
0 Likes