Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for FeatureName (0.26 sec)

  1. cluster/gce/windows/k8s-node-setup.psm1

    function Test-HyperVFeatureEnabled {
      return ((Get-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V).State -eq 'Enabled')
    }
    
    # After this function returns, the computer must be restarted to complete
    # the installation!
    function Enable-HyperVFeature {
      Log-Output "Enabling Windows 'HyperV' feature"
      Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All -NoRestart
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top