Robin Beismann
Robin Beismann
I don't have a solution, but a while back I came up with a watchdog which has been solving this on our instance. Feel free to use if needed. docker-compose.yml...
> in docker-compose: ` command: ["/bin/sh", "-c" , "rm -rf /home/oxidized/.config/oxidized/pid && /usr/local/bundle/bin/oxidized"]` That's probably the better solution than mine, even if mine would also detect a crashed instance.
@iDebugAll , can we get this merged? At the moment the docker build in the main branch does not work but this PR fixes it.
To me, this shouldn't be part of PSADT but instead a Wrapper around it. You could create a Powershell Script that calls PSADT and sends a Teams Notification based on...
Hey @Badgerati, moving to xplat wouldn't drop the IIS Support, would it? @phand00, since you've posted an SSRS Article, you are using IIS in between already, aren't you?
> Hi @RobinBeismann, > > The xplat Pode server is what currently makes IIS possible There won't be any currently functionality lost in dropping HttpListener. Thanks for the Info!
> Hi RobinBeismann and Badgerati, > > I'm using Pode without IIS. HttpListerner register directly in http.sys. No IIS installed at all. Is there any reason not to install IIS...
Ah I see. Sorry, I thought you're on Windows as you've linked a SSRS Article. I didn't realize that SSRS is no longer based on IIS.
Hi Thomas, you'll need to add the `-UseDefaultCredentials` to Invoke-RestMethod / Invoke-WebRequest in order to use Windows Integrated Authentication from those Cmdlets.
Basically you just need to tell the client that is requesting (in this case PowerShell) to use integrated authentication. For Ajax you can do it this way for example: ```...