[DISCUSSION] Windows 11 Insider Preview Build 26016.1000 (PC) [Canary Channel - rs_prerelease]

Discussion in 'Windows 11' started by Enthousiast, Dec 13, 2023.

  1. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,669
    103,497
    450
    We offer 100% MSFT direct ISO downloads and SVFSFX downloads.
     
  2. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    4,161
    5,975
    150
    #42 Dark Dinosaur, Jan 4, 2024
    Last edited: Jan 4, 2024
    Cscript exist in canary
    With / without vbs engine
    Interesting??..

    Found it. vbscript.dll
    Inside system32 directory

    It's remove it .. add it ..
    Interesting
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    4,161
    5,975
    150
    Darki found solution for vbs engine check in insider builds
    what you suggesting ?

    Code:
      :: in next future builds this Capability might remove completely
      if not exist "%windir%\system32\vbscript.dll" (
        set "WMI_PS=true" )
      cscript .vbs | %MultiNul% find /i "There is no script engine" && (
        set "WMI_PS=true" )
     
      :: check if exist such Capability and install it [if necessary]
      (DISM /Online /Get-CapabilityInfo /CapabilityName:VBSCRIPT~~~~ | %MultiNul% find /i "State : Not Present") && (
        set "WMI_PS=true"
        echo *** Restore VBSCRIPT~~~~ Capability
        %MultiNul% DISM /Online /Add-Capability /CapabilityName:VBSCRIPT~~~~
        echo:
      )
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...