This commit is contained in:
mika-n 2019-11-04 14:53:08 +02:00
commit 1c6f170770

View File

@ -346,9 +346,18 @@ namespace DS4Windows.Forms
if (onlylnkpath != Process.GetCurrentProcess().MainModule.FileName) if (onlylnkpath != Process.GetCurrentProcess().MainModule.FileName)
{ {
File.Delete(Environment.GetFolderPath(Environment.SpecialFolder.Startup) + "\\DS4Windows.lnk"); string ds4lnkpath = Environment.GetFolderPath(Environment.SpecialFolder.Startup) + "\\DS4Windows.lnk";
appShortcutToStartup(); if (!new FileInfo(ds4lnkpath).IsReadOnly)
changeStartupRoutine(); {
File.Delete(ds4lnkpath);
appShortcutToStartup();
changeStartupRoutine();
}
else
{
StartWindowsCheckBox.Checked = false;
runStartupPanel.Visible = false;
}
} }
} }