Just tried on my USB formatted to MBR. Code: Set-Disk : Not Supported Activity ID: {3e0e21b5-87cb-4471-a546-27380fe64a5f} At D:\Optimize-Offline-master\Optimize-Offline-master\Src\Public\Write-USB.ps1:47 char:23 + [Void]($USBDrive | Set-Disk -PartitionStyle MBR) + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : InvalidOperation: (StorageWMI:ROOT/Microsoft/..._StorageCmdlets) [Set-Disk], CimExceptio n + FullyQualifiedErrorId : StorageWMI 1,Set-Disk New-Partition : The disk has not been initialized. Activity ID: {e4202507-07be-44bd-b6b9-a83f3cfb205f} At D:\Optimize-Offline-master\Optimize-Offline-master\Src\Public\Write-USB.ps1:55 char:3 + New-Partition -Size 1GB -AssignDriveLetter | + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (StorageWMI:ROOT/Microsoft/Windows/Storage/MSFT_Disk) [New-Partition], Cim Exception + FullyQualifiedErrorId : StorageWMI 41000,New-Partition Failed creating bootable USB, see the error log for details Edit: Changing to the below worked on an MBR formatted USB. Testing GPT now. Works now. Tested MBR and GPT USB AND a USB already made with the script. Code needs to be cleaned up for the redundant part though, and I'm not sure how to do that. Code: If ($USBDrive.PartitionStyle -eq 'RAW') { [Void]($USBDrive | Initialize-Disk -PartitionStyle MBR) } Else { [Void]($USBDrive | Initialize-Disk -PartitionStyle MBR) }
Latest commit. Code: Index : 0 Exception : ScriptHalted Category : OperationStopped: (:) [], RuntimeException ErrorID : ScriptHalted Target : Command : Throw $Error[0] Script : D:\Optimize-Offline-master\Optimize-Offline-master\Src\Public\Write-USB.ps1 Line : 83 Column : 3 Index : 1 Exception : The given path's format is not supported. Category : NotSpecified: (:) [Copy-Item], NotSupportedException ErrorID : System.NotSupportedException,Microsoft.PowerShell.Commands.CopyItemCommand Target : Command : Copy-Item -Path "$($ISOMount):\bootmgr*" -Destination "$($USBUEFIVolume.DriveLetter):\" Script : D:\Optimize-Offline-master\Optimize-Offline-master\Src\Public\Write-USB.ps1 Line : 62 Column : 3 Index : 2 Exception : The disk has not been initialized. Activity ID: {921c8728-cdf0-48b8-848a-ba533e60228b} Category : NotSpecified: (StorageWMI:ROOT/Microsoft/Windows/Storage/MSFT_Disk) [New-Partition], CimException ErrorID : StorageWMI 41000,New-Partition Target : MSFT_Disk (ObjectId = "{1}\\KEDARWOLF-PC\root/Microsoft/Window...) Command : New-Partition -Size 1GB -AssignDriveLetter | Script : D:\Optimize-Offline-master\Optimize-Offline-master\Src\Public\Write-USB.ps1 Line : 59 Column : 3 Index : 3 Exception : Not Supported Activity ID: {95383022-be46-4819-8e14-fc575852d140} Category : InvalidOperation: (StorageWMI:ROOT/Microsoft/..._StorageCmdlets) [Set-Disk], CimException ErrorID : StorageWMI 1,Set-Disk Target : PS_StorageCmdlets Command : [Void]($USBDrive | Set-Disk -PartitionStyle MBR) Script : D:\Optimize-Offline-master\Optimize-Offline-master\Src\Public\Write-USB.ps1 Line : 45 Column : 23 This fixed it, but code is messy again. 'set-disk' to 'initialize-disk' again. If it just uses the Initialize-Disk option without trying the set-disk option it works on mbr, gpt and dual partition usbs already made with the script. I think you can remove any set-disk options completely and just use initialize-disk. Code: Stop-Service ShellHWDetection -ErrorAction SilentlyContinue | Out-Null [Void]($USBDrive | Clear-Disk -RemoveData -RemoveOEM -Confirm:$false -PassThru) Try{ [Void]($USBDrive | Initialize-Disk -PartitionStyle MBR) } Catch { Try{ [Void]($USBDrive | Initialize-Disk -PartitionStyle MBR -ErrorAction SilentlyContinue | Out-Null) } Catch { Throw $Error[0] } }
I opened diskpart, selected the USB and ran 'clean', then exited diskpart. I'm pretty sure this creates an uninitialised disk I'm running the script with my earlier fix, to see if it works. The script found the USB, but is not done yet.
I don't think it works the same way, though. Using UUP CustomList to exclude "Microsoft.SecHealthUI_8wekyb3d8bbwe" from build 22621 after installation i can still see these processes running, it just won't open Defender GUI: Is this also the case when using OO script? I haven't used this in a while
USB option working on the latest commit. Tested on an uninitialised USB and testing now on one already made with the script. Thank you @gdeliana it was a ton of tweaking for you to get it to work. Sorry it took so long to test, my Windows broke and I'd get an error when the script tried creating the ISO. This has happened before but had a Macrium image of my Windows before it broke, loaded it, fixed.
Hello there, Well, if you select the option dormantDefender: true in configuration.json then it should shut down all the defender services as well. Yes it's true the uup dump script just removes the dashboard app of defender.
Hello there, I finalized another release of the OO tool. This is the changelog: Spoiler: Changelog - Flash to USB option (will erase and create MBR partition scheme on USB with NTFS partition and FAT32 UEFI partition - enabled more smartscreen disabling tweaks for 11 - removed auto LayoutTemplate for 11 & windows upgrade disabler tweak fix - wildcard '*' support in windows apps and system apps removal - fixed iso/wim file overwrite on custom path & refactoring - enable W11 local account support Please let me know if any issues arise. EDIT: And of course i forgot to thank @freddie-o for his usb flashing script and, @drew84 for pointing me that out. As usual @KedarWolf for his extensive testing
Testing the newest Release now. 2022-08-03T22:53:21 [INFO]: Finalizing Optimizations. 2022-08-03T22:53:21 [INFO]: Creating bootable usb. 2022-08-03T22:56:24 [INFO]: Successfully created bootable usb. 2022-08-03T22:56:24 [INFO]: Optimize-Offline completed in [32] minutes with [0] errors. *************************************************************************************************** Optimizations Finalized : 08/03/2022 10:56:24 PM Code: *************************************************************************************************** Running Module : Optimize-Offline 4.0.1.9 Optimize Start : 08/03/2022 10:24:37 PM Identity Name : SYSTEM Computer Name : KEDARWOLF-PC *************************************************************************************************** 2022-08-03T22:24:37 [INFO]: Supported Image Build: [22000] 2022-08-03T22:24:40 [INFO]: Mounting Windows 11 IoT Enterprise 2022-08-03T22:25:57 [INFO]: Mounting Microsoft Windows Setup (x64) 2022-08-03T22:26:07 [INFO]: Pre-Optimization Image Health State: [Healthy] 2022-08-03T22:26:12 [INFO]: Removing Provisioned App Package: Microsoft.BingNews 2022-08-03T22:26:15 [INFO]: Removing Provisioned App Package: Microsoft.BingWeather 2022-08-03T22:26:18 [INFO]: Removing Provisioned App Package: Microsoft.GetHelp 2022-08-03T22:26:21 [INFO]: Removing Provisioned App Package: Microsoft.Getstarted 2022-08-03T22:26:24 [INFO]: Removing Provisioned App Package: Microsoft.MicrosoftOfficeHub 2022-08-03T22:26:27 [INFO]: Removing Provisioned App Package: Microsoft.MicrosoftSolitaireCollection 2022-08-03T22:26:30 [INFO]: Removing Provisioned App Package: Microsoft.MicrosoftStickyNotes 2022-08-03T22:26:33 [INFO]: Removing Provisioned App Package: Microsoft.People 2022-08-03T22:26:37 [INFO]: Removing Provisioned App Package: Microsoft.ScreenSketch 2022-08-03T22:26:40 [INFO]: Removing Provisioned App Package: Microsoft.SecHealthUI 2022-08-03T22:26:40 [INFO]: Removing Provisioned App Package: Microsoft.Windows.Photos 2022-08-03T22:26:43 [INFO]: Removing Provisioned App Package: Microsoft.WindowsAlarms 2022-08-03T22:26:46 [INFO]: Removing Provisioned App Package: Microsoft.WindowsCalculator 2022-08-03T22:26:49 [INFO]: Removing Provisioned App Package: Microsoft.WindowsCamera 2022-08-03T22:26:52 [INFO]: Removing Provisioned App Package: Microsoft.WindowsFeedbackHub 2022-08-03T22:26:55 [INFO]: Removing Provisioned App Package: Microsoft.WindowsMaps 2022-08-03T22:26:59 [INFO]: Removing Provisioned App Package: Microsoft.WindowsNotepad 2022-08-03T22:27:02 [INFO]: Removing Provisioned App Package: Microsoft.WindowsSoundRecorder 2022-08-03T22:27:05 [INFO]: Removing Provisioned App Package: Microsoft.YourPhone 2022-08-03T22:27:08 [INFO]: Removing Provisioned App Package: Microsoft.ZuneMusic 2022-08-03T22:27:11 [INFO]: Removing Provisioned App Package: Microsoft.ZuneVideo 2022-08-03T22:27:21 [INFO]: Removing System App: Microsoft.AAD.BrokerPlugin 2022-08-03T22:27:23 [INFO]: Removing System App: Microsoft.AsyncTextService 2022-08-03T22:27:25 [INFO]: Removing System App: Microsoft.BioEnrollment 2022-08-03T22:27:27 [INFO]: Removing System App: Microsoft.ECApp 2022-08-03T22:27:29 [INFO]: Removing System App: Microsoft.LockApp 2022-08-03T22:27:31 [INFO]: Removing System App: Microsoft.Windows.AddSuggestedFoldersToLibarayDialog 2022-08-03T22:27:33 [INFO]: Removing System App: Microsoft.Windows.FileExplorer 2022-08-03T22:27:35 [INFO]: Removing System App: Microsoft.Windows.FilePicker 2022-08-03T22:27:38 [INFO]: Removing System App: Microsoft.Windows.NarratorQuickStart 2022-08-03T22:27:40 [INFO]: Removing System App: Microsoft.Windows.ParentalControls 2022-08-03T22:27:42 [INFO]: Removing System App: Microsoft.Windows.PeopleExperienceHost 2022-08-03T22:27:44 [INFO]: Removing System App: Microsoft.Windows.PinningConfirmationDialog 2022-08-03T22:27:46 [INFO]: Removing System App: NcsiUwpApp 2022-08-03T22:27:48 [INFO]: Removing System App: Windows.CBSPreview 2022-08-03T22:27:51 [INFO]: Disabling Services, Drivers and Integration Content for Removed Apps. 2022-08-03T22:27:54 [INFO]: Disabling Defender Start-up and Feature Packages. 2022-08-03T22:28:01 [INFO]: Removing Windows Biometric Capability: Hello.Face.20134~~~~0.0.1.0 2022-08-03T22:28:07 [INFO]: Disabling Optional Feature: Windows-Defender-Default-Definitions 2022-08-03T22:28:11 [INFO]: Importing Custom App Associations. 2022-08-03T22:28:16 [INFO]: Removing Windows Capability: App.StepsRecorder~~~~0.0.1.0 2022-08-03T22:28:19 [INFO]: Removing Windows Capability: App.Support.QuickAssist~~~~0.0.1.0 2022-08-03T22:28:23 [INFO]: Removing Windows Capability: Language.Handwriting~~~en-US~0.0.1.0 2022-08-03T22:28:27 [INFO]: Removing Windows Capability: Language.OCR~~~en-US~0.0.1.0 2022-08-03T22:28:30 [INFO]: Removing Windows Capability: Language.Speech~~~en-US~0.0.1.0 2022-08-03T22:28:34 [INFO]: Removing Windows Capability: MathRecognizer~~~~0.0.1.0 2022-08-03T22:28:38 [INFO]: Removing Windows Capability: Microsoft.Windows.Ethernet.Client.Intel.E1i68x64~~~~0.0.1.0 2022-08-03T22:28:42 [INFO]: Removing Windows Capability: Microsoft.Windows.Ethernet.Client.Intel.E2f68~~~~0.0.1.0 2022-08-03T22:28:46 [INFO]: Removing Windows Capability: Microsoft.Windows.Notepad.System~~~~0.0.1.0 2022-08-03T22:28:50 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Broadcom.Bcmpciedhd63~~~~0.0.1.0 2022-08-03T22:28:53 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Broadcom.Bcmwl63a~~~~0.0.1.0 2022-08-03T22:28:57 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Broadcom.Bcmwl63al~~~~0.0.1.0 2022-08-03T22:29:01 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Intel.Netwbw02~~~~0.0.1.0 2022-08-03T22:29:06 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Intel.Netwew00~~~~0.0.1.0 2022-08-03T22:29:10 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Intel.Netwew01~~~~0.0.1.0 2022-08-03T22:29:14 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Intel.Netwlv64~~~~0.0.1.0 2022-08-03T22:29:19 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Intel.Netwns64~~~~0.0.1.0 2022-08-03T22:29:23 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Intel.Netwsw00~~~~0.0.1.0 2022-08-03T22:29:28 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Intel.Netwtw02~~~~0.0.1.0 2022-08-03T22:29:34 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Intel.Netwtw04~~~~0.0.1.0 2022-08-03T22:29:40 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Intel.Netwtw06~~~~0.0.1.0 2022-08-03T22:29:45 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Intel.Netwtw08~~~~0.0.1.0 2022-08-03T22:29:49 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Marvel.Mrvlpcie8897~~~~0.0.1.0 2022-08-03T22:29:54 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Qualcomm.Athw8x~~~~0.0.1.0 2022-08-03T22:29:59 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Qualcomm.Athwnx~~~~0.0.1.0 2022-08-03T22:30:04 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Qualcomm.Qcamain10x64~~~~0.0.1.0 2022-08-03T22:30:09 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Ralink.Netr28x~~~~0.0.1.0 2022-08-03T22:30:13 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Realtek.Rtl8187se~~~~0.0.1.0 2022-08-03T22:30:18 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Realtek.Rtl8192se~~~~0.0.1.0 2022-08-03T22:30:23 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Realtek.Rtl819xp~~~~0.0.1.0 2022-08-03T22:30:27 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Realtek.Rtl85n64~~~~0.0.1.0 2022-08-03T22:30:32 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Realtek.Rtwlane~~~~0.0.1.0 2022-08-03T22:30:36 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Realtek.Rtwlane01~~~~0.0.1.0 2022-08-03T22:30:41 [INFO]: Removing Windows Capability: Microsoft.Windows.Wifi.Client.Realtek.Rtwlane13~~~~0.0.1.0 2022-08-03T22:30:46 [INFO]: Removing Windows Capability: Microsoft.Windows.WordPad~~~~0.0.1.0 2022-08-03T22:30:51 [INFO]: Removing Windows Capability: OneCoreUAP.OneSync~~~~0.0.1.0 2022-08-03T22:30:56 [INFO]: Removing Windows Capability: OpenSSH.Client~~~~0.0.1.0 2022-08-03T22:31:07 [INFO]: Disabling Optional Feature: MicrosoftWindowsPowerShellV2Root 2022-08-03T22:31:14 [INFO]: Disabling Optional Feature: MSRDC-Infrastructure 2022-08-03T22:31:19 [INFO]: Disabling Optional Feature: Printing-XPSServices-Features 2022-08-03T22:31:23 [INFO]: Disabling Optional Feature: SmbDirect 2022-08-03T22:31:27 [INFO]: Disabling Optional Feature: WorkFolders-Client 2022-08-03T22:31:35 [INFO]: Modifying windows service: AarSvc, Start: Disabled 2022-08-03T22:31:36 [INFO]: Modifying windows service: Acx01000, Start: Disabled 2022-08-03T22:31:37 [INFO]: Modifying windows service: AJRouter, Start: Disabled 2022-08-03T22:31:38 [INFO]: Modifying windows service: ALG, Start: Disabled 2022-08-03T22:31:39 [INFO]: Modifying windows service: AppVClient, Start: Disabled 2022-08-03T22:31:40 [INFO]: Modifying windows service: autotimesvc, Start: Disabled 2022-08-03T22:31:41 [INFO]: Modifying windows service: BcastDVRUserService, Start: Disabled 2022-08-03T22:31:42 [INFO]: Modifying windows service: BluetoothUserService, Start: Disabled 2022-08-03T22:31:43 [INFO]: Modifying windows service: BTAGService, Start: Disabled 2022-08-03T22:31:44 [INFO]: Modifying windows service: BthAvctpSvc, Start: Disabled 2022-08-03T22:31:45 [INFO]: Modifying windows service: bthserv, Start: Disabled 2022-08-03T22:31:46 [INFO]: Modifying windows service: CaptureService, Start: Disabled 2022-08-03T22:31:47 [INFO]: Modifying windows service: CDPSvc, Start: Disabled 2022-08-03T22:31:48 [INFO]: Modifying windows service: CDPUserSvc, Start: Disabled 2022-08-03T22:31:49 [INFO]: Modifying windows service: CertPropSvc, Start: Disabled 2022-08-03T22:31:50 [INFO]: Modifying windows service: cloudidsvc, Start: Disabled 2022-08-03T22:31:51 [INFO]: Modifying windows service: CscService, Start: Disabled 2022-08-03T22:31:52 [INFO]: Modifying windows service: DeviceAssociationBrokerSvc, Start: Disabled 2022-08-03T22:31:53 [INFO]: Modifying windows service: DeviceAssociationService, Start: Disabled 2022-08-03T22:31:54 [INFO]: Modifying windows service: DevicePickerUserSvc, Start: Disabled 2022-08-03T22:31:55 [INFO]: Modifying windows service: diagnosticshub.standardcollector.service, Start: Disabled 2022-08-03T22:31:56 [INFO]: Modifying windows service: DiagTrack, Start: Disabled 2022-08-03T22:31:57 [INFO]: Modifying windows service: DialogBlockingService, Start: Disabled 2022-08-03T22:31:58 [INFO]: Modifying windows service: DispBrokerDesktopSvc, Start: Disabled 2022-08-03T22:31:59 [INFO]: Modifying windows service: DisplayEnhancementService, Start: Disabled 2022-08-03T22:32:00 [INFO]: Modifying windows service: dmwappushservice, Start: Disabled 2022-08-03T22:32:01 [INFO]: Modifying windows service: DoSvc, Start: Disabled 2022-08-03T22:32:02 [INFO]: Modifying windows service: DsSvc, Start: Disabled 2022-08-03T22:32:03 [INFO]: Modifying windows service: DusmSvc, Start: Disabled 2022-08-03T22:32:04 [INFO]: Modifying windows service: EntAppSvc, Start: Disabled 2022-08-03T22:32:05 [INFO]: Modifying windows service: Fax, Start: Disabled 2022-08-03T22:32:06 [INFO]: Modifying windows service: FrameServer, Start: Disabled 2022-08-03T22:32:07 [INFO]: Modifying windows service: GraphicsPerfSvc, Start: Disabled 2022-08-03T22:32:08 [INFO]: Modifying windows service: HvHost, Start: Disabled 2022-08-03T22:32:09 [INFO]: Modifying windows service: hvservice, Start: Disabled 2022-08-03T22:32:10 [INFO]: Modifying windows service: icssvc, Start: Disabled 2022-08-03T22:32:11 [INFO]: Modifying windows service: iphlpsvc, Start: Disabled 2022-08-03T22:32:12 [INFO]: Modifying windows service: LanmanServer, Start: Disabled 2022-08-03T22:32:13 [INFO]: Modifying windows service: LanmanWorkstation, Start: Disabled 2022-08-03T22:32:14 [INFO]: Modifying windows service: lfsvc, Start: Disabled 2022-08-03T22:32:15 [INFO]: Modifying windows service: MapsBroker, Start: Disabled 2022-08-03T22:32:16 [INFO]: Modifying windows service: MessagingService, Start: Disabled 2022-08-03T22:32:17 [INFO]: Modifying windows service: MessagingService, Start: Disabled 2022-08-03T22:32:18 [INFO]: Modifying windows service: PenService, Start: Disabled 2022-08-03T22:32:19 [INFO]: Modifying windows service: MixedRealityOpenXRSvc, Start: Disabled 2022-08-03T22:32:20 [INFO]: Modifying windows service: NativeWifiP, Start: Disabled 2022-08-03T22:32:21 [INFO]: Modifying windows service: NcbService, Start: Disabled 2022-08-03T22:32:22 [INFO]: Modifying windows service: NdisTapi, Start: Disabled 2022-08-03T22:32:23 [INFO]: Modifying windows service: ndiswanlegacy, Start: Disabled 2022-08-03T22:32:24 [INFO]: Modifying windows service: PcaSvc, Start: Disabled 2022-08-03T22:32:25 [INFO]: Modifying windows service: PeerDistSvc, Start: Disabled 2022-08-03T22:32:26 [INFO]: Modifying windows service: perceptionsimulation, Start: Disabled 2022-08-03T22:32:27 [INFO]: Modifying windows service: PerfHost, Start: Manual 2022-08-03T22:32:28 [INFO]: Modifying windows service: PhoneSvc, Start: Disabled 2022-08-03T22:32:29 [INFO]: Modifying windows service: PimIndexMaintenanceSvc, Start: Disabled 2022-08-03T22:32:30 [INFO]: Modifying windows service: RasAuto, Start: Disabled 2022-08-03T22:32:31 [INFO]: Modifying windows service: RasMan, Start: Disabled 2022-08-03T22:32:32 [INFO]: Modifying windows service: RDPDR, Start: Disabled 2022-08-03T22:32:33 [INFO]: Modifying windows service: RdpVideoMiniport, Start: Disabled 2022-08-03T22:32:34 [INFO]: Modifying windows service: RemoteAccess, Start: Disabled 2022-08-03T22:32:35 [INFO]: Modifying windows service: RemoteRegistry, Start: Disabled 2022-08-03T22:32:36 [INFO]: Modifying windows service: RetailDemo, Start: Disabled 2022-08-03T22:32:37 [INFO]: Modifying windows service: RmSvc, Start: Disabled 2022-08-03T22:32:38 [INFO]: Modifying windows service: RpcLocator, Start: Disabled 2022-08-03T22:32:39 [INFO]: Modifying windows service: SCardSvr, Start: Disabled 2022-08-03T22:32:40 [INFO]: Modifying windows service: ScDeviceEnum, Start: Disabled 2022-08-03T22:32:41 [INFO]: Modifying windows service: scfilter, Start: Disabled 2022-08-03T22:32:42 [INFO]: Modifying windows service: SCPolicySvc, Start: Disabled 2022-08-03T22:32:43 [INFO]: Modifying windows service: SDRSVC, Start: Disabled 2022-08-03T22:32:44 [INFO]: Modifying windows service: seclogon, Start: Disabled 2022-08-03T22:32:45 [INFO]: Modifying windows service: SecurityHealthService, Start: Disabled 2022-08-03T22:32:46 [INFO]: Modifying windows service: SEMgrSvc, Start: Disabled 2022-08-03T22:32:47 [INFO]: Modifying windows service: Sense, Start: Disabled 2022-08-03T22:32:48 [INFO]: Modifying windows service: SensorDataService, Start: Disabled 2022-08-03T22:32:49 [INFO]: Modifying windows service: SensorService, Start: Disabled 2022-08-03T22:32:50 [INFO]: Modifying windows service: SensrSvc, Start: Disabled 2022-08-03T22:32:51 [INFO]: Modifying windows service: SessionEnv, Start: Disabled 2022-08-03T22:32:52 [INFO]: Modifying windows service: SharedAccess, Start: Disabled 2022-08-03T22:32:53 [INFO]: Modifying windows service: SharedRealitySvc, Start: Disabled 2022-08-03T22:32:54 [INFO]: Modifying windows service: shpamsvc, Start: Disabled 2022-08-03T22:32:55 [INFO]: Modifying windows service: SmsRouter, Start: Disabled 2022-08-03T22:32:56 [INFO]: Modifying windows service: SNMPTRAP, Start: Disabled 2022-08-03T22:32:57 [INFO]: Modifying windows service: SpatialGraphFilter, Start: Disabled 2022-08-03T22:32:58 [INFO]: Modifying windows service: spectrum, Start: Disabled 2022-08-03T22:32:59 [INFO]: Modifying windows service: SSDPSRV, Start: Disabled 2022-08-03T22:33:00 [INFO]: Modifying windows service: stisvc, Start: Disabled 2022-08-03T22:33:01 [INFO]: Modifying windows service: TapiSrv, Start: Disabled 2022-08-03T22:33:02 [INFO]: Modifying windows service: TermService, Start: Disabled 2022-08-03T22:33:03 [INFO]: Modifying windows service: TrkWks, Start: Disabled 2022-08-03T22:33:04 [INFO]: Modifying windows service: TsUsbFlt, Start: Disabled 2022-08-03T22:33:05 [INFO]: Modifying windows service: tzautoupdate, Start: Disabled 2022-08-03T22:33:06 [INFO]: Modifying windows service: UmRdpService, Start: Disabled 2022-08-03T22:33:07 [INFO]: Modifying windows service: UnistoreSvc, Start: Disabled 2022-08-03T22:33:08 [INFO]: Modifying windows service: upnphost, Start: Disabled 2022-08-03T22:33:09 [INFO]: Modifying windows service: UserDataSvc, Start: Disabled 2022-08-03T22:33:10 [INFO]: Modifying windows service: VacSvc, Start: Disabled 2022-08-03T22:33:11 [INFO]: Modifying windows service: vmicguestinterface, Start: Disabled 2022-08-03T22:33:12 [INFO]: Modifying windows service: vmicheartbeat, Start: Disabled 2022-08-03T22:33:13 [INFO]: Modifying windows service: vmickvpexchange, Start: Disabled 2022-08-03T22:33:14 [INFO]: Modifying windows service: vmicrdv, Start: Disabled 2022-08-03T22:33:15 [INFO]: Modifying windows service: vmicshutdown, Start: Disabled 2022-08-03T22:33:16 [INFO]: Modifying windows service: vmictimesync, Start: Disabled 2022-08-03T22:33:17 [INFO]: Modifying windows service: vmicvmsession, Start: Disabled 2022-08-03T22:33:18 [INFO]: Modifying windows service: vmicvss, Start: Disabled 2022-08-03T22:33:19 [INFO]: Modifying windows service: W32Time, Start: Disabled 2022-08-03T22:33:20 [INFO]: Modifying windows service: WalletService, Start: Disabled 2022-08-03T22:33:22 [INFO]: Modifying windows service: wanarp, Start: Disabled 2022-08-03T22:33:23 [INFO]: Modifying windows service: wanarpv6, Start: Disabled 2022-08-03T22:33:24 [INFO]: Modifying windows service: wbengine, Start: Disabled 2022-08-03T22:33:25 [INFO]: Modifying windows service: WbioSrvc, Start: Disabled 2022-08-03T22:33:26 [INFO]: Modifying windows service: WdNisDrv, Start: Disabled 2022-08-03T22:33:27 [INFO]: Modifying windows service: WdNisSvc, Start: Disabled 2022-08-03T22:33:28 [INFO]: Modifying windows service: wercplsupport, Start: Disabled 2022-08-03T22:33:29 [INFO]: Modifying windows service: WerSvc, Start: Disabled 2022-08-03T22:33:30 [INFO]: Modifying windows service: WFDSConMgrSvc, Start: Disabled 2022-08-03T22:33:31 [INFO]: Modifying windows service: WiaRpc, Start: Disabled 2022-08-03T22:33:32 [INFO]: Modifying windows service: WinDefend, Start: Disabled 2022-08-03T22:33:33 [INFO]: Modifying windows service: WinRM, Start: Disabled 2022-08-03T22:33:34 [INFO]: Modifying windows service: wisvc, Start: Disabled 2022-08-03T22:33:35 [INFO]: Modifying windows service: WlanSvc, Start: Disabled 2022-08-03T22:33:36 [INFO]: Modifying windows service: WMPNetworkSvc, Start: Disabled 2022-08-03T22:33:37 [INFO]: Modifying windows service: WpcMonSvc, Start: Disabled 2022-08-03T22:33:38 [INFO]: Modifying windows service: WSearch, Start: Disabled 2022-08-03T22:33:39 [INFO]: Modifying windows service: WwanSvc, Start: Disabled 2022-08-03T22:33:40 [INFO]: Modifying windows service: XblAuthManager, Start: Disabled 2022-08-03T22:33:41 [INFO]: Modifying windows service: XblGameSave, Start: Disabled 2022-08-03T22:33:42 [INFO]: Modifying windows service: XboxGipSvc, Start: Disabled 2022-08-03T22:33:43 [INFO]: Modifying windows service: XboxNetApiSvc, Start: Disabled 2022-08-03T22:33:44 [INFO]: Setting delivery optimization to bypass mode 2022-08-03T22:33:50 [INFO]: Integrating the Win32 Calculator. 2022-08-03T22:33:53 [INFO]: Applying Optimized Registry Settings. 2022-08-03T22:34:06 [INFO]: Applying Setup Content. 2022-08-03T22:34:10 [INFO]: Importing Registry Template: Additional Tweaks.reg 2022-08-03T22:34:16 [INFO]: Applying Answer File. 2022-08-03T22:34:20 [INFO]: Injecting Driver Packages into Windows 11 IoT Enterprise 2022-08-03T22:36:47 [INFO]: Disabling automatic driver update 2022-08-03T22:36:48 [INFO]: Enabling dormant OneDrive fix 2022-08-03T22:36:49 [INFO]: Disabling 3rd party apps 2022-08-03T22:36:50 [INFO]: Setting classic search explorer 2022-08-03T22:36:52 [INFO]: Removing taskbar pinned icons 2022-08-03T22:36:53 [INFO]: Setting W11 classic context menu 2022-08-03T22:36:54 [INFO]: Disabling Microsoft Teams autostart entry 2022-08-03T22:36:56 [INFO]: Disabling virtualization security 2022-08-03T22:36:57 [INFO]: Enabling explorer classic UI ribbon 2022-08-03T22:36:59 [INFO]: Adding AMOLED pitch-black theme 2022-08-03T22:36:59 [INFO]: Importing Registry Template: AMOLED_black_theme.reg 2022-08-03T22:37:03 [INFO]: Adding Powershell as trusted installer context menu entry 2022-08-03T22:37:03 [INFO]: Importing Registry Template: RunAsTi.reg 2022-08-03T22:37:09 [INFO]: Creating a Package Summary Log. 2022-08-03T22:37:32 [INFO]: Post-Optimization Image Health State: [Healthy] 2022-08-03T22:37:35 [INFO]: Saving and Dismounting Microsoft Windows Setup (x64) 2022-08-03T22:37:58 [INFO]: Rebuilding and Exporting Microsoft Windows Setup (x64) 2022-08-03T22:38:02 [INFO]: Saving and Dismounting Windows 11 IoT Enterprise 2022-08-03T22:41:25 [INFO]: Rebuilding and Exporting Windows 11 IoT Enterprise using Solid compression. 2022-08-03T22:53:15 [INFO]: Optimizing the Installation Media File Structure. 2022-08-03T22:53:15 [INFO]: Creating a No-Prompt Bootable Windows Installation Media ISO. 2022-08-03T22:53:21 [INFO]: Finalizing Optimizations. 2022-08-03T22:53:21 [INFO]: Creating bootable usb. 2022-08-03T22:56:24 [INFO]: Successfully created bootable usb. 2022-08-03T22:56:24 [INFO]: Optimize-Offline completed in [32] minutes with [0] errors. *************************************************************************************************** Optimizations Finalized : 08/03/2022 10:56:24 PM ***************************************************************************************************
@gdeliana Pressing printscreen does nothing, can't even copy and paste into Paint after pressing it. I had to install Lightshot to get screenshots to work.
That allows me to paste into Paint but doesn't bring up the Snipping Tool. With the latest commit hitting the PRINTSCRN supposed to bring up the Snipping Tool.
Ok have removed the print screen button tweak, should be as it was now. Nevermind will use some other windows shortcuts