Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fleet Installer] Don't throw when deleting registry value if it's al…
…ready deleted (#6672) ## Summary of changes Don't throw when deleting registry value if it's already deleted. ## Reason for change The uninstall command should be idempotent. Currently, if you run it twice, it will fail, because it can't find the crash-tracking key to delete. ## Implementation details I assumed `RegistryKey.DeleteValue()` worked like `File.Delete()`. It doesn't, you need to pass `throwOnMissingValue`. ## Test coverage Yeah... I still need to write integration tests, and this will be part of them
- Loading branch information