Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Installer/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -227,12 +227,13 @@ private static int BuildMsiPackage(MsiOptions opts)
RestartServiceDelayInSeconds = 30,
ResetPeriodInDays = 1,
PreShutdownDelay = 1000 * 60 * 3, // default
// This matches Tailscale's service dependencies, with one omission: iphlpsvc. We do not
// use any of the IPv6 transition technologies provided by that service.
// This is based on Tailscale's service dependencies, with two omissions:
// - iphlpsvc: we do not use any of the IPv6 transition technologies provided by that service.
// - WinHttpAutoProxySvc: in our Tailscale fork, we've patched out the requirement on WPAD
// (WinHTTP Web Proxy Auto-Discovery), so we don't need to depend on this service.
DependsOn =
[
new ServiceDependency("netprofm"), // Network List Service
new ServiceDependency("WinHttpAutoProxySvc"), // WinHTTP Web Proxy Auto-Discovery Service
],
};
var shortcut = new FileShortcut("Coder Desktop", "%StartMenuFolder%")
Expand Down
Loading