Jump to content

Welcome to ExtremeHW

Welcome to ExtremeHW, register to take part in our community, don't worry this is a simple FREE process that requires minimal information for you to signup.

 

Registered users can: 

  • Start new topics and reply to others.
  • Show off your PC using our Rig Creator feature.
  • Subscribe to topics and forums to get updates.
  • Get your own profile page to customize.
  • Send personal messages to other members.
  • Take advantage of site exclusive features.
  • Upgrade to Premium to unlock additional sites features.
IGNORED

KSIMP88's PowerShell Tips and Tricks


KSIMP88
3 Attachments

Recommended Posts

I'll be using this post to provide tips and tricks I've learned with PowerShell. I keep most of my stuff at work, so perhaps tomorrow I'll bring some content to this post after I scrub my scripts of anything specific to our organization. I'll start with a few simple ones. Yes, these can be done with other methods, such as .bat files, or python, what have you, but I use PowerShell, and it's what I know. I'll be writing descriptions below, scripts to follow. Feel free to request scripts! I enjoy doing this, and it's good for job security. I'll likely even be updating scripts on here as well, as I learn of better ways to run them. For example, I'm building the driver update script as I write this post, but the one I wrote at work is much nicer, so I'll be replacing it with bits from that one.

 

A couple of quick things I want to mention.

 

Functions are basically meant to be scripts you can cache in your PowerShell profile, and allow passing variables in-line. I typically work with functions, but sometimes it doesn't quite fit the plan. Really, it depends on your tastes. 

When you see $, that means it's defining a string as a variable. 

When you see # at the beginning of a line, that code is disabled, or it is meant as a way of putting notes in the script. Nothing that follows a # in-line will run in a PowerShell script.

 

Function Template

For those interested in creating there own PowerShell functions, this is a template I use.

  Reveal hidden contents

 

Installing Windows Updates

Some of us don't like automatic updates. Guess what? You always had the power, with PowerShell, to control it. We simply disable the update services, and add some scheduled tasks to keep that service disabled, and only download the updates we want, and use a simple script to install them manually, or we could add the script as a scheduled task to automatically install anything we download to a specific folder, we can even add checks to see if it's been installed, and then delete source files to save space.

CODE:

  Reveal hidden contents

DESCRIPTION

  Reveal hidden contents

Forcing Drivers

Sometimes a device is not officially supported by Windows 10, and if you just download and try to run the .exe, Windows tells you to get rekkd. We had this happen a lot with old printers, so I learned how to use the PnP Utility. I needed to do this for my old Alienware 17 R2 (2015),  as the drivers from dell were causing USB glitches. I downloaded the H87 chipset drivers directly from Intel, and had to force them with this method, and the issues went away!

## This will use the PnP Utility to attempt to force drivers on a system.

Function Update-Drivers {

$SourceFiles = Read-Host "Where are the drivers staged? (ex c:\drivers\Audio)"
Get-ChildItem "$SourceFiles" -Recurse -Filter "*.inf" | ForEach-Object { PNPUtil.exe /add-driver $_.FullName /install }

}
  Reveal hidden contents

 

 

Backup Profile

Simple scripts can really make backing up your profile a breeze. Especially with us overclockers, who tend to break their systems! While it could be argued that you can simple have your profile run off your cloud storage, or another hard drive other than the OS drive, this backup does make it easy to quickly move the profile to another device.

script coming very soon

 

Remove User Profile

Sometimes you want to remove profiles from a system. There are many ways to do this, but the following script is best in a network environment. This script I developed a while back, and for almost each line of code, I gave a description as to what is happening for each part. Take a look, it does a very good job of properly removing user profiles from a target system.

CODE:

  Reveal hidden contents

 

Software Installs

I'll just post a single install for this, unless someone requests more. Basically, in an Enterprise environment, you may find that there are times where Enterprise Management suites don't always work as intended. A simple script could be called on to install software that is on a network share, and you can even use the repository to compare versions, without ever having to update your script! I'm working on Invoke-WebRequest commands to figure out how to do this directly with developers, but for now, it relies on someone simply updating the installer on the network drive.

  Reveal hidden contents

 

