Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 001| Configure Start Tile Layout
- 002| Export-StartLayout -Path $Env:WINDIR\system32\sysprep\StartLayout.xml
- 003| Add the following code after </DefaultLayoutOverride>:
- <CustomTaskbarLayoutCollection PinListPlacement="Replace">
- <defaultlayout:TaskbarLayout>
- <taskbar:TaskbarPinList>
- <taskbar:DesktopApp DesktopApplicationLinkPath="%APPDATA%\Microsoft\Windows\Start Menu\Programs\System Tools\File Explorer.lnk" />
- <taskbar:DesktopApp DesktopApplicationLinkPath="%APPDATA%\Microsoft\Windows\Start Menu\Programs\Accessories\Internet Explorer.lnk" />
- </taskbar:TaskbarPinList>
- </defaultlayout:TaskbarLayout>
- </CustomTaskbarLayoutCollection>
- 004| Add the following code to the XML namespace:
- xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout"
- 005| Import-StartLayout -LayoutPath $Env:WINDIR\system32\sysprep\StartLayout.xml -MountPath $Env:SYSTEMDRIVE\
- 006| Set default app configuration file to the following:
- <?xml version="1.0" encoding="UTF-8"?>
- <DefaultAssociations>
- <Association Identifier=".pdf" ProgId="Acrobat.Document.11" ApplicationName="Adobe Acrobat" />
- <Association Identifier="http" ProgId="IE.HTTP" ApplicationName="Internet Explorer" />
- <Association Identifier="https" ProgId="IE.HTTPS" ApplicationName="Internet Explorer" />
- </DefaultAssociations>
- 007| DISM /Online /Import-DefaultAppAssociations:$Env:WINDIR\system32\sysprep\appDefaults.xml
- 008| Copy %APPDATA%\Microsoft\Windows\Start Menu\Programs\Accessories\Internet Explorer.lnk to %ALLUSERSPROFILE%\ProgramData\Microsoft\Windows\Start Menu\Programs
- 009| Copy Internet Explorer shortcut to \Users\Default\Desktop
- 010| Create DWORD under HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer named DisableEdgeDesktopShortcutCreation and set its value to 1
Advertisement
Add Comment
Please, Sign In to add comment