Hi,
I have created a script to configure the startup type for the windows services during the OSD TS
I was able to set the startup type for all services to atuo/manual/disabled - except for BITS
it needs to be set as automatic however no matter how I do it the service is always set to Automatic (Delay start)
But the script works and BITS is set to Automatic when I run the script manaully after the installation is completed
Has anyone experience this problem?
this is how I configure the service:
sc config BITS start= auto
and powershell script:
Get-Service -displayName "Background Intelligent Transfer Service" | Set-Service -StartupType automatic
Thanks