1. Visualizzare le Tiles Arresta, riavvia, disconnetti nello Start Screen Per avere i collegamenti di spegnimento, riavvio e disconnessione a portata di clic sullo Start Screen, incolliamo il seguente codice nel Blocco note di Windows: set WshShell = WScript.CreateObject(“WScript.Shell”) strStartMenu = WshShell.SpecialFolders(“StartMenu”) set oShellLink = WshShell.CreateShortcut(strStartMenu & “Shutdown.lnk”) oShellLink.TargetPath = “%systemroot%System32shutdown.exe” oShellLink.Arguments = “-s -t 0″ oShellLink.WindowStyle = 1 oShellLink.IconLocation = “%systemroot%System32shell32.dll,27″ oShellLink.Description = “Shutdown Computer (Power Off)” oShellLink.WorkingDirectory = “%systemroot%System32″ oShellLink.Save Set oShellLink = Nothing set oShellLink = WshShell.CreateShortcut(strStartMenu & “Log Off.lnk”) oShellLink.TargetPath = “%systemroot%System32shutdown.exe” oShellLink.Arguments = “-l” oShellLink.WindowStyle = 1 oShellLink.IconLocation = “%systemroot%System32shell32.dl...