Commit 3574b2ab authored by Christof Schulze's avatar Christof Schulze 😎
Browse files
parent 30880090
Loading
Loading
Loading
Loading

features/store.ps1

0 → 100644
+19 −0
Original line number Diff line number Diff line
# Remove the Windows Store

if (StoreComplete == True){
    
    Get-AppxPackage -AllUsers *store* | Remove-AppxPackage
}

<#
# Additional settings needed to disable it without side effects (CommandPrompt)

install_wim_tweak /o /c Microsoft-Windows-ContentDeliveryManager /r
install_wim_tweak /o /c Microsoft-Windows-Store /r
reg add "HKLM\Software\Policies\Microsoft\WindowsStore" /v RemoveWindowsStore /t REG_DWORD /d 1 /f
reg add "HKLM\Software\Policies\Microsoft\WindowsStore" /v DisableStoreApps /t REG_DWORD /d 1 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\AppHost" /v "EnableWebContentEvaluation" /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\PushToInstall" /v DisablePushToInstall /t REG_DWORD /d 1 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v SilentInstalledAppsEnabled /t REG_DWORD /d 0 /f
sc delete PushToInstall
#>
 No newline at end of file

features/xbox.ps1

0 → 100644
+21 −0
Original line number Diff line number Diff line
# Remove the Music-TV online player from MS

if (XBOX == True){

    Get-AppxPackage -AllUsers *xbox* | Remove-AppxPackage
}


<#
# Additional settings needed to disable it without side effects (CommandPrompt)

sc delete XblAuthManager
sc delete XblGameSave
sc delete XboxNetApiSvc
sc delete XboxGipSvc
reg delete "HKLM\SYSTEM\CurrentControlSet\Services\xbgm" /f
schtasks /Change /TN "Microsoft\XblGameSave\XblGameSaveTask" /disable
schtasks /Change /TN "Microsoft\XblGameSave\XblGameSaveTaskLogon" /disable
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\GameDVR" /v AllowGameDVR /t REG_DWORD /d 0 /f

#>
 No newline at end of file

features/zune.ps1

0 → 100644
+6 −0
Original line number Diff line number Diff line
# Remove the Music-TV online player from MS

if (StoreComplete == True){

    Get-AppxPackage -AllUsers *zune* | Remove-AppxPackage
}
 No newline at end of file