Heath Stewart
Heath Stewart
> That sounds good! I'd be down with that. Would you explore this approach when you have time? @mislav sure I can explore it if there's an active interest in...
What work do you need to prioritize? The PR has been done for ages. Seems the outstanding concern was using a third party module, which is sort of absurd given...
Would a quick sync over Teams be acceptable (we're on the same network)? Most of the history is just me keeping this up to date (which gets harder with the...
I'd be happy to work on this myself, but I don't see any source or mention of it.
Do you have a preview installed? You need to pass `-prerelease`? To check if it's in a bad state and needs to be repaired, pass `-all` and check it's `State`...
Please paste the output of `vswhere -all -prerelease`. Also, you're missing a `$` above. It should be: ```powershell $vswhere = "${Env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe" ``` Note also that it doesn't exist...
Did you fix the line that should be: ```powershell $vswhere = "${Env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe" write-host "$vswhere" ``` And check that `$vswhere` contains what you think? As written in your OP,...
You also need to specify you want only the `installationPath` property: `vswhere.exe -latest -products * -property installationPath` You're passing a bunch of output to the installer so it's erring. You...
The ModelValidation issue is a known issue where it doesn't like "/" as a parameter value, which the service accepts as the scope.
> > /cc @jlichwa for some comments I transferred from #28400. I think those should be addressed by at least GA, if not before 7.6-preview.1 ships i.e., the async-operation one....