New
#1
You can delete the app from ISO?
Good evening
I wonder if you can delete apps from ISO
Thank you
Good evening
I wonder if you can delete apps from ISO
Thank you
Do you mean, if you can modify the disc image, which Microsoft provides for the users to install Windows with?
I confirm.
I want to remove some apps from 'ISO.
It might be possible to modify the image. However, I don't know of a way to change the image. In order to modify a Windows installation, people usually use the sysprep tool:
https://support.microsoft.com/en-us/kb/302577
Good morning
I want to create an ISO of W10 removing apps that are unnecessary.
For example if I want to delete Get Office just run a powershell command like this:
powershell "Get-AppxPackage -allusers *officehub* | Remove-AppxPackage" > NUL 2>&1
This command then I insert it in a batch file
This command then I insert it into a batch file (Delete_GetOffice.bat)Code:@echo off powershell "Get-AppxPackage -allusers *officehub* | Remove-AppxPackage" > NUL 2>&1 exit
This file is placed in the "Software" folder in the root of the ISO of Windows 10
Then I created the file Setupcomplete.cmd
Code:@echo off for %%w IN (D E F G H I J K L M N O P Q R S T U V W X Y Z) DO IF EXIST %%w:\sources\install.wim SET CDROM=%%w: REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /v Flags /t REG_DWORD /d "20" /f REG ADD %KEY% /V Title /D "Post Installation..." /f >NUL REG ADD %KEY%\01 /VE /D "Delete_GetOffice" /f >NUL REG ADD %KEY%\01 /V 1 /D "%CDROM%\Software\Delete_GetOffice.bat" /f >NUL exit
and inserted in ISO of Windows 10
During the nstallation RunOnce runs normally and Powershell command brings up a notice of elimination the App.
But when I open the start menu appears GetOffice yet.
To be sure that the command is correct, you copy the batch file on the desktop and launch the app GetOffice is eliminated normally.
I do not understand why so run Once the app is not deleted, mistake in the procedure?
Thank you