🆕PSCloudScript Basics
I'm going to write a few posts about this topic, so it is probably best to start with the basics. So what is a PSCloudScript? It's what I call a PowerShell script that you run off the internet
Recast Software gets mad props for supporting Community content like this. Make sure you check our their Systems Management Tools
GitHub gist
The first thing to do is to get your PowerShell script in the cloud, and you can do this easily by creating a GitHub Gist
It really doesn't matter if you save it as a Public or a Private gist as it's still accessable by anyone with the link
Visual Studio Code Extensions
There are several Visual Studio Code extensions that can help you manage your GitHub gists, but one that really stands out is GistPad. It will be much easier to edit in VSCode with this and the PowerShell extension. You can add this from the Marketplace at this link
You will need to sign into your GitHub account and authorize Visual Studio Code to access GitHub
This script that I'm working on will be used with OSDCloud. Once you are done with all your script edits, save it back to GitHub gists
Getting the right URL
Its important to get the right Url to link for a PSCloudScript
Gist Editor Share URL
The GitHub Gist Editor and the Share link are identical, but the problem is that this URL doesn't have an easy way to get the PowerShell Script out
Gist Raw Commit URL
When you press the Raw button on the Gist Editor Share Link, you are redirected to the Raw Commit Link
You will get a URL returned that adds a second set of numbers. This second set is known as the Commit, so if you share this URL, then you are sharing only this version of your script, so any future changes will not be reflected in this URL because this content will be static going forward
Gist Raw URL (Latest)
To ensure you always have the latest content for your script, you need to remove the Commit from the URL, so you will need to format your URL like this example. This is the URL you need to use for your PSCloudScript
WebRequest vs RestMethod
Invoke-WebRequest
Once the Gist is published, and you have your real Gist Raw link, you could use the following command to get the Gist Content. This command can be abbreviated as well
Invoke-RestMethod
This is a better alternative for scripts as Invoke-RestMethod returns the content as structured data
URL Shortner
The goal is to make the shorter, so why not try a URL shortener? It is easy enough to test if the URL shortener you are going to use will work, and most of them should
Subdomains
This won't work with all hosts, but you may be able to redirect a subdomain if your DNS Host supports this. I use Google Domains for OSDCloud.com and they make it very easy to do this
This quickly allows me to get to my PSCloudScript by simply going to live.osdcloud.com
One benefit of using GitHub Raw links is that the MIME information is presented as Text. If you are linking to another source, you may be prompted to download the ps1 file rather than viewing the text
Which looks really nice when I want to perform an Invoke-RestMethod
Executing a PSCloudScript
This is the simple part. Once you have a method to get your PSCloudScript content, just use Invoke-Expression -Command
to execute it. Here are some examples on how to do this
You can test my script in full Windows as it will only execution the functions in WinPE
OSDCloud Live
So here I have a basic WinPE with PowerShell installed, but there are some issues running OSDCloud ...
PSGallery doesn't work
Curl.exe isn't present
OSD Module isn't installed
So instead of mounting and making changes to the WIM, I'll script my solution and run this as a PSCloudScript. From a Command Prompt, any of these commands will work
Optionally these can be run if you are already in PowerShell
Now I can boot to WinPE and run OSDCloud as long as it has PowerShell from the ADK installed :)
Last updated