How to: Create shutdown, logoff and restart Windows tiles in Windows 8.1 using RES Automation Manager 2012

By default, there’s no shutdown, logoff or restart button anymore in Windows 8 and 8.1. Microsoft has released a script to create these Windows tiles. You can download this script in the Windows Gallery. In this example I’ve created the Windows tiles in Windows 8.1 using RES Automation Manager 2012.

1.) First create a Windows share where you put the PowerShell module for the Windows tiles
2.) Next I’ve created a new module with some Powershell commands
Set-Executionpolicy unrestricted -force
Import-Module \\RESMNG01\Source\CreateWindowsTile\CreateWindowsTile.pm1
New-OSCWindowsTile
3.) when you run this module on your RES AM agent(s), the new Windows Tiles will be created

Very usefull in a large environment with Windows 8 or 8.1 🙂

2013-10-28_11h51_23    2013-10-28_12h02_32    2013-10-28_12h02_46

2013-10-28_12h03_04    2013-10-28_12h03_20    2013-10-28_12h00_00

2013-10-28_12h01_46

 

How to: Disable the EU Browser Choice screen in Windows 8 and 8.1

The first time when you boot your new installed Windwos 8 or 8.1 machine, you get the Browser choice screen. In my situation I want to use Internet Explorer and don’t want to let the users choice what browser they are going to use. You can disable the browser choice screen with a simple registry key. You can use the following command to disable the browser choice screen within MDT or SCCM infastructures.

REG ADD HKLM\Software\BrowserChoice /v Enable /t REG_DWORD /d 0 /f

Set the key to 1 if you want to enable the browser choice screen. Set the key to 0 if you want to disable it.

2013-10-28_10h35_42    2013-10-28_10h43_45    2013-10-28_10h44_47

2013-10-28_10h44_12    2013-10-28_10h43_52