LoginSignup
0
0

More than 1 year has passed since last update.

Autodesk 2018の起動エラー (from 2024 update)

Last updated at Posted at 2023-04-24

【発生】
2024年リリースの各種アップデートを掛けたタイミングで、Maya 2018が立ち上がらなくなった
LGS.dataを削除したところ認証用のポップアップまでは出るが、アカウントへサインインしようとするとプロセスが落ちる
image.png


【対処】
Autodesk アカウントでログインしているWindows Userで、以下のbatを作成して実行する。配置場所は任意に決めてよい。

@echo off

if _%1_==_payload_  goto :payload

:getadmin
    echo %~nx0: elevating self
    set vbs=%temp%\getadmin.vbs
    echo Set UAC = CreateObject^("Shell.Application"^)                >> "%vbs%"
    echo UAC.ShellExecute "%~s0", "payload %~sdp0 %*", "", "runas", 1 >> "%vbs%"
    "%temp%\getadmin.vbs"
    del "%temp%\getadmin.vbs"
goto :eof

:payload
taskkill /f /im "AdSSO.exe"
taskkill /f /im "AdAppMgrSvc.exe"
taskkill /f /im "AutodeskDesktopApp.exe"
taskkill /f /im "AdskLicensingAgent.exe"
taskkill /f /im "ADPClientService.exe"

del "C:\ProgramData\Autodesk\ADUT\ProdInd_UserInd.cur"
del "C:\Users\%USERNAME%\AppData\Roaming\Autodesk\ADUT\ProdInd_UserInd.cur"
del "%localappdata%\Autodesk\Web Services\LoginState.xml"

echo.
echo done

pause

カレントの認証情報が削除されるので、Mayaを起動して再度ログインする

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0