Forums on Intune, SCCM, and Windows 11

Welcome to the forums. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your topics and posts, as well as connect with other members through your own private inbox!

PENDING VBScript deprecation in W11 24H2, enable using SCCM

prasadjoshi

Member
Messages
10
Solutions
1
Reaction score
0
Points
1
Hello Team,
As we all are aware that Microsoft started deprecation of VBScript and Citrix workspace app needs this for installation. we can install VBScript via optional features but we need to do this installation via SCCM for all systems which are missing this file.
Can you please suggest is there any way to do it as i am not getting offline installer for VBScript ?

Ref. https://answers.microsoft.com/en-us...s-cauing/eceb6a27-dcf4-446a-8c12-67b84b7bb7b0
 
Did you check with Citrix support on this?

You can still use the DISM command that enables the VBScript FOD.
DISM /Online /Add-Capability /CapabilityName:VBSCRIPT

Or use PS to enable it.
Code:
Get-WindowsCapability -online | Where-Object { $_.Name -like '*VBSCRIPT*' } | add-WindowsCapability -online
 
Did you check with Citrix support on this?

You can still use the DISM command that enables the VBScript FOD.
DISM /Online /Add-Capability /CapabilityName:VBSCRIPT

Or use PS to enable it.
Code:
Get-WindowsCapability -online | Where-Object { $_.Name -like '*VBSCRIPT*' } | add-WindowsCapability -online
Citrix support says check with MS support.

Can you share me powershell commands which can help to save this VBScript file locally ?
 
Citrix support says check with MS support.

Can you share me powershell commands which can help to save this VBScript file locally ?
Sorry, I did not get you. It's a capability that can be enabled via the command that I provided about. If you want to enable this with SCCM, you can use Run Scripts feature.
 
Sorry, I did not get you. It's a capability that can be enabled via the command that I provided about. If you want to enable this with SCCM, you can use Run Scripts feature.
Hi, I am also having issues installing VBScript on Windows 11 24h2: get the following error code:

0x800f0950
tried above methods with the same issue, also enabled the group policy as suggested in another forum:
User ConfigurationAdministrative TemplatesWindows ComponentsWindows Script Host

Set the policy "Allow Windows Script Host" to Enabled.

Would appreciate if you could help
 

Forum statistics

Threads
7,026
Messages
27,498
Members
17,677
Latest member
Nairolf

Trending content

Back
Top