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
Please take into consideration that the searched folder and files might be on another drive than the SystemDrive. It would be nice if the user would have option to define the drive, where to look for that, or check all the available non-network mounted drives.
The text was updated successfully, but these errors were encountered:
Would it be correct to assume that if it is not on the system drive, these folders would be on the same drive the components are installed on?
in our case the assumption is correct, but I can imagine that it differs, like Apps on C: and Install files on D: and so on.
Maybe instead of error just write a warning if the path is not found.
In Main.ps1 Line 408:
Start-Job -Name FileCollection -ScriptBlock {Get-ChildItem -Path "$ENV:SystemDrive\*" -Include "InstallationAutomation" -Recurse -Directory -ErrorAction SilentlyContinue | Select-Object -First $args[0] } -ArgumentList $TotalComponentsFound | Out-Null
Please take into consideration that the searched folder and files might be on another drive than the SystemDrive. It would be nice if the user would have option to define the drive, where to look for that, or check all the available non-network mounted drives.
The text was updated successfully, but these errors were encountered: