Running .NET from network...

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

    Running .NET from network...

    Maybe is this a old and well known question, but can't my C# .NET
    application run from a network share? Running it from a local disk is OK but
    not from my F:\ disk (nettwork disk).



  • Ron Allen

    #2
    Re: Running .NET from network...

    This is due to security settings on the local machine. You can use CASPOL
    to adjust this or use the .NET Framework Wizard for the appropriate
    framework version in Control Panels/Administrative tools to adjust security
    appropriately. Running from a network share would be in the 'Local
    Intranet' zone.
    Don't give full trust to anything you don't have to though.

    Ron Allen
    "GTi" <gti@gti.com> wrote in message news:4295cd36$1 @news.wineasy.s e...[color=blue]
    > Maybe is this a old and well known question, but can't my C# .NET
    > application run from a network share? Running it from a local disk is OK
    > but not from my F:\ disk (nettwork disk).
    >
    >
    >[/color]


    Comment

    • Ignacio Machin \( .NET/ C# MVP \)

      #3
      Re: Running .NET from network...

      Hi,

      Yes you are right :)
      This is an old question, you could get several way to solve this from
      google :


      Cheers,

      --
      Ignacio Machin,
      ignacio.machin AT dot.state.fl.us
      Florida Department Of Transportation


      "GTi" <gti@gti.com> wrote in message news:4295cd36$1 @news.wineasy.s e...[color=blue]
      > Maybe is this a old and well known question, but can't my C# .NET
      > application run from a network share? Running it from a local disk is OK
      > but not from my F:\ disk (nettwork disk).
      >
      >
      >[/color]


      Comment

      • GTi

        #4
        Re: Running .NET from network...

        Ok then, that was my suspicion too...
        But I don't want to run around to all possible computers and change the
        security.
        So I just create a little application (startup app.) in C/C++ that copies
        the file
        to local computer (programfiles\m yapp) and then start the application.


        "Ignacio Machin ( .NET/ C# MVP )" <ignacio.mach in AT dot.state.fl.us > skrev
        i melding news:uAdmHNiYFH A.2076@TK2MSFTN GP15.phx.gbl...[color=blue]
        > Hi,
        >
        > Yes you are right :)
        > This is an old question, you could get several way to solve this from
        > google :
        > http://groups-beta.google.com/groups...dotnet.*&hl=en
        >
        > Cheers,
        >
        > --
        > Ignacio Machin,
        > ignacio.machin AT dot.state.fl.us
        > Florida Department Of Transportation
        >
        >
        > "GTi" <gti@gti.com> wrote in message news:4295cd36$1 @news.wineasy.s e...[color=green]
        >> Maybe is this a old and well known question, but can't my C# .NET
        >> application run from a network share? Running it from a local disk is OK
        >> but not from my F:\ disk (nettwork disk).
        >>
        >>
        >>[/color]
        >
        >[/color]


        Comment

        • Willy Denoyette [MVP]

          #5
          Re: Running .NET from network...


          "GTi" <blabla@blabla. com> wrote in message
          news:ekuCjhjYFH A.2128@TK2MSFTN GP15.phx.gbl...[color=blue]
          > Ok then, that was my suspicion too...
          > But I don't want to run around to all possible computers and change the
          > security.
          > So I just create a little application (startup app.) in C/C++ that copies
          > the file
          > to local computer (programfiles\m yapp) and then start the application.
          >
          >[/color]

          No need to run arround, run a single line .bat file from the share that uses
          CASPOL to sets the security.

          WIlly.


          Comment

          Working...