Add some info for Powershell ISE users

This commit is contained in:
James Stringer 2022-01-03 17:43:50 +01:00
parent ce5601464d
commit 2d18a214c7

View File

@ -1,4 +1,16 @@
Param (
<#
If you are opening this file in Powershell ISE you should modify the params section like so...
Remember: GPU Name must match the name of the GPU you assigned when creating the VM...
Param (
[string]$VMName = "NameofyourVM",
[string]$GPUName = "NameofyourGPU",
[string]$Hostname = $ENV:Computername
)
#>
Param (
[string]$VMName,
[string]$GPUName,
[string]$Hostname = $ENV:Computername