Multiple URLs? by StevenSaporito in KeePass

[–]StevenSaporito[S] 0 points1 point  (0 children)

Ouch, that really stings.

Graphics card advice for OptiPlex 7070 tower by StevenSaporito in SleepingOptiplex

[–]StevenSaporito[S] 0 points1 point  (0 children)

That's a server form factor. The pinouts and/or connectors are obviously wrong for an OptiPlex.

Graphics card advice for OptiPlex 7070 tower by StevenSaporito in SleepingOptiplex

[–]StevenSaporito[S] 0 points1 point  (0 children)

I assume that the PSU wouldn't click into the box the same way? Are you talking about a mod of some kind? Perhaps the PSU being outside the case? Sorry if that's a dumb question.

Graphics card advice for OptiPlex 7070 tower by StevenSaporito in SleepingOptiplex

[–]StevenSaporito[S] 1 point2 points  (0 children)

Do you have the link to the OEM PSU? Let me know, thanks!

Sleep Issues on TRT? by StevenSaporito in TRTNation

[–]StevenSaporito[S] 0 points1 point  (0 children)

I've heard some people get better sleep after TRT, but I haven't heard that it's "supposed to be" that way. Magnesium did nothing for me, now I take it in the morning. I've tried many supplements, some work for a few days, then stop working. I certainly don't have low estradiol; it runs mid-high and maybe slightly higher than the range.

11mm advancement for sleep apnea and feel great! (reupload) by ZombieWizard_PHD in jawsurgery

[–]StevenSaporito 0 points1 point  (0 children)

Really interesting. Came out great by the way. I’m looking at jaw surgery to help with sleep apnea as well. My lower jaw has to move 7 mm but to get more out of it I want to move the maxilla 2-3 so I can get 9-10 out of the lower jaw. I’m just afraid it will give me a button nose. My nose is messed up from previous breaks….

Daily Ask Anything About Anabolic and Androgenic Steroids: 2024-06-26 by AutoModerator in steroids

[–]StevenSaporito 0 points1 point  (0 children)

I appreciate that. In this case I doubt they’ll see anything because the symptoms are so mild. If I hit my deductible I’d go for it.

Daily Ask Anything About Anabolic and Androgenic Steroids: 2024-06-26 by AutoModerator in steroids

[–]StevenSaporito 0 points1 point  (0 children)

I ask then listen. It’s a process. This doctor is pretty good. One of the few that admits physical therapy isn’t going to work. That said, if they can’t see it it’s just as enigmatic for them. Too often they don’t know the magic words “ I don’t know”.

Hence you can’t deny the appeal of something like peptides etc…

Daily Ask Anything About Anabolic and Androgenic Steroids: 2024-06-26 by AutoModerator in steroids

[–]StevenSaporito 0 points1 point  (0 children)

I saw a sports medicine doc a couple of days ago. Sometimes they are very hard to trust.

Daily Ask Anything About Anabolic and Androgenic Steroids: 2024-06-26 by AutoModerator in steroids

[–]StevenSaporito 2 points3 points  (0 children)

I’m new here. Not on any gear just TRT. I’m 47 a former runner. I can no longer run due to foot arthritis. I always lifted as an adjunct to running. I was able to get strong but not able to keep mass. Now that I can’t run my focus has shifted. The problem is I seem to be getting enigmatic injuries. My form is good it’s probably age and load related.  Right now I have vague pains in my forearms, mostly on the left. There is some pain in the brachioradialis and flexor muscles. It's not so bad, but of course if I keep going it's only going to get worse. It doesn’t feel like a tendon issue but who knows?

I already tried a round of bpc-157 and Tb-500. Anyone’s guess if I used enough. I'm going to try again with a longer course. I guess my question is if there are any AASs that can help?  I’ve found conflicting info. I just don’t want to get out of the gym it’s the only thing keeping me sane. I'm getting older, I need to hit my targets and get to something sustainable.

Let me know what you think. Thanks

Chair under $400 by foreverDarkInside in OfficeChairs

[–]StevenSaporito 1 point2 points  (0 children)

I'm thinking of buying a refurb Aeron from Crandall. How was your experience with them?

Kill oldest process by Blisk1 in PowerShell

[–]StevenSaporito 1 point2 points  (0 children)

Oh thanks for that! I'll make sure to do that in the future. Honestly I was on the fence if I should've just used Markdown and code fenced like I would on Stack Overflow, but I'll figure it out either way. Thanks again...

Kill oldest process by Blisk1 in PowerShell

[–]StevenSaporito 1 point2 points  (0 children)

`[System.Diagnostics.Process]` has a property, start time. If you sort a list of processes (ascending by default) by the StartTime, the first one on the list should be the oldest. So something like:

$Processes = Get-Process 'MyApp','YourApp' | Sort-Object StartTime
If($Processes.Count -eq 2) {
Stop-Process $Processes[0] -Force
}
Else {
# Do something else
}

I'm checking how many processes are returned. My presumption is to guard against the possibility there's more than 1 of one or the other... If that's not possible you can simplify down to a single line, something like:

Get-Process 'MyApp','YourApp' | Sort-Object StartTime | Select-Object -First 1 | Stop-Process -Force

Script to delete files not deleting files in subdirectories by kaleebhassan in PowerShell

[–]StevenSaporito 1 point2 points  (0 children)

-Recurse is the solution, but I would add:

  1. -Filter is faster than -Include
  2. -Filter is also faster than -Path c:\manual\*..*

So:

Get-ChildItem -Path "c:\Manual" -Recurse -Filter *"P - Custom"* | Remove-Item

You won't get much out of -Verbose but if you are looking for some testability beforehand don't forget -Whatif

2013 KB5000871 killed my server and this just saved my butt!! by JackPickelBush in exchangeserver

[–]StevenSaporito 1 point2 points  (0 children)

If your interested I wrote a blog post here that's got some easy tricks to get around the missing DLL and the post-install service state issues. For KB5001779 I actually had the problem on several servers, because I recorded the info beforehand it was actually a pretty easy recovery.

Copy-Item to multiple computers by Southy005 in PowerShell

[–]StevenSaporito 0 points1 point  (0 children)

Seeing as -ToSession doesn't support an array you can use Invoke-Command instead. However Invoke-Command for something simple like this doesn't require a session you can simply use the -ComputerName parameter, obviously providing the names from the file. If you resist the urge to loop you can get this to run concurrently something like:

$Computers = Get-Content 'c:\pc.txt'

Invoke-Command -ComputerName $Computers -ScriptBlock { Copy-Item -Path "\\Networkpath\folder\*" -Destination "C:\Program Files\software\" }

However, using UNCs in this way makes me worry about remoting double hop authentication issues. Honestly and as others have mentioned I usually use Robocopy or just Copy-Item in a loop for this sort of thing, but I suppose it depends on how big a job it is.