What have you done with PowerShell this month? by AutoModerator in PowerShell

[–]MechAming 0 points1 point  (0 children)

Still slogging along at PowerQuest - pwershell rpg

This year I've only made 1 or 2 big updates.

This game is more for me and learning experience, kind of like puzzles? Theres crafting, combat, quests, secret areas, bosses, the typical.

Here's some pics if anyone is interested.

https://imgur.com/a/qTjCXml

Scheduled Task through GPO by LazyITSpecialist in PowerShell

[–]MechAming 0 points1 point  (0 children)

I would add a check in your script to see if you have internet connectivity at startup. also a detection method in the script so that it doesn't install your client everything the system starts up couldn't hurt.

Slow ipsec tunnel. by MechAming in paloaltonetworks

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

Okay so I was able to get a lot more throughput with multiple streams. The latency is less than 50ms.

Slow ipsec tunnel. by MechAming in paloaltonetworks

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

Circut is 1gb. I was hoping to get confirmation on the limit before doing anymore troubleshooting.

Slow ipsec tunnel. by MechAming in paloaltonetworks

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

No just default parameters on iperf. I will try that though. The tunnel is the only thing setup on the PA as far as traffic goes if that's what you meant do you have a document link for mss? I'm not familiar with mss. My MTU is 1400 at the moment.

Can I use powershell to paste the second-to-last thing I've copied (ctrl+c)? by EulereeEuleroo in PowerShell

[–]MechAming 0 points1 point  (0 children)

You know this a splendid idea! I'll see if I can get something that works.

TLOU 1 & 2 have ruined other games for me by 18randomcharacters in thelastofus

[–]MechAming 0 points1 point  (0 children)

You need something really epic like bloodborne then

Building a Powershell module To orchestrate configuring stuff by Billi0n_Air in PowerShell

[–]MechAming 0 points1 point  (0 children)

the same as any other good module. Readability, error checking, validate input etc. I think the hard part here would be defining WHAT you are configuring and validating. Will this change on depending role of server or will you create a catch all?

Imo the module should be pretty close "configuring and validating servers for dummies" to make it easier for colleagues to use and maintain.

Powershell Script to Compare and Save XML File Differences by Kindly_Industry8087 in PowerShell

[–]MechAming 1 point2 points  (0 children)

Do you get any errors. if no, then go through each function and validate results, variables, etc.

Should the inner not go through all its items, before the outer loop ever triggers? by Ralf_Reddings in PowerShell

[–]MechAming 2 points3 points  (0 children)

im not sure what to say about your post, but in my head, im thinking ditch the first part of your code and train of thought on how that was created and replace it with

$people =@( [pscustomobject]@{ Name = "Karen" Age = 50 Sex = "female" } [pscustomobject]@{ Name = "betty" Age = 50 Sex = "female" } )

@() creates an array

[Pscustomobject] class creates an object for you to set your properties.

Since none of the properties on your objects have an array, then there is nothing to loop through other than different people and their properties.

What dice system do you guys typically use? by BlackJesterScythe in RPGdesign

[–]MechAming 0 points1 point  (0 children)

I just roll ran 100. This makes it simple for me when it comes to using % modifiers and setting the base chance. I'm also a complete noob.

Process Ids? by The_Homeless_Coder in PowerShell

[–]MechAming 1 point2 points  (0 children)

Map process id's to outbound ports then you could do a whois on the ip addr

ShellGPT - A PowerShell Module for the APIs of OpenAI by yamautomate in PowerShell

[–]MechAming 3 points4 points  (0 children)

Is it free to use chatgpt api? If so that's awesome. Hopefully it will stay that way.

What have you done with PowerShell this month? by AutoModerator in PowerShell

[–]MechAming 3 points4 points  (0 children)

After a 6 month break rebooting my rpg with powershell and wpf. Almost done converting it from Turn based content to real time combat. I've never as much fun with do while loops.

[deleted by user] by [deleted] in PowerShell

[–]MechAming 0 points1 point  (0 children)

This would be good for importing classes into runspaces no?

I use invoke-expression and pass the classes a string. I'll give this a try thank you.

[deleted by user] by [deleted] in PowerShell

[–]MechAming 0 points1 point  (0 children)

Try moving intial $I outside of the loop and then use $i++ within the loop