Public/OSDCloudTS/Set-SetupCompleteHyperVName.ps1
function Set-SetupCompleteHyperVName { Write-Host -ForegroundColor Cyan "Running SetupComplete HyperVName" $ScriptsPath = "C:\Windows\Setup\scripts" $RunScript = @(@{ Script = "SetupComplete"; BatFile = 'SetupComplete.cmd'; ps1file = 'SetupComplete.ps1';Type = 'Setup'; Path = "$ScriptsPath"}) $PSFilePath = "$($RunScript.Path)\$($RunScript.ps1File)" if (Test-Path -Path $PSFilePath){ Add-Content -Path $PSFilePath "Set-HyperVName" } else { Write-Output "$PSFilePath - Not Found" } } |