public void TestListApps() { if (!WindowsUtils.IsWindowsVista) Assert.Ignore("Restart Manager only available on Windows Vista or higher"); using (var restartManager = new WindowsRestartManager()) { restartManager.RegisterResources(@"C:\Windows\explorer.exe"); restartManager.ListApps(new SilentTaskHandler()); } }
public void TestListApps() { Skip.IfNot(WindowsUtils.IsWindowsVista, reason: "Restart Manager only available on Windows Vista or higher"); using (var restartManager = new WindowsRestartManager()) { restartManager.RegisterResources(@"C:\Windows\explorer.exe"); restartManager.ListApps(new SilentTaskHandler()); } }