无忧启动论坛

标题: msmgtoolkit命令提取 [打印本页]

作者: wenbieba    时间: 2023-3-23 09:22
标题: msmgtoolkit命令提取
msmgtoolkit里边的删除APP命令如何提取修改在系统部署阶段执行
作者: yyz2191958    时间: 2023-3-23 11:48
我还以为是分享方法
作者: JERRY爱电脑    时间: 2023-3-25 16:30
ToolkitHelper.exe貌似不支持在线系统的,做不到
作者: placeholder    时间: 2023-4-1 01:02
appx移除命令:https://learn.microsoft.com/en-u ... ons?view=windows-11

unattend.xml设置(自行设置红色框中的path):
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
        <settings pass="oobeSystem">
                <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                        <InputLocale>0804:00000804</InputLocale>
                        <SystemLocale>zh-CN</SystemLocale>
                        <UILanguage>zh-CN</UILanguage>
                        <UILanguageFallback>zh-CN</UILanguageFallback>
                        <UserLocale>zh-CN</UserLocale>
                </component>
                <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                        <AutoLogon>
                                <Enabled>true</Enabled>
                                <LogonCount>9999999</LogonCount>
                                <Username>Administrator</Username>
                                <Password>
                                        <PlainText>true</PlainText>
                                        <Value></Value>
                                </Password>
                        </AutoLogon>
                        <OOBE>
                                <HideEULAPage>true</HideEULAPage>
                                <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
                                <NetworkLocation>Work</NetworkLocation>
                                <ProtectYourPC>3</ProtectYourPC>
                                <SkipMachineOOBE>true</SkipMachineOOBE>
                                <SkipUserOOBE>true</SkipUserOOBE>
                        </OOBE>
                        <UserAccounts>
                                <AdministratorPassword>
                                        <PlainText>true</PlainText>
                                        <Value></Value>
                                </AdministratorPassword>
                                <LocalAccounts>
                                        <LocalAccount wcm:action="add">
                                                <Group>Administrators</Group>
                                                <Name>Administrator</Name>
                                                <Password>
                                                        <PlainText>true</PlainText>
                                                        <Value></Value>
                                                </Password>
                                        </LocalAccount>
                                </LocalAccounts>
                        </UserAccounts>
                </component>
        </settings>
        <settings pass="specialize">
                <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                        <RunSynchronous>
                                <RunSynchronousCommand wcm:action="add">
                                        <Order>1</Order>
                                        <Path>net user Administrator /active:Yes</Path>
                                        <WillReboot>Never</WillReboot>
                                </RunSynchronousCommand>
                                <RunSynchronousCommand wcm:action="add">
                                        <Order>2</Order>
                                        <Path>%SYSTEMDRIVE%\DrvCeo\Drvceo.exe -d</Path>
                                        <WillReboot>Never</WillReboot>
                                </RunSynchronousCommand>
                        </RunSynchronous>
                </component>
                <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                        <SkipAutoActivation>true</SkipAutoActivation>
                </component>
                <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                        <ComputerName>*</ComputerName>
                        <RegisteredOrganization>Microsoft</RegisteredOrganization>
                        <RegisteredOwner>Windows User</RegisteredOwner>
                </component>
                <component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                        <Identification>
                                <JoinWorkgroup>WORKGROUP</JoinWorkgroup>
                        </Identification>
                </component>
        </settings>
        <settings pass="windowsPE">
                <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                        <InputLocale>0804:00000804</InputLocale>
                        <SystemLocale>zh-CN</SystemLocale>
                        <UILanguage>zh-CN</UILanguage>
                        <UILanguageFallback>zh-CN</UILanguageFallback>
                        <UserLocale>zh-CN</UserLocale>
                        <SetupUILanguage>
                                <UILanguage>zh-CN</UILanguage>
                        </SetupUILanguage>
                </component>
                <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                        <Diagnostics>
                                <OptIn>false</OptIn>
                        </Diagnostics>
                        <DynamicUpdate>
                                <Enable>false</Enable>
                                <WillShowUI>OnError</WillShowUI>
                        </DynamicUpdate>
                        <ImageInstall>
                                <OSImage>
                                        <WillShowUI>OnError</WillShowUI>
                                        <InstallFrom>
                                                <MetaData wcm:action="add">
                                                        <Key>/IMAGE/INDEX</Key>
                                                        <Value>1</Value>
                                                </MetaData>
                                        </InstallFrom>
                                </OSImage>
                        </ImageInstall>
                        <UserData>
                                <AcceptEula>true</AcceptEula>
                                <ProductKey>
                                        <Key></Key>
                                </ProductKey>
                        </UserData>
                </component>
        </settings>
</unattend>






欢迎光临 无忧启动论坛 (http://bbs.wuyou.net./) Powered by Discuz! X3.3