MDT/SCCM OSD Task Sequence – Install Software Failed (hr=80008013) for Programs with dependencies
When you install an application with dependencies (nested); by running other SCCM package/programs first in MDT/SCCM OSD it fails with the error code 0x80008013 which means (E_FAIL_DEPENDENCY_NOT_RUN : This program cannot run because it depends on another program that has not run successfully before. This error code is returned to task sequence manager when a […]
MDT / SCCM OSD – Run actions based on chassis type
It is very easy to run chassis type specific actions in task sequences by querying , all you need to do is adding Task Sequence Variable in Options. Fill Variable field with IsLaptop , select your condition and write the value you wanted (True or False)
Configuring location based settings automatically by using Win32 IP4RouteTable in OSD – Task Sequence
The idea was creating location specific variable sets to automatically configure regional settings during deployment.
1 |
Select * FROM Win32_IP4RouteTable WHERE Destination='0.0.0.0' AND ( NextHop='10.99.0.254' OR NextHop='10.101.0.254' OR NextHop='10.103.0.254' OR NextHop='10.104.0.254' ) |
The query above is very useful as it queries the routing table to find gateway and it looks ok when you run test it in SCCM Console. But, it doesn’t work and generates errors below during deployment […]
Change TEMP folder used by MDT
If you have a server with MDT installed and you notice that during boot image creation the server runs really slow or you are just flat out of space on the drive you installed MDT you can change the MDT temp directory to another location. During the boot image creation process all of items included […]
WDS Auto-Add ve AD’de Prestaging verilerini temizlemek
WDS Auto-Add veritabanini temizlemek WDS Auto-Add veritabanindaki onaylanmis bilgisayarlari her 30 gunde bir temizler. Isterseniz bu sureyi WDSUTIL /Set-Server /AutoAddPolicy /RetentionPeriod /Approved:Days komutu ile degistirebilirsiniz. (http://technet.microsoft.com/en-us/library/cc754289(WS.10).aspx) Ornegin 7 gune ayarlamak icin : WDSUTIL /Set-Server /AutoAddPolicy /RetentionPeriod /Approved:7 Eger isterseniz wdsutil /delete-AutoAddDevices /DeviceType:ApprovedDevices komutu ule tum onaylanmis bilgisayarlari Auto-Add veritabanindan temizleyebilirsiniz. (http://technet.microsoft.com/en-us/library/cc770832(WS.10).aspx). Ancak WDS Auto-Add veritabaninda […]