Outlook (New) and OOBE installing apps

monito30

New Member
Messages
8
Reaction score
0
Good night people,

I wanted to ask about the outlook(NEW) reinstalling again showing on the taskbar and in the start menu, but when I start the OOBE phase, I get this.

1739923579572.png

1739923609523.png

Taking into consideration, that in my records I have this for the machine:

rem remove Outlook new icon, skip OOBE update and others
REG ADD "HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindowsContent" /v "DisableCloudOptimizedContent" /t REG_DWORD /d 1 /f

but apparently it doesn't work again.

Additionally, when creating the install.wim and not customizing it with NTLITE, it doesn't show me the attached images above. But it does show me the blank Outlook(NEW) icon on the taskbar and in the normal start menu.

On the other hand, I also have a key in the registry, which since the install.wim is not customized I can uncheck and check the option. Image attached.

1739923981791.png

But when I customize it, it appears like this:
1739924028097.png

Knowing that in the registry, I have it so that it can be deactivated and activated manually.

reg ADD "HKUDefaultUserSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced" /v "Start_TrackProgs" /t REG_DWORD /d 1 /f

ö it may be that something that I am modifying with the NTLITE, since without modifying anything in the install, it appears normal to me.

PLEASE HELP
 
1. Create a new .reg file, and load from the Registry screen:
Code:
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent]
"DisableCloudOptimizedContent"=dword:00000001

2. Run a Post-Setup (After logon) command:
Code:
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v Start_TrackProgs /t REG_DWORD /d 0 /f
 
Dear garlin

I already have the first registration for my machine, but there is something that is interfering with it reappearing.

On the other hand, the 2nd registration I will do after testing. I warn him and tell him.
 
Code:
Windows Registry Editor Version 5.00

;Remove Outlook from taskbar
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent]
"DisableCloudOptimizedContent"=dword:00000001

;Prevent Outlook from reinstalling
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\Orchestrator\UScheduler_Oobe\OutlookUpdate]
 
Back
Top