Edited by KSIMP88
  • Thanks 3
Link to comment
Share on other sites

Oh nice ! These could work out to be handy for some of my admin related tasks in the future. Thanks for this.

£3000

Owned

 Share

CPU: AMD Ryzen 9 7950X3D
MOTHERBOARD: MSI Meg Ace X670E
RAM: Corsair Dominator Titanium 64GB (6000MT/s)
GPU: EVGA 3090 FTW Ultra Gaming
SSD/NVME: Corsair MP700 Pro SE Gen 5 4TB
PSU: EVGA Supernova T2 1600Watt
CASE: be quiet Dark Base Pro 900 Rev 2
FANS: Noctua NF-A14 industrialPPC x 6
Full Rig Info

Link to comment
Share on other sites

first thing you should do on any install is disable AeroShake :D

 

doesn't have to be done through PowerShell but it can 

  • Thanks 1

1337.69

Owned

 Share

CPU: Intel i9 10900K @ 51/47 1.26v
MOTHERBOARD: Asus Z590 Maximus XIII Hero
RAM: G.Skill DDR4-4266 CL17 32GB @ 4300 15-16-16-35 2T 1.55v
GPU: Gigabyte Aorus Master RTX 3080 Ti
SSD/NVME: Team Group MP34 4TB NVMe + WD Blue 4TB SATA SSD
CPU COOLER: Arctic Liquid Freezer II 360 + Noctua iPPC 3000
PSU: Super Flower Leadex Titanium 1000W
CASE: Fractal Design Meshify S2
Full Rig Info
Link to comment
Share on other sites

  On 14/11/2020 at 16:25, The Pook said:

first thing you should do on any install is disable AeroShake :D

 

doesn't have to be done through PowerShell but it can 

Expand  

Pook holy hell. I've been trying to word what has been going on, I thought it was a glitch. Holy crap it's a freaking feature? I feel like such a moron. ITS BEEN SO MANY YESRS ARGGGGHHHHH I love u

  • Thanks 1
Link to comment
Share on other sites

Small suggestion for those not familiar to command type interfaces like powershell, it may help readers if you highlight the variables that users need to change applicable to their systems in another colour. I find this can really help the uninitiated.

 

Only a suggestion, don't feel like you need to :)

 

  • Thanks 1

£3000

Owned

 Share

CPU: AMD Ryzen 9 7950X3D
MOTHERBOARD: MSI Meg Ace X670E
RAM: Corsair Dominator Titanium 64GB (6000MT/s)
GPU: EVGA 3090 FTW Ultra Gaming
SSD/NVME: Corsair MP700 Pro SE Gen 5 4TB
PSU: EVGA Supernova T2 1600Watt
CASE: be quiet Dark Base Pro 900 Rev 2
FANS: Noctua NF-A14 industrialPPC x 6
Full Rig Info

Link to comment
Share on other sites

  On 15/11/2020 at 01:21, KSIMP88 said:

No, that's a good suggestion. I plan to keep improving this, it's quite a project. Unfortunately I don't have as much free time as I'd like, and I can't dedicate 100% of it to this, but I'll be working on it!

Expand  

Rome wasn't built in a day :)

£3000

Owned

 Share

CPU: AMD Ryzen 9 7950X3D
MOTHERBOARD: MSI Meg Ace X670E
RAM: Corsair Dominator Titanium 64GB (6000MT/s)
GPU: EVGA 3090 FTW Ultra Gaming
SSD/NVME: Corsair MP700 Pro SE Gen 5 4TB
PSU: EVGA Supernova T2 1600Watt
CASE: be quiet Dark Base Pro 900 Rev 2
FANS: Noctua NF-A14 industrialPPC x 6
Full Rig Info

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

Important Information

This Website may place and access certain Cookies on your computer. ExtremeHW uses Cookies to improve your experience of using the Website and to improve our range of products and services. ExtremeHW has carefully chosen these Cookies and has taken steps to ensure that your privacy is protected and respected at all times. All Cookies used by this Website are used in accordance with current UK and EU Cookie Law. For more information please see our Privacy Policy