diff --git a/Update-VMGpuPartitionDriver.ps1 b/Update-VMGpuPartitionDriver.ps1 index f4664ee..157b22b 100644 --- a/Update-VMGpuPartitionDriver.ps1 +++ b/Update-VMGpuPartitionDriver.ps1 @@ -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