Skip to content
This repository has been archived by the owner on Jul 17, 2021. It is now read-only.

Commit

Permalink
changed text to logout rather than restart
Browse files Browse the repository at this point in the history
  • Loading branch information
Konnor88 authored Jun 17, 2021
1 parent f3204fc commit 7421202
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TenStartMenuFixer/Module1.vb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Line1:
Console.WriteLine("")
Console.WriteLine("Applying fix...")
My.Computer.Registry.CurrentUser.OpenSubKey("Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\", True).SetValue("Start_ShowClassicMode", 1, RegistryValueKind.DWord)
Console.WriteLine("Fix successful! Please restart your PC.")
Console.WriteLine("Fix successful! Please log out and log back in to see the changes.")
Console.ReadLine()
End
End Sub
Expand All @@ -39,7 +39,7 @@ Line1:
Dim key As Microsoft.Win32.RegistryKey
key = Microsoft.Win32.Registry.CurrentUser.OpenSubKey("Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", True)
key.DeleteValue("Start_ShowClassicMode")
Console.WriteLine("Fix removed! Restart your PC to see all the changes.")
Console.WriteLine("Fix removed! Please log out and log back in to see the changes.")
Console.ReadLine()
End
End Sub
Expand Down

0 comments on commit 7421202

Please sign in to comment.