Setting Up Your Computer

Homework time: set up your own workstation, whatever one you do your day-to-day work on, since you'll be using PowerShell during your regular work.

You do NOT have to install any SQL Agent jobs or artifacts yet - just the stuff below.

Windows folks, install:

After installation, make a folder called C:\JunkFiles and run the Generate-JunkFiles.ps1 - it's in the download, and it's also below. It will run for a default of 2 minutes and generate a lot of very small files in the C:\JunkFiles\ folder, one file each 2 seconds that the job runs. You can also stop it at any time.

If you're following along on Mac or Linux, a few things will be slightly different:

And Mac and Linux users will need to edit this line of Generate-JunkFiles:

$FileContent | Out-File -FilePath "C:\JunkFiles\$FileName" 

And change it to a different path based on your own workstation - wherever you want to put the working files, like in a folder in your home folder. For example, I've created a /JunkFiles folder in the Downloads folder of my home directory:

$FileContent | Out-File -FilePath "Downloads/JunkFiles/$FileName" 

Complete and Continue  
Discussion

0 comments