Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. One of my least favorite things to build

One of my least favorite things to build

Scheduled Pinned Locked Moved The Lounge
architecture
12 Posts 9 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • H Offline
    H Offline
    honey the codewitch
    wrote on last edited by
    #1

    A windows service. It's not even the service part itself. It's the permissions and the IPC that's typically necessary in order to control it. They should make it simpler or something. I've always hated the windows service architecture anyway.

    To err is human. Fortune favors the monsters.

    P D R 1 M 5 Replies Last reply
    0
    • H honey the codewitch

      A windows service. It's not even the service part itself. It's the permissions and the IPC that's typically necessary in order to control it. They should make it simpler or something. I've always hated the windows service architecture anyway.

      To err is human. Fortune favors the monsters.

      P Offline
      P Offline
      PIEBALDconsult
      wrote on last edited by
      #2

      I've never had an issue with them, in C#.

      H 1 Reply Last reply
      0
      • H honey the codewitch

        A windows service. It's not even the service part itself. It's the permissions and the IPC that's typically necessary in order to control it. They should make it simpler or something. I've always hated the windows service architecture anyway.

        To err is human. Fortune favors the monsters.

        D Offline
        D Offline
        Daniel Pfeffer
        wrote on last edited by
        #3

        Trust me, a Windows device driver is even worse!

        Freedom is the freedom to say that two plus two make four. If that is granted, all else follows. -- 6079 Smith W.

        D H A 3 Replies Last reply
        0
        • D Daniel Pfeffer

          Trust me, a Windows device driver is even worse!

          Freedom is the freedom to say that two plus two make four. If that is granted, all else follows. -- 6079 Smith W.

          D Offline
          D Offline
          den2k88
          wrote on last edited by
          #4

          So far it's the worse thing I ever had to build.

          GCS/GE d--(d) s-/+ a C+++ U+++ P-- L+@ E-- W+++ N+ o+ K- w+++ O? M-- V? PS+ PE Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++*      Weapons extension: ma- k++ F+2 X

          1 Reply Last reply
          0
          • D Daniel Pfeffer

            Trust me, a Windows device driver is even worse!

            Freedom is the freedom to say that two plus two make four. If that is granted, all else follows. -- 6079 Smith W.

            H Offline
            H Offline
            honey the codewitch
            wrote on last edited by
            #5

            Oh, I agree, and I avoid them.

            To err is human. Fortune favors the monsters.

            1 Reply Last reply
            0
            • P PIEBALDconsult

              I've never had an issue with them, in C#.

              H Offline
              H Offline
              honey the codewitch
              wrote on last edited by
              #6

              It really depends on what you're doing, particularly the permissions under which the service operates.

              To err is human. Fortune favors the monsters.

              T 1 Reply Last reply
              0
              • D Daniel Pfeffer

                Trust me, a Windows device driver is even worse!

                Freedom is the freedom to say that two plus two make four. If that is granted, all else follows. -- 6079 Smith W.

                A Offline
                A Offline
                Andreas Saurwein
                wrote on last edited by
                #7

                Ever tried a Cryptography Provider? Kind of a mix between device driver and service, real fun to debug.


                forging iron and new ideas

                1 Reply Last reply
                0
                • H honey the codewitch

                  It really depends on what you're doing, particularly the permissions under which the service operates.

                  To err is human. Fortune favors the monsters.

                  T Offline
                  T Offline
                  TNCaver
                  wrote on last edited by
                  #8

                  Do you create a dedicated AD service account with the appropriate permissions and assign execution to that account?

                  There are no solutions, only trade-offs.
                     - Thomas Sowell

                  A day can really slip by when you're deliberately avoiding what you're supposed to do.
                     - Bill Watterson (Calvin & Hobbes)

                  H 1 Reply Last reply
                  0
                  • T TNCaver

                    Do you create a dedicated AD service account with the appropriate permissions and assign execution to that account?

                    There are no solutions, only trade-offs.
                       - Thomas Sowell

                    A day can really slip by when you're deliberately avoiding what you're supposed to do.
                       - Bill Watterson (Calvin & Hobbes)

                    H Offline
                    H Offline
                    honey the codewitch
                    wrote on last edited by
                    #9

                    I'm not dealing with Active Directory, no. At least not for what I'm currently doing. It would be overkill.

                    To err is human. Fortune favors the monsters.

                    1 Reply Last reply
                    0
                    • H honey the codewitch

                      A windows service. It's not even the service part itself. It's the permissions and the IPC that's typically necessary in order to control it. They should make it simpler or something. I've always hated the windows service architecture anyway.

                      To err is human. Fortune favors the monsters.

                      R Offline
                      R Offline
                      Ron Anders
                      wrote on last edited by
                      #10

                      Relationships

                      1 Reply Last reply
                      0
                      • H honey the codewitch

                        A windows service. It's not even the service part itself. It's the permissions and the IPC that's typically necessary in order to control it. They should make it simpler or something. I've always hated the windows service architecture anyway.

                        To err is human. Fortune favors the monsters.

                        1 Offline
                        1 Offline
                        11917640 Member
                        wrote on last edited by
                        #11

                        It looks like Windows service developers spend almost all their time, solving the problems with permissions, user accounts and Desktop access.

                        1 Reply Last reply
                        0
                        • H honey the codewitch

                          A windows service. It's not even the service part itself. It's the permissions and the IPC that's typically necessary in order to control it. They should make it simpler or something. I've always hated the windows service architecture anyway.

                          To err is human. Fortune favors the monsters.

                          M Offline
                          M Offline
                          megaadam
                          wrote on last edited by
                          #12

                          honey the codewitch wrote:

                          A win

                          And at that point I stopped reading!

                          "If we don't change direction, we'll end up where we're going"

                          1 Reply Last reply
                          0
                          Reply
                          • Reply as topic
                          Log in to reply
                          • Oldest to Newest
                          • Newest to Oldest
                          • Most Votes


                          • Login

                          • Don't have an account? Register

                          • Login or register to search.
                          • First post
                            Last post
                          0
                          • Categories
                          • Recent
                          • Tags
                          • Popular
                          • World
                          • Users
                          • Groups