• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    AutoCAD 2010/2011/2012 DWG Format

    Reply
    Member
    Martin00
    Posts: 4
    Registered: ‎07-16-2010
    Accepted Solution

    AdMigrator.exe silent mode

    2307 Views, 8 Replies
    07-16-2010 03:21 PM

    Hi,

     

    I want to execute AdMigrator.exe in a silent mode.

     

    In the shortcut I see a switch /e for export the settings. Is it possible to run an export of the settings in a silent mode? If it is, which switches are available for AdMigrator.exe?

     

    Please use plain text.
    Employee bud
    Employee
    Posts: 41
    Registered: ‎11-13-2006

    Re: AdMigrator.exe silent mode

    07-19-2010 08:18 AM in reply to: Martin00

    Hello Martin,

     

    First of all thanks for posting your question to the Autodesk News Groups. 

     

    AdMigrator.exe should only be run from the UI.  It's not intended to be run from a command line.  But if you like, I can pass it on to the team as a wish list item. 

     

    Hope this helps and thanks for posting to the News Groups.

     

    Bud



    Bud Schroeder
    Senior Test Engineer
    AutoCAD Test Development
    Autodesk, Inc.

    Please use plain text.
    Member
    Martin00
    Posts: 4
    Registered: ‎07-16-2010

    Re: AdMigrator.exe silent mode

    07-19-2010 09:18 AM in reply to: bud

    Hello Bud,

     

    it's a pity! If you don't mind, please pass it on to the team as a new wish list item.

     

    Thank you very much indeed!

     

    Martin

    Please use plain text.
    Employee bud
    Employee
    Posts: 41
    Registered: ‎11-13-2006

    Re: AdMigrator.exe silent mode

    07-19-2010 09:26 AM in reply to: Martin00

    Hi Martin,

     

    I passed it on this morning.  Can you give me some examples of how you would like to be able to use the Migration Feature with a script and in a silent mode?  I would like to share that with the team as well.

     

    Thanks again for the Feedback and the details.

     

    Bud



    Bud Schroeder
    Senior Test Engineer
    AutoCAD Test Development
    Autodesk, Inc.

    Please use plain text.
    Member
    Martin00
    Posts: 4
    Registered: ‎07-16-2010

    Betreff: AdMigrator.exe silent mode

    07-20-2010 07:51 AM in reply to: Martin00

    Hello Bud,

     

    I would like to use the AdMigrator to recover my customized settings per shortcut. To do this I need additional to the import switch /I one switch (e.g. /S) for the silent mode and one switch (e.g. /P) for the path of the settings file. To recover the settings per shortcut would be a little bit more comfortable. Also I would like to use this feature in a software deployment script.

     

    It would be very nice to see this feature in one of the next releases.

     

    Thanks a lot for your help.

    Please use plain text.
    Active Member
    Posts: 6
    Registered: ‎08-06-2007

    Re: AdMigrator.exe silent mode

    04-05-2011 07:58 AM in reply to: Martin00

    Hi Bud & Martin

     

    I would like to second the request for a silent mode for the AdMigrator. When a user logs in, I would like to run a script to detect whether they have ever run AutoCAD on this PC, and if they have, whether they have had the standard corporate deployment migrated to their profile. If not (or the latter has changed) I want to (re)import custom settings from a model settings file on the network.

     

    I know there are other ways of managing a custom environment but we are using AutoCAD Architecture and ensuring all the toolbars, palletttes, menus, woprkspaces and profiles etc are just as we want them is a skilled and time consuminig job and we have only recently been able to faultlessly replicate it using the AdMigrator tool. This works very well, it could so easily be automated. Please offer this functionality!

     

    Stephen Solt

    CZWG Architects LLP

    London

     

     

     

     

    Please use plain text.
    Active Member
    Posts: 6
    Registered: ‎08-06-2007

    Re: AdMigrator.exe silent mode

    04-05-2011 08:01 AM in reply to: s_solt

    Postscript

     

    Actually, As a programmer/developer an alternative to command switches for scripting AdMigrator functionality would be a COM interface so that I can use it in OLE.

     

    Stephen Solt 

    Please use plain text.
    Distinguished Contributor
    Posts: 351
    Registered: ‎12-11-2007

    Re: AdMigrator.exe silent mode

    04-12-2012 03:19 AM in reply to: s_solt

    Interesting thread.  I too am wondering if it is possible to call admigrator.exe and pick a settings file using a switch?  Did this move forward at all?

     

    Thanks,

    Guy

     

    AutoCADM 2011 SP2
    XP 32-Bit SP3
    Please use plain text.
    New Member
    Posts: 1
    Registered: ‎07-21-2012

    Re: AdMigrator.exe silent mode

    07-21-2012 12:21 PM in reply to: Martin00

    use autoit 

     

     

    Run('"C:\Program Files\Autodesk\AutoCAD 2012 - English\AdMigrator.exe" /i')


    WinWaitActive("Import Custom Settings", "")

    ControlSetText("Import Custom Settings", "", "Edit1", "C:\Program Files\Autodesk\AutoCAD 2012 - English\arch\AutoCAD 2012 - English_cust_settings.zip")

    If WinActive("Import Custom Settings") Then
    ControlClick("Import Custom Settings", "", "[CLASS:Button; INSTANCE:1]")
    EndIf

     

    $wint = "Import Custom Settings"
    $wintt = "Your migration package has been successfully imported."

    While ProcessExists("AdMigrator.exe")
    Sleep(100)
    If WinExists($wint, $wintt) Then

    ControlClick($wint, $wintt, "[NAME:chkBxViewLog]")
    ControlClick($wint, $wintt, "[NAME:btnOK]")

    EndIf

    WEnd

     

    Please use plain text.