no touch deployment

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Robert May

    no touch deployment

    I have an application that processes text strings using information in a
    file. I want to deploy this app using no-touch deployment. The config
    files and everything else are deployed just fine, but the CGT file (compiled
    Grammar Table) is not, and the program crashes when it attempts to read this
    file.

    Is there any way to have this file loaded as needed?

    With no touch deployment, how do you copy files that aren't assemblies down
    to the users machine automatically? Is this even possible, or are you stuck
    using resources from a remote location?

    Thoughts?

    Robert


  • Dino Chiesa [Microsoft]

    #2
    Re: no touch deployment

    no touch works with DLLs.
    If your data is included in the DLL it will work.
    Otherwise you need to fetch it remotely.

    -D

    "Robert May" <rakker91@donts pamhotmail.com> wrote in message
    news:%23oIjr%23 wfDHA.3616@TK2M SFTNGP11.phx.gb l...[color=blue]
    > I have an application that processes text strings using information in a
    > file. I want to deploy this app using no-touch deployment. The config
    > files and everything else are deployed just fine, but the CGT file[/color]
    (compiled[color=blue]
    > Grammar Table) is not, and the program crashes when it attempts to read[/color]
    this[color=blue]
    > file.
    >
    > Is there any way to have this file loaded as needed?
    >
    > With no touch deployment, how do you copy files that aren't assemblies[/color]
    down[color=blue]
    > to the users machine automatically? Is this even possible, or are you[/color]
    stuck[color=blue]
    > using resources from a remote location?
    >
    > Thoughts?
    >
    > Robert
    >
    >[/color]


    Comment

    • Richard L Rosenheim

      #3
      Re: no touch deployment

      Dino,

      Does no-touch deployment also work with non .Net DLLs and ActiveX
      components, or just .Net items?

      Richard Rosenheim

      "Dino Chiesa [Microsoft]" <dinoch@online. microsoft.com> wrote in message
      news:OST1eDVgDH A.1212@TK2MSFTN GP12.phx.gbl...[color=blue]
      > no touch works with DLLs.
      > If your data is included in the DLL it will work.
      > Otherwise you need to fetch it remotely.
      >
      > -D
      >
      > "Robert May" <rakker91@donts pamhotmail.com> wrote in message
      > news:%23oIjr%23 wfDHA.3616@TK2M SFTNGP11.phx.gb l...[color=green]
      > > I have an application that processes text strings using information in a
      > > file. I want to deploy this app using no-touch deployment. The config
      > > files and everything else are deployed just fine, but the CGT file[/color]
      > (compiled[color=green]
      > > Grammar Table) is not, and the program crashes when it attempts to read[/color]
      > this[color=green]
      > > file.
      > >
      > > Is there any way to have this file loaded as needed?
      > >
      > > With no touch deployment, how do you copy files that aren't assemblies[/color]
      > down[color=green]
      > > to the users machine automatically? Is this even possible, or are you[/color]
      > stuck[color=green]
      > > using resources from a remote location?
      > >
      > > Thoughts?
      > >
      > > Robert
      > >
      > >[/color]
      >
      >[/color]


      Comment

      Working...