You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
367 B
11 lines
367 B
9 years ago
|
# Description:
|
||
|
# This script will do some optimization on the Windows start menu.
|
||
|
|
||
|
Import-Module -DisableNameChecking $PSScriptRoot\..\lib\reg-helper.psm1
|
||
|
|
||
|
echo "Disabling tile push notification"
|
||
|
Import-Registry(@"
|
||
|
[HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\PushNotifications]
|
||
|
"NoTileApplicationNotification"=dword:00000001
|
||
|
"@)
|