You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If -Path is specified, use that path for <VM_Name.mof>
If -Path is not specified, use the default configuration path - (Get-LabHostDefault).ConfigurationPath
I think it would avoid confusion if the logic was updated to:
If -Path not specified:
Search ConfigurationPath for <VM_Name.mof>
If not found but a configuration name is defined, search ConfigurationPath\ConfigurationName for <VM_Name.mof> (also addresses Add in Lab name to the module #78)
If not found, search $PWD for <VM_Name.mof>
If -Path is specified
Search the specified path for <VM_Name.mof>
If not found but a configuration name is defined, search ConfigurationPath\ConfigurationName for <VM_Name.mof> (also addresses Add in Lab name to the module #78)
The text was updated successfully, but these errors were encountered:
The current logic for locating .mof files is:
-Path
is specified, use that path for <VM_Name.mof>-Path
is not specified, use the default configuration path - (Get-LabHostDefault).ConfigurationPathI think it would avoid confusion if the logic was updated to:
-Path
not specified:ConfigurationPath
for <VM_Name.mof>ConfigurationPath\ConfigurationName
for <VM_Name.mof> (also addresses Add in Lab name to the module #78)-Path
is specifiedConfigurationPath\ConfigurationName
for <VM_Name.mof> (also addresses Add in Lab name to the module #78)The text was updated successfully, but these errors were encountered: