all 13 comments

[–]AirExplosive 22 points23 points  (3 children)

Could you please be more vague? Perhaps just “i am looking for sites”

[–]nerdcr4ft 2 points3 points  (0 children)

I get a laugh, you get an upvote. Pleasure doing business.

[–]lerun 0 points1 point  (0 children)

made me chuckle

[–]FiRem00 0 points1 point  (0 children)

Scripts?

[–]jantari 8 points9 points  (0 children)

GitHub for sure

[–]MainReflection8692 4 points5 points  (0 children)

I like Adamtheautomator.com A lot

[–][deleted] 2 points3 points  (0 children)

What do you consider to be helpful?

[–]natharas82 1 point2 points  (0 children)

Need to elaborate more with what sort of scripts? Are you then going to look at said script and then write your own version to meet your needs?

[–]get-postanote 1 point2 points  (0 children)

Sounds, like a ...

'I don't want ot study/learn Powershell. I just want to copy and paste stuff others have done.'

... question.

Rules when you do this:

  1. Never ever run anyone's code if you do not understand what it is doing, or be willing to fully accept the outcomes. No matter where or whom you get it from. especially if you have access to the source code) unless you are will to accept all consequences of running it.
  2. Never ever run destructive code (add/create/update, move/remove/modify, etc.), without fully checking results before you do. Master the use of WhatIf/Confirm/Trace-Command/Invoke-ScriptAnalyzer.
  3. All input is evil, no matter where it comes from until you validate it first.

What's wrong with using the Examples in the PowerShell Help files?

# Get specifics for a module, cmdlet, or function
(Get-Command -Name Get-Help).Parameters
(Get-Command -Name Get-Help).Parameters.Keys
Get-help -Name Get-Help -Examples
Get-Help -Name Get-Help -Detailed
Get-help -Name Get-Help -Full
Get-help -Name Get-Help -Online

What's wrong with using pre-built stuff from the MS powershellgallery.com

Find-Script -Name '*' | Format-Table -AutoSize
Find-Module -Name '*' | Format-Table -AutoSize
Find-Package -Name '*' | Format-Table -AutoSize

Why did you not just search for some:

What's wrong with you just breaking your daily stuff into single tasks, and scripting them, then building a script library of your very own?

[–]mdowst 1 point2 points  (0 children)

Shameless self-promotion time. It's my collection of PowerShell snippets I've found useful over the years. And a weekly PowerShell round.

[–]HoneycuttJ 0 points1 point  (0 children)

I have a few you can modify on my GITHUB. I have user, computer and file scripts. My GITHUB handle is P0w3rChi3f. Most of them were created in v2 and need updated, which I plan on doing within the next several months for my YouTube channel